Interface CfnTableBucket.ReplicationConfigurationProperty

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

@Stability(Stable) public static interface CfnTableBucket.ReplicationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specifies replication configuration 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.*;
 ReplicationConfigurationProperty replicationConfigurationProperty = ReplicationConfigurationProperty.builder()
         .role("role")
         .rules(List.of(ReplicationRuleProperty.builder()
                 .destinations(List.of(ReplicationDestinationProperty.builder()
                         .destinationTableBucketArn("destinationTableBucketArn")
                         .build()))
                 .build()))
         .build();
 

See Also: