Interface GetBucketAnalyticsConfigurationResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<GetBucketAnalyticsConfigurationResponse.Builder,GetBucketAnalyticsConfigurationResponse>
,S3Response.Builder
,SdkBuilder<GetBucketAnalyticsConfigurationResponse.Builder,GetBucketAnalyticsConfigurationResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- GetBucketAnalyticsConfigurationResponse
public static interface GetBucketAnalyticsConfigurationResponse.Builder extends S3Response.Builder, SdkPojo, CopyableBuilder<GetBucketAnalyticsConfigurationResponse.Builder,GetBucketAnalyticsConfigurationResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GetBucketAnalyticsConfigurationResponse.Builder
analyticsConfiguration(Consumer<AnalyticsConfiguration.Builder> analyticsConfiguration)
The configuration and any analyses for the analytics filter.GetBucketAnalyticsConfigurationResponse.Builder
analyticsConfiguration(AnalyticsConfiguration analyticsConfiguration)
The configuration and any analyses for the analytics filter.-
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
-
analyticsConfiguration
GetBucketAnalyticsConfigurationResponse.Builder analyticsConfiguration(AnalyticsConfiguration analyticsConfiguration)
The configuration and any analyses for the analytics filter.
- Parameters:
analyticsConfiguration
- The configuration and any analyses for the analytics filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
analyticsConfiguration
default GetBucketAnalyticsConfigurationResponse.Builder analyticsConfiguration(Consumer<AnalyticsConfiguration.Builder> analyticsConfiguration)
The configuration and any analyses for the analytics filter.
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 toanalyticsConfiguration(AnalyticsConfiguration)
.- Parameters:
analyticsConfiguration
- 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:
analyticsConfiguration(AnalyticsConfiguration)
-
-