Interface CfnTable.StreamSpecificationProperty

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

@Stability(Stable) public static interface CfnTable.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.services.dynamodb.*;
 Object policyDocument;
 StreamSpecificationProperty streamSpecificationProperty = StreamSpecificationProperty.builder()
         .streamViewType("streamViewType")
         // the properties below are optional
         .resourcePolicy(ResourcePolicyProperty.builder()
                 .policyDocument(policyDocument)
                 .build())
         .build();
 

See Also: