Interface ReportDestination.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ReportDestination.Builder,ReportDestination>,SdkBuilder<ReportDestination.Builder,ReportDestination>,SdkPojo
- Enclosing class:
- ReportDestination
public static interface ReportDestination.Builder extends SdkPojo, CopyableBuilder<ReportDestination.Builder,ReportDestination>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReportDestination.Builders3BucketName(String s3BucketName)The unique name of the Amazon S3 bucket that receives your reports.ReportDestination.Builders3Keys(String... s3Keys)The object key that uniquely identifies your reports in your S3 bucket.ReportDestination.Builders3Keys(Collection<String> s3Keys)The object key that uniquely identifies your reports in your S3 bucket.-
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, sdkFields
-
-
-
-
Method Detail
-
s3BucketName
ReportDestination.Builder s3BucketName(String s3BucketName)
The unique name of the Amazon S3 bucket that receives your reports.
- Parameters:
s3BucketName- The unique name of the Amazon S3 bucket that receives your reports.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Keys
ReportDestination.Builder s3Keys(Collection<String> s3Keys)
The object key that uniquely identifies your reports in your S3 bucket.
- Parameters:
s3Keys- The object key that uniquely identifies your reports in your S3 bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Keys
ReportDestination.Builder s3Keys(String... s3Keys)
The object key that uniquely identifies your reports in your S3 bucket.
- Parameters:
s3Keys- The object key that uniquely identifies your reports in your S3 bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-