interface CfnSimpleTableProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.SAM.CfnSimpleTableProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssam#CfnSimpleTableProps |
![]() | software.amazon.awscdk.services.sam.CfnSimpleTableProps |
![]() | aws_cdk.aws_sam.CfnSimpleTableProps |
![]() | aws-cdk-lib » aws_sam » CfnSimpleTableProps |
Properties for defining a CfnSimpleTable
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sam as sam } from 'aws-cdk-lib';
const cfnSimpleTableProps: sam.CfnSimpleTableProps = {
primaryKey: {
type: 'type',
// the properties below are optional
name: 'name',
},
provisionedThroughput: {
writeCapacityUnits: 123,
// the properties below are optional
readCapacityUnits: 123,
},
sseSpecification: {
sseEnabled: false,
},
tableName: 'tableName',
tags: {
tagsKey: 'tags',
},
};
Properties
Name | Type | Description |
---|---|---|
primary | IResolvable | Primary | |
provisioned | IResolvable | Provisioned | |
sse | IResolvable | SSESpecification | |
table | string | |
tags? | { [string]: string } |
primaryKey?
Type:
IResolvable
|
Primary
(optional)
provisionedThroughput?
Type:
IResolvable
|
Provisioned
(optional)
sseSpecification?
Type:
IResolvable
|
SSESpecification
(optional)
tableName?
Type:
string
(optional)
tags?
Type:
{ [string]: string }
(optional)