Interface InvalidationList.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InvalidationList.Builder,InvalidationList>,SdkBuilder<InvalidationList.Builder,InvalidationList>,SdkPojo
- Enclosing class:
- InvalidationList
@Mutable @NotThreadSafe public static interface InvalidationList.Builder extends SdkPojo, CopyableBuilder<InvalidationList.Builder,InvalidationList>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InvalidationList.BuilderisTruncated(Boolean isTruncated)A flag that indicates whether more invalidation batch requests remain to be listed.InvalidationList.Builderitems(Collection<InvalidationSummary> items)A complex type that contains oneInvalidationSummaryelement for each invalidation batch created by the current Amazon Web Services account.InvalidationList.Builderitems(Consumer<InvalidationSummary.Builder>... items)A complex type that contains oneInvalidationSummaryelement for each invalidation batch created by the current Amazon Web Services account.InvalidationList.Builderitems(InvalidationSummary... items)A complex type that contains oneInvalidationSummaryelement for each invalidation batch created by the current Amazon Web Services account.InvalidationList.Buildermarker(String marker)The value that you provided for theMarkerrequest parameter.InvalidationList.BuildermaxItems(Integer maxItems)The value that you provided for theMaxItemsrequest parameter.InvalidationList.BuildernextMarker(String nextMarker)IfIsTruncatedistrue, this element is present and contains the value that you can use for theMarkerrequest parameter to continue listing your invalidation batches where they left off.InvalidationList.Builderquantity(Integer quantity)The number of invalidation batches that were created by the current Amazon Web Services account.-
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
-
marker
InvalidationList.Builder marker(String marker)
The value that you provided for the
Markerrequest parameter.- Parameters:
marker- The value that you provided for theMarkerrequest parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextMarker
InvalidationList.Builder nextMarker(String nextMarker)
If
IsTruncatedistrue, this element is present and contains the value that you can use for theMarkerrequest parameter to continue listing your invalidation batches where they left off.- Parameters:
nextMarker- IfIsTruncatedistrue, this element is present and contains the value that you can use for theMarkerrequest parameter to continue listing your invalidation batches where they left off.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxItems
InvalidationList.Builder maxItems(Integer maxItems)
The value that you provided for the
MaxItemsrequest parameter.- Parameters:
maxItems- The value that you provided for theMaxItemsrequest parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isTruncated
InvalidationList.Builder isTruncated(Boolean isTruncated)
A flag that indicates whether more invalidation batch requests remain to be listed. If your results were truncated, you can make a follow-up pagination request using the
Markerrequest parameter to retrieve more invalidation batches in the list.- Parameters:
isTruncated- A flag that indicates whether more invalidation batch requests remain to be listed. If your results were truncated, you can make a follow-up pagination request using theMarkerrequest parameter to retrieve more invalidation batches in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
quantity
InvalidationList.Builder quantity(Integer quantity)
The number of invalidation batches that were created by the current Amazon Web Services account.
- Parameters:
quantity- The number of invalidation batches that were created by the current Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
InvalidationList.Builder items(Collection<InvalidationSummary> items)
A complex type that contains one
InvalidationSummaryelement for each invalidation batch created by the current Amazon Web Services account.- Parameters:
items- A complex type that contains oneInvalidationSummaryelement for each invalidation batch created by the current Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
InvalidationList.Builder items(InvalidationSummary... items)
A complex type that contains one
InvalidationSummaryelement for each invalidation batch created by the current Amazon Web Services account.- Parameters:
items- A complex type that contains oneInvalidationSummaryelement for each invalidation batch created by the current Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
InvalidationList.Builder items(Consumer<InvalidationSummary.Builder>... items)
A complex type that contains one
This is a convenience method that creates an instance of theInvalidationSummaryelement for each invalidation batch created by the current Amazon Web Services account.InvalidationSummary.Builderavoiding the need to create one manually viaInvalidationSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onInvalidationSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
-