Interface MetadataTableConfiguration.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<MetadataTableConfiguration.Builder,MetadataTableConfiguration>
,SdkBuilder<MetadataTableConfiguration.Builder,MetadataTableConfiguration>
,SdkPojo
- Enclosing class:
- MetadataTableConfiguration
@Mutable @NotThreadSafe public static interface MetadataTableConfiguration.Builder extends SdkPojo, CopyableBuilder<MetadataTableConfiguration.Builder,MetadataTableConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default MetadataTableConfiguration.Builder
s3TablesDestination(Consumer<S3TablesDestination.Builder> s3TablesDestination)
The destination information for the metadata table configuration.MetadataTableConfiguration.Builder
s3TablesDestination(S3TablesDestination s3TablesDestination)
The destination information for the metadata table configuration.-
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
-
s3TablesDestination
MetadataTableConfiguration.Builder s3TablesDestination(S3TablesDestination s3TablesDestination)
The destination information for the metadata table configuration. The destination table bucket must be in the same Region and Amazon Web Services account as the general purpose bucket. The specified metadata table name must be unique within the
aws_s3_metadata
namespace in the destination table bucket.- Parameters:
s3TablesDestination
- The destination information for the metadata table configuration. The destination table bucket must be in the same Region and Amazon Web Services account as the general purpose bucket. The specified metadata table name must be unique within theaws_s3_metadata
namespace in the destination table bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3TablesDestination
default MetadataTableConfiguration.Builder s3TablesDestination(Consumer<S3TablesDestination.Builder> s3TablesDestination)
The destination information for the metadata table configuration. The destination table bucket must be in the same Region and Amazon Web Services account as the general purpose bucket. The specified metadata table name must be unique within the
This is a convenience method that creates an instance of theaws_s3_metadata
namespace in the destination table bucket.S3TablesDestination.Builder
avoiding the need to create one manually viaS3TablesDestination.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tos3TablesDestination(S3TablesDestination)
.- Parameters:
s3TablesDestination
- a consumer that will call methods onS3TablesDestination.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3TablesDestination(S3TablesDestination)
-
-