Provides operations on AWS DynamoDB
import { CommonConstruct } from '@gradientedge/cdk-utils'class CustomConstruct extends CommonConstruct { constructor(parent: cdk.Construct, id: string, props: common.CommonStackProps) { super(parent, id, props) this.props = props this.dynamodbManager.createTable('MyTable', this, tableProps) }} Copy
import { CommonConstruct } from '@gradientedge/cdk-utils'class CustomConstruct extends CommonConstruct { constructor(parent: cdk.Construct, id: string, props: common.CommonStackProps) { super(parent, id, props) this.props = props this.dynamodbManager.createTable('MyTable', this, tableProps) }}
[CDK Certificate Module]https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_dynamodb-readme.html
scoped id of the resource
scope in which this resource is defined
table props
Provides operations on AWS DynamoDB
Example
See
[CDK Certificate Module]https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_dynamodb-readme.html