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 Details

    • 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 when isTruncated is true, which indicates that there are more analytics configurations to list. The next request must include this NextContinuationToken. The token is obfuscated and is not a usable value.

      Parameters:
      nextContinuationToken - NextContinuationToken is sent when isTruncated is true, which indicates that there are more analytics configurations to list. The next request must include this NextContinuationToken. 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 the AnalyticsConfiguration.Builder avoiding the need to create one manually via AnalyticsConfiguration.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to analyticsConfigurationList(List<AnalyticsConfiguration>).

      Parameters:
      analyticsConfigurationList - a consumer that will call methods on AnalyticsConfiguration.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: