interface KinesisStreamSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DynamoDB.CfnTablePropsMixin.KinesisStreamSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdynamodb#CfnTablePropsMixin_KinesisStreamSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.dynamodb.CfnTablePropsMixin.KinesisStreamSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_dynamodb.CfnTablePropsMixin.KinesisStreamSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dynamodb » CfnTablePropsMixin » KinesisStreamSpecificationProperty |
The Kinesis Data Streams configuration for the specified table.
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.CfnTablePropsMixin.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 | IStream | 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 | IStream
(optional)
The ARN for a specific Kinesis data stream.
Length Constraints: Minimum length of 37. Maximum length of 1024.

.NET
Go
Java
Python
TypeScript