Interface DestinationConfigurations.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DestinationConfigurations.Builder,DestinationConfigurations>,SdkBuilder<DestinationConfigurations.Builder,DestinationConfigurations>,SdkPojo
- Enclosing class:
- DestinationConfigurations
public static interface DestinationConfigurations.Builder extends SdkPojo, CopyableBuilder<DestinationConfigurations.Builder,DestinationConfigurations>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DestinationConfigurations.Builders3Destination(Consumer<S3Destination.Builder> s3Destination)An object that describes the destination of the data exports file.DestinationConfigurations.Builders3Destination(S3Destination s3Destination)An object that describes the destination of the data exports 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
-
s3Destination
DestinationConfigurations.Builder s3Destination(S3Destination s3Destination)
An object that describes the destination of the data exports file.
- Parameters:
s3Destination- An object that describes the destination of the data exports file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Destination
default DestinationConfigurations.Builder s3Destination(Consumer<S3Destination.Builder> s3Destination)
An object that describes the destination of the data exports 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 tos3Destination(S3Destination).- Parameters:
s3Destination- 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:
s3Destination(S3Destination)
-
-