@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2022-12-23T19:56:53.645Z") @Stability(value=Stable) public interface CfnSimpleTableProps 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.sam.*;
CfnSimpleTableProps cfnSimpleTableProps = CfnSimpleTableProps.builder()
.primaryKey(PrimaryKeyProperty.builder()
.type("type")
// the properties below are optional
.name("name")
.build())
.provisionedThroughput(ProvisionedThroughputProperty.builder()
.writeCapacityUnits(123)
// the properties below are optional
.readCapacityUnits(123)
.build())
.sseSpecification(SSESpecificationProperty.builder()
.sseEnabled(false)
.build())
.tableName("tableName")
.tags(Map.of(
"tagsKey", "tags"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSimpleTableProps.Builder
A builder for
CfnSimpleTableProps |
static class |
CfnSimpleTableProps.Jsii$Proxy
An implementation for
CfnSimpleTableProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnSimpleTableProps.Builder |
builder() |
default Object |
getPrimaryKey()
`AWS::Serverless::SimpleTable.PrimaryKey`.
|
default Object |
getProvisionedThroughput()
`AWS::Serverless::SimpleTable.ProvisionedThroughput`.
|
default Object |
getSseSpecification()
`AWS::Serverless::SimpleTable.SSESpecification`.
|
default String |
getTableName()
`AWS::Serverless::SimpleTable.TableName`.
|
default Map<String,String> |
getTags()
`AWS::Serverless::SimpleTable.Tags`.
|
@Stability(value=Stable) @Nullable default Object getPrimaryKey()
@Stability(value=Stable) @Nullable default Object getProvisionedThroughput()
@Stability(value=Stable) @Nullable default Object getSseSpecification()
@Stability(value=Stable) @Nullable default String getTableName()
@Stability(value=Stable) @Nullable default Map<String,String> getTags()
@Stability(value=Stable) static CfnSimpleTableProps.Builder builder()
CfnSimpleTableProps.Builder of CfnSimpleTablePropsCopyright © 2022. All rights reserved.