StreamReference

class aws_cdk.interfaces.aws_dynamodb.StreamReference(*, stream_arn, stream_id)

Bases: object

A reference to a Stream resource.

Parameters:
  • stream_arn (str) – The ARN of the Stream resource.

  • stream_id (str) – The Id of the Stream resource.

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.interfaces import aws_dynamodb as interfaces_dynamodb

stream_reference = interfaces_dynamodb.StreamReference(
    stream_arn="streamArn",
    stream_id="streamId"
)

Attributes

stream_arn

The ARN of the Stream resource.

stream_id

The Id of the Stream resource.