interface KinesisStreamSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DynamoDB.Mixins.CfnGlobalTablePropsMixin.KinesisStreamSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdynamodb/mixins#CfnGlobalTablePropsMixin_KinesisStreamSpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.dynamodb.mixins.CfnGlobalTablePropsMixin.KinesisStreamSpecificationProperty |
Python | aws_cdk.mixins_preview.aws_dynamodb.mixins.CfnGlobalTablePropsMixin.KinesisStreamSpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dynamodb » mixins » CfnGlobalTablePropsMixin » 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 { mixins as dynamodb_mixins } from '@aws-cdk/mixins-preview/aws-dynamodb';
const kinesisStreamSpecificationProperty: dynamodb_mixins.CfnGlobalTablePropsMixin.KinesisStreamSpecificationProperty = {
approximateCreationDateTimePrecision: 'approximateCreationDateTimePrecision',
streamArn: 'streamArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| approximate | string | The precision for the time and date that the stream was created. |
| stream | 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.
streamArn?
Type:
string
(optional)
The ARN for a specific Kinesis data stream.

.NET
Go
Java
Python
TypeScript