CfnStreamProps

class aws_cdk.aws_dynamodb.CfnStreamProps(*, stream_view_type=None, table_name=None)

Bases: object

Properties for defining a CfnStream.

Parameters:
  • stream_view_type (Optional[str])

  • table_name (Optional[str])

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-stream.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_dynamodb as dynamodb

cfn_stream_props = dynamodb.CfnStreamProps(
    stream_view_type="streamViewType",
    table_name="tableName"
)

Attributes

stream_view_type

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-stream.html#cfn-dynamodb-stream-streamviewtype

Type:

see

table_name

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-stream.html#cfn-dynamodb-stream-tablename

Type:

see