interface KinesisStreamSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DynamoDB.CfnGlobalTablePropsMixin.KinesisStreamSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdynamodb#CfnGlobalTablePropsMixin_KinesisStreamSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.dynamodb.CfnGlobalTablePropsMixin.KinesisStreamSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_dynamodb.CfnGlobalTablePropsMixin.KinesisStreamSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dynamodb » 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 { aws_dynamodb as dynamodb } from '@aws-cdk/cfn-property-mixins';
const kinesisStreamSpecificationProperty: dynamodb.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