Interface CfnGlobalTable.KinesisStreamSpecificationProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnGlobalTable.KinesisStreamSpecificationProperty.Jsii$Proxy
- Enclosing class:
- CfnGlobalTable
@Stability(Stable)
public static interface CfnGlobalTable.KinesisStreamSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.dynamodb.*;
 KinesisStreamSpecificationProperty kinesisStreamSpecificationProperty = KinesisStreamSpecificationProperty.builder()
         .streamArn("streamArn")
         // the properties below are optional
         .approximateCreationDateTimePrecision("approximateCreationDateTimePrecision")
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGlobalTable.KinesisStreamSpecificationPropertystatic final classAn implementation forCfnGlobalTable.KinesisStreamSpecificationProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getStreamArnThe ARN for a specific Kinesis data stream.- See Also:
 
- 
getApproximateCreationDateTimePrecisionThe precision for the time and date that the stream was created.- See Also:
 
- 
builder
 
-