interface StreamReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DynamoDB.StreamReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdynamodb#StreamReference |
Java | software.amazon.awscdk.interfaces.dynamodb.StreamReference |
Python | aws_cdk.interfaces.aws_dynamodb.StreamReference |
TypeScript | aws-cdk-lib » interfaces » aws_dynamodb » StreamReference |
A reference to a Stream resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dynamodb as interfaces_dynamodb } from 'aws-cdk-lib/interfaces';
const streamReference: interfaces_dynamodb.StreamReference = {
streamArn: 'streamArn',
streamId: 'streamId',
};
Properties
| Name | Type | Description |
|---|---|---|
| stream | string | The ARN of the Stream resource. |
| stream | string | The Id of the Stream resource. |
streamArn
Type:
string
The ARN of the Stream resource.
streamId
Type:
string
The Id of the Stream resource.

.NET
Go
Java
Python
TypeScript