@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:16.195Z") @Stability(value=Stable) public interface CfnTableProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cassandra.*;
CfnTableProps cfnTableProps = CfnTableProps.builder()
.keyspaceName("keyspaceName")
.partitionKeyColumns(List.of(ColumnProperty.builder()
.columnName("columnName")
.columnType("columnType")
.build()))
// the properties below are optional
.billingMode(BillingModeProperty.builder()
.mode("mode")
// the properties below are optional
.provisionedThroughput(ProvisionedThroughputProperty.builder()
.readCapacityUnits(123)
.writeCapacityUnits(123)
.build())
.build())
.clusteringKeyColumns(List.of(ClusteringKeyColumnProperty.builder()
.column(ColumnProperty.builder()
.columnName("columnName")
.columnType("columnType")
.build())
// the properties below are optional
.orderBy("orderBy")
.build()))
.defaultTimeToLive(123)
.encryptionSpecification(EncryptionSpecificationProperty.builder()
.encryptionType("encryptionType")
// the properties below are optional
.kmsKeyIdentifier("kmsKeyIdentifier")
.build())
.pointInTimeRecoveryEnabled(false)
.regularColumns(List.of(ColumnProperty.builder()
.columnName("columnName")
.columnType("columnType")
.build()))
.tableName("tableName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTableProps.Builder
A builder for
CfnTableProps |
static class |
CfnTableProps.Jsii$Proxy
An implementation for
CfnTableProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnTableProps.Builder |
builder() |
default Object |
getBillingMode()
`AWS::Cassandra::Table.BillingMode`.
|
default Object |
getClusteringKeyColumns()
`AWS::Cassandra::Table.ClusteringKeyColumns`.
|
default Number |
getDefaultTimeToLive()
`AWS::Cassandra::Table.DefaultTimeToLive`.
|
default Object |
getEncryptionSpecification()
`AWS::Cassandra::Table.EncryptionSpecification`.
|
String |
getKeyspaceName()
`AWS::Cassandra::Table.KeyspaceName`.
|
Object |
getPartitionKeyColumns()
`AWS::Cassandra::Table.PartitionKeyColumns`.
|
default Object |
getPointInTimeRecoveryEnabled()
`AWS::Cassandra::Table.PointInTimeRecoveryEnabled`.
|
default Object |
getRegularColumns()
`AWS::Cassandra::Table.RegularColumns`.
|
default String |
getTableName()
`AWS::Cassandra::Table.TableName`.
|
default List<CfnTag> |
getTags()
`AWS::Cassandra::Table.Tags`.
|
@Stability(value=Stable) @Nullable default Object getBillingMode()
@Stability(value=Stable) @Nullable default Object getClusteringKeyColumns()
@Stability(value=Stable) @Nullable default Number getDefaultTimeToLive()
@Stability(value=Stable) @Nullable default Object getEncryptionSpecification()
@Stability(value=Stable) @NotNull String getKeyspaceName()
@Stability(value=Stable) @NotNull Object getPartitionKeyColumns()
@Stability(value=Stable) @Nullable default Object getPointInTimeRecoveryEnabled()
@Stability(value=Stable) @Nullable default Object getRegularColumns()
@Stability(value=Stable) @Nullable default String getTableName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnTableProps.Builder builder()
CfnTableProps.Builder of CfnTablePropsCopyright © 2021. All rights reserved.