Interface CfnTable.KinesisStreamSpecificationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTable.KinesisStreamSpecificationProperty.Jsii$Proxy
Enclosing class:
CfnTable

@Stability(Stable) public static interface CfnTable.KinesisStreamSpecificationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.dynamodb.*;
 KinesisStreamSpecificationProperty kinesisStreamSpecificationProperty = KinesisStreamSpecificationProperty.builder()
         .streamArn("streamArn")
         // the properties below are optional
         .approximateCreationDateTimePrecision("approximateCreationDateTimePrecision")
         .build();
 

See Also: