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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTableBucket.ReplicationConfigurationPropertystatic final classAn implementation forCfnTableBucket.ReplicationConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRole
The ARN of the IAM role to use for replication.- See Also:
-
getRules
List of replication rules.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnTableBucket.ReplicationRuleProperty>- See Also:
-
builder
-