Interface CreateTableRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreateTableRequest.Builder,CreateTableRequest>,S3TablesRequest.Builder,SdkBuilder<CreateTableRequest.Builder,CreateTableRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateTableRequest
public static interface CreateTableRequest.Builder extends S3TablesRequest.Builder, SdkPojo, CopyableBuilder<CreateTableRequest.Builder,CreateTableRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CreateTableRequest.Builderformat(String format)The format for the table.CreateTableRequest.Builderformat(OpenTableFormat format)The format for the table.default CreateTableRequest.Buildermetadata(Consumer<TableMetadata.Builder> metadata)The metadata for the table.CreateTableRequest.Buildermetadata(TableMetadata metadata)The metadata for the table.CreateTableRequest.Buildername(String name)The name for the table.CreateTableRequest.Buildernamespace(String namespace)The namespace to associated with the table.CreateTableRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateTableRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateTableRequest.BuildertableBucketARN(String tableBucketARN)The Amazon Resource Name (ARN) of the table bucket to create the table in.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.s3tables.model.S3TablesRequest.Builder
build
-
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
-
tableBucketARN
CreateTableRequest.Builder tableBucketARN(String tableBucketARN)
The Amazon Resource Name (ARN) of the table bucket to create the table in.
- Parameters:
tableBucketARN- The Amazon Resource Name (ARN) of the table bucket to create the table in.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
namespace
CreateTableRequest.Builder namespace(String namespace)
The namespace to associated with the table.
- Parameters:
namespace- The namespace to associated with the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
CreateTableRequest.Builder name(String name)
The name for the table.
- Parameters:
name- The name for the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
format
CreateTableRequest.Builder format(String format)
The format for the table.
- Parameters:
format- The format for the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OpenTableFormat,OpenTableFormat
-
format
CreateTableRequest.Builder format(OpenTableFormat format)
The format for the table.
- Parameters:
format- The format for the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OpenTableFormat,OpenTableFormat
-
metadata
CreateTableRequest.Builder metadata(TableMetadata metadata)
The metadata for the table.
- Parameters:
metadata- The metadata for the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metadata
default CreateTableRequest.Builder metadata(Consumer<TableMetadata.Builder> metadata)
The metadata for the table.
This is a convenience method that creates an instance of theTableMetadata.Builderavoiding the need to create one manually viaTableMetadata.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tometadata(TableMetadata).- Parameters:
metadata- a consumer that will call methods onTableMetadata.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
metadata(TableMetadata)
-
overrideConfiguration
CreateTableRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateTableRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-