Interface CfnGlobalTable.ReplicaStreamSpecificationProperty

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

@Stability(Stable) public static interface CfnGlobalTable.ReplicaStreamSpecificationProperty extends software.amazon.jsii.JsiiSerializable
Represents the DynamoDB Streams configuration for a 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.*;
 Object policyDocument;
 ReplicaStreamSpecificationProperty replicaStreamSpecificationProperty = ReplicaStreamSpecificationProperty.builder()
         .resourcePolicy(ResourcePolicyProperty.builder()
                 .policyDocument(policyDocument)
                 .build())
         .build();
 

See Also: