Interface ListBucketAnalyticsConfigurationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListBucketAnalyticsConfigurationsResponse.Builder,ListBucketAnalyticsConfigurationsResponse>
,S3Response.Builder
,SdkBuilder<ListBucketAnalyticsConfigurationsResponse.Builder,ListBucketAnalyticsConfigurationsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListBucketAnalyticsConfigurationsResponse
public static interface ListBucketAnalyticsConfigurationsResponse.Builder extends S3Response.Builder, SdkPojo, CopyableBuilder<ListBucketAnalyticsConfigurationsResponse.Builder,ListBucketAnalyticsConfigurationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListBucketAnalyticsConfigurationsResponse.Builder
analyticsConfigurationList(Collection<AnalyticsConfiguration> analyticsConfigurationList)
The list of analytics configurations for a bucket.ListBucketAnalyticsConfigurationsResponse.Builder
analyticsConfigurationList(Consumer<AnalyticsConfiguration.Builder>... analyticsConfigurationList)
The list of analytics configurations for a bucket.ListBucketAnalyticsConfigurationsResponse.Builder
analyticsConfigurationList(AnalyticsConfiguration... analyticsConfigurationList)
The list of analytics configurations for a bucket.ListBucketAnalyticsConfigurationsResponse.Builder
continuationToken(String continuationToken)
The marker that is used as a starting point for this analytics configuration list response.ListBucketAnalyticsConfigurationsResponse.Builder
isTruncated(Boolean isTruncated)
Indicates whether the returned list of analytics configurations is complete.ListBucketAnalyticsConfigurationsResponse.Builder
nextContinuationToken(String nextContinuationToken)
NextContinuationToken
is sent whenisTruncated
is true, which indicates that there are more analytics configurations to list.-
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
-
isTruncated
ListBucketAnalyticsConfigurationsResponse.Builder isTruncated(Boolean isTruncated)
Indicates whether the returned list of analytics configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken will be provided for a subsequent request.
- Parameters:
isTruncated
- Indicates whether the returned list of analytics configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken will be provided for a subsequent request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
continuationToken
ListBucketAnalyticsConfigurationsResponse.Builder continuationToken(String continuationToken)
The marker that is used as a starting point for this analytics configuration list response. This value is present if it was sent in the request.
- Parameters:
continuationToken
- The marker that is used as a starting point for this analytics configuration list response. This value is present if it was sent in the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextContinuationToken
ListBucketAnalyticsConfigurationsResponse.Builder nextContinuationToken(String nextContinuationToken)
NextContinuationToken
is sent whenisTruncated
is true, which indicates that there are more analytics configurations to list. The next request must include thisNextContinuationToken
. The token is obfuscated and is not a usable value.- Parameters:
nextContinuationToken
-NextContinuationToken
is sent whenisTruncated
is true, which indicates that there are more analytics configurations to list. The next request must include thisNextContinuationToken
. The token is obfuscated and is not a usable value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
analyticsConfigurationList
ListBucketAnalyticsConfigurationsResponse.Builder analyticsConfigurationList(Collection<AnalyticsConfiguration> analyticsConfigurationList)
The list of analytics configurations for a bucket.
- Parameters:
analyticsConfigurationList
- The list of analytics configurations for a bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
analyticsConfigurationList
ListBucketAnalyticsConfigurationsResponse.Builder analyticsConfigurationList(AnalyticsConfiguration... analyticsConfigurationList)
The list of analytics configurations for a bucket.
- Parameters:
analyticsConfigurationList
- The list of analytics configurations for a bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
analyticsConfigurationList
ListBucketAnalyticsConfigurationsResponse.Builder analyticsConfigurationList(Consumer<AnalyticsConfiguration.Builder>... analyticsConfigurationList)
The list of analytics configurations for a bucket.
This is a convenience method that creates an instance of theAnalyticsConfiguration.Builder
avoiding the need to create one manually viaAnalyticsConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#analyticsConfigurationList(List
.) - Parameters:
analyticsConfigurationList
- a consumer that will call methods onAnalyticsConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#analyticsConfigurationList(java.util.Collection
)
-
-