Interface ListBucketInventoryConfigurationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListBucketInventoryConfigurationsResponse.Builder,ListBucketInventoryConfigurationsResponse>
,S3Response.Builder
,SdkBuilder<ListBucketInventoryConfigurationsResponse.Builder,ListBucketInventoryConfigurationsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListBucketInventoryConfigurationsResponse
public static interface ListBucketInventoryConfigurationsResponse.Builder extends S3Response.Builder, SdkPojo, CopyableBuilder<ListBucketInventoryConfigurationsResponse.Builder,ListBucketInventoryConfigurationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListBucketInventoryConfigurationsResponse.Builder
continuationToken(String continuationToken)
If sent in the request, the marker that is used as a starting point for this inventory configuration list response.ListBucketInventoryConfigurationsResponse.Builder
inventoryConfigurationList(Collection<InventoryConfiguration> inventoryConfigurationList)
The list of inventory configurations for a bucket.ListBucketInventoryConfigurationsResponse.Builder
inventoryConfigurationList(Consumer<InventoryConfiguration.Builder>... inventoryConfigurationList)
The list of inventory configurations for a bucket.ListBucketInventoryConfigurationsResponse.Builder
inventoryConfigurationList(InventoryConfiguration... inventoryConfigurationList)
The list of inventory configurations for a bucket.ListBucketInventoryConfigurationsResponse.Builder
isTruncated(Boolean isTruncated)
Tells whether the returned list of inventory configurations is complete.ListBucketInventoryConfigurationsResponse.Builder
nextContinuationToken(String nextContinuationToken)
The marker used to continue this inventory configuration listing.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.s3.model.S3Response.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
continuationToken
ListBucketInventoryConfigurationsResponse.Builder continuationToken(String continuationToken)
If sent in the request, the marker that is used as a starting point for this inventory configuration list response.
- Parameters:
continuationToken
- If sent in the request, the marker that is used as a starting point for this inventory configuration list response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inventoryConfigurationList
ListBucketInventoryConfigurationsResponse.Builder inventoryConfigurationList(Collection<InventoryConfiguration> inventoryConfigurationList)
The list of inventory configurations for a bucket.
- Parameters:
inventoryConfigurationList
- The list of inventory configurations for a bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inventoryConfigurationList
ListBucketInventoryConfigurationsResponse.Builder inventoryConfigurationList(InventoryConfiguration... inventoryConfigurationList)
The list of inventory configurations for a bucket.
- Parameters:
inventoryConfigurationList
- The list of inventory configurations for a bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inventoryConfigurationList
ListBucketInventoryConfigurationsResponse.Builder inventoryConfigurationList(Consumer<InventoryConfiguration.Builder>... inventoryConfigurationList)
The list of inventory configurations for a bucket.
This is a convenience method that creates an instance of theInventoryConfiguration.Builder
avoiding the need to create one manually viaInventoryConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#inventoryConfigurationList(List
.) - Parameters:
inventoryConfigurationList
- a consumer that will call methods onInventoryConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#inventoryConfigurationList(java.util.Collection
)
-
isTruncated
ListBucketInventoryConfigurationsResponse.Builder isTruncated(Boolean isTruncated)
Tells whether the returned list of inventory configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken is provided for a subsequent request.
- Parameters:
isTruncated
- Tells whether the returned list of inventory configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken is provided for a subsequent request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextContinuationToken
ListBucketInventoryConfigurationsResponse.Builder nextContinuationToken(String nextContinuationToken)
The marker used to continue this inventory configuration listing. Use the
NextContinuationToken
from this response to continue the listing in a subsequent request. The continuation token is an opaque value that Amazon S3 understands.- Parameters:
nextContinuationToken
- The marker used to continue this inventory configuration listing. Use theNextContinuationToken
from this response to continue the listing in a subsequent request. The continuation token is an opaque value that Amazon S3 understands.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-