Interface Paths.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Paths.Builder,Paths>,SdkBuilder<Paths.Builder,Paths>,SdkPojo
- Enclosing class:
- Paths
@Mutable @NotThreadSafe public static interface Paths.Builder extends SdkPojo, CopyableBuilder<Paths.Builder,Paths>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Paths.Builderitems(String... items)A complex type that contains a list of the paths that you want to invalidate.Paths.Builderitems(Collection<String> items)A complex type that contains a list of the paths that you want to invalidate.Paths.Builderquantity(Integer quantity)The number of invalidation paths specified for the objects that you want to invalidate.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
quantity
Paths.Builder quantity(Integer quantity)
The number of invalidation paths specified for the objects that you want to invalidate.
- Parameters:
quantity- The number of invalidation paths specified for the objects that you want to invalidate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
Paths.Builder items(Collection<String> items)
A complex type that contains a list of the paths that you want to invalidate.
- Parameters:
items- A complex type that contains a list of the paths that you want to invalidate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
Paths.Builder items(String... items)
A complex type that contains a list of the paths that you want to invalidate.
- Parameters:
items- A complex type that contains a list of the paths that you want to invalidate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-