Interface ExportSpecification.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExportSpecification.Builder,ExportSpecification>,SdkBuilder<ExportSpecification.Builder,ExportSpecification>,SdkPojo
- Enclosing class:
- ExportSpecification
public static interface ExportSpecification.Builder extends SdkPojo, CopyableBuilder<ExportSpecification.Builder,ExportSpecification>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ExportSpecification.Builders3ExportSpecification(Consumer<S3ExportSpecification.Builder> s3ExportSpecification)This specifies the destination Amazon S3 bucket for the export job.ExportSpecification.Builders3ExportSpecification(S3ExportSpecification s3ExportSpecification)This specifies the destination Amazon S3 bucket for the export job.-
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
-
s3ExportSpecification
ExportSpecification.Builder s3ExportSpecification(S3ExportSpecification s3ExportSpecification)
This specifies the destination Amazon S3 bucket for the export job. And, if included, it also specifies the destination prefix.
- Parameters:
s3ExportSpecification- This specifies the destination Amazon S3 bucket for the export job. And, if included, it also specifies the destination prefix.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3ExportSpecification
default ExportSpecification.Builder s3ExportSpecification(Consumer<S3ExportSpecification.Builder> s3ExportSpecification)
This specifies the destination Amazon S3 bucket for the export job. And, if included, it also specifies the destination prefix.
This is a convenience method that creates an instance of theS3ExportSpecification.Builderavoiding the need to create one manually viaS3ExportSpecification.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3ExportSpecification(S3ExportSpecification).- Parameters:
s3ExportSpecification- a consumer that will call methods onS3ExportSpecification.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3ExportSpecification(S3ExportSpecification)
-
-