Interface AnalyticsS3BucketDestination.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<AnalyticsS3BucketDestination.Builder,AnalyticsS3BucketDestination>
,SdkBuilder<AnalyticsS3BucketDestination.Builder,AnalyticsS3BucketDestination>
,SdkPojo
- Enclosing class:
- AnalyticsS3BucketDestination
public static interface AnalyticsS3BucketDestination.Builder extends SdkPojo, CopyableBuilder<AnalyticsS3BucketDestination.Builder,AnalyticsS3BucketDestination>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnalyticsS3BucketDestination.Builder
bucket(String bucket)
The Amazon Resource Name (ARN) of the bucket to which data is exported.AnalyticsS3BucketDestination.Builder
bucketAccountId(String bucketAccountId)
The account ID that owns the destination S3 bucket.AnalyticsS3BucketDestination.Builder
format(String format)
Specifies the file format used when exporting data to Amazon S3.AnalyticsS3BucketDestination.Builder
format(AnalyticsS3ExportFileFormat format)
Specifies the file format used when exporting data to Amazon S3.AnalyticsS3BucketDestination.Builder
prefix(String prefix)
The prefix to use when exporting data.-
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
-
format
AnalyticsS3BucketDestination.Builder format(String format)
Specifies the file format used when exporting data to Amazon S3.
- Parameters:
format
- Specifies the file format used when exporting data to Amazon S3.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalyticsS3ExportFileFormat
,AnalyticsS3ExportFileFormat
-
format
AnalyticsS3BucketDestination.Builder format(AnalyticsS3ExportFileFormat format)
Specifies the file format used when exporting data to Amazon S3.
- Parameters:
format
- Specifies the file format used when exporting data to Amazon S3.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalyticsS3ExportFileFormat
,AnalyticsS3ExportFileFormat
-
bucketAccountId
AnalyticsS3BucketDestination.Builder bucketAccountId(String bucketAccountId)
The account ID that owns the destination S3 bucket. If no account ID is provided, the owner is not validated before exporting data.
Although this value is optional, we strongly recommend that you set it to help prevent problems if the destination bucket ownership changes.
- Parameters:
bucketAccountId
- The account ID that owns the destination S3 bucket. If no account ID is provided, the owner is not validated before exporting data.Although this value is optional, we strongly recommend that you set it to help prevent problems if the destination bucket ownership changes.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bucket
AnalyticsS3BucketDestination.Builder bucket(String bucket)
The Amazon Resource Name (ARN) of the bucket to which data is exported.
- Parameters:
bucket
- The Amazon Resource Name (ARN) of the bucket to which data is exported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
prefix
AnalyticsS3BucketDestination.Builder prefix(String prefix)
The prefix to use when exporting data. The prefix is prepended to all results.
- Parameters:
prefix
- The prefix to use when exporting data. The prefix is prepended to all results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-