Interface CfnTablePropsMixin.StreamSpecificationProperty

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

@Stability(Stable) public static interface CfnTablePropsMixin.StreamSpecificationProperty extends software.amazon.jsii.JsiiSerializable
Represents the DynamoDB Streams configuration for a table in DynamoDB.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.dynamodb.*;
 Object policyDocument;
 StreamSpecificationProperty streamSpecificationProperty = StreamSpecificationProperty.builder()
         .resourcePolicy(ResourcePolicyProperty.builder()
                 .policyDocument(policyDocument)
                 .build())
         .streamViewType("streamViewType")
         .build();
 

See Also: