Interface CfnTableBucket.ReplicationRuleProperty

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

@Stability(Stable) public static interface CfnTableBucket.ReplicationRuleProperty extends software.amazon.jsii.JsiiSerializable
A replication rule for the table bucket.

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.s3tables.*;
 ReplicationRuleProperty replicationRuleProperty = ReplicationRuleProperty.builder()
         .destinations(List.of(ReplicationDestinationProperty.builder()
                 .destinationTableBucketArn("destinationTableBucketArn")
                 .build()))
         .build();
 

See Also: