Interface Paths.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<Paths.Builder,Paths>
,SdkBuilder<Paths.Builder,Paths>
,SdkPojo
- Enclosing class:
- Paths
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.Builder
items(String... items)
A complex type that contains a list of the paths that you want to invalidate.Paths.Builder
items(Collection<String> items)
A complex type that contains a list of the paths that you want to invalidate.Paths.Builder
quantity(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, 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.
-
-