interface CfnStreamProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DynamoDB.CfnStreamProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#CfnStreamProps |
Java | software.amazon.awscdk.services.dynamodb.CfnStreamProps |
Python | aws_cdk.aws_dynamodb.CfnStreamProps |
TypeScript | aws-cdk-lib » aws_dynamodb » CfnStreamProps |
Properties for defining a CfnStream.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-stream.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dynamodb as dynamodb } from 'aws-cdk-lib';
const cfnStreamProps: dynamodb.CfnStreamProps = {
streamViewType: 'streamViewType',
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| stream | string | |
| table | string |
streamViewType?
Type:
string
(optional)
tableName?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript