Interface DestinationConfigurations.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<DestinationConfigurations.Builder,
,DestinationConfigurations> SdkBuilder<DestinationConfigurations.Builder,
,DestinationConfigurations> SdkPojo
- Enclosing class:
DestinationConfigurations
@Mutable
@NotThreadSafe
public static interface DestinationConfigurations.Builder
extends SdkPojo, CopyableBuilder<DestinationConfigurations.Builder,DestinationConfigurations>
-
Method Summary
Modifier and TypeMethodDescriptions3Destination
(Consumer<S3Destination.Builder> s3Destination) An object that describes the destination of the data exports file.s3Destination
(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, sdkFieldNameToField, sdkFields
-
Method Details
-
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.Builder
avoiding the need to create one manually viaS3Destination.builder()
.When the
Consumer
completes,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:
-