Interface ExportDestination.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExportDestination.Builder,ExportDestination>,SdkBuilder<ExportDestination.Builder,ExportDestination>,SdkPojo
- Enclosing class:
- ExportDestination
public static interface ExportDestination.Builder extends SdkPojo, CopyableBuilder<ExportDestination.Builder,ExportDestination>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ExportDestination.Builders3(Consumer<S3Destination.Builder> s3)An object that describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a recommendations export file, and its associated metadata file.ExportDestination.Builders3(S3Destination s3)An object that describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a recommendations export file, and its associated metadata file.-
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
-
s3
ExportDestination.Builder s3(S3Destination s3)
An object that describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a recommendations export file, and its associated metadata file.
- Parameters:
s3- An object that describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a recommendations export file, and its associated metadata file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3
default ExportDestination.Builder s3(Consumer<S3Destination.Builder> s3)
An object that describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and object keys of a recommendations export file, and its associated metadata file.
This is a convenience method that creates an instance of theS3Destination.Builderavoiding the need to create one manually viaS3Destination.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3(S3Destination).- Parameters:
s3- a consumer that will call methods onS3Destination.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3(S3Destination)
-
-