interface KinesisStreamSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DynamoDB.CfnGlobalTable.KinesisStreamSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#CfnGlobalTable_KinesisStreamSpecificationProperty |
Java | software.amazon.awscdk.services.dynamodb.CfnGlobalTable.KinesisStreamSpecificationProperty |
Python | aws_cdk.aws_dynamodb.CfnGlobalTable.KinesisStreamSpecificationProperty |
TypeScript | aws-cdk-lib » aws_dynamodb » CfnGlobalTable » KinesisStreamSpecificationProperty |
The Kinesis Data Streams configuration for the specified global table replica.
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 kinesisStreamSpecificationProperty: dynamodb.CfnGlobalTable.KinesisStreamSpecificationProperty = {
streamArn: 'streamArn',
// the properties below are optional
approximateCreationDateTimePrecision: 'approximateCreationDateTimePrecision',
};
Properties
| Name | Type | Description |
|---|---|---|
| stream | string | The ARN for a specific Kinesis data stream. |
| approximate | string | The precision for the time and date that the stream was created. |
streamArn
Type:
string
The ARN for a specific Kinesis data stream.
approximateCreationDateTimePrecision?
Type:
string
(optional)
The precision for the time and date that the stream was created.

.NET
Go
Java
Python
TypeScript