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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTableBucket.ReplicationRulePropertystatic final classAn implementation forCfnTableBucket.ReplicationRuleProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinations
List of replication destinations.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnTableBucket.ReplicationDestinationProperty>- See Also:
-
builder
-