interface ReplicationRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Tables.CfnTableBucket.ReplicationRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#CfnTableBucket_ReplicationRuleProperty |
Java | software.amazon.awscdk.services.s3tables.CfnTableBucket.ReplicationRuleProperty |
Python | aws_cdk.aws_s3tables.CfnTableBucket.ReplicationRuleProperty |
TypeScript | aws-cdk-lib » aws_s3tables » CfnTableBucket » ReplicationRuleProperty |
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 { aws_s3tables as s3tables } from 'aws-cdk-lib';
const replicationRuleProperty: s3tables.CfnTableBucket.ReplicationRuleProperty = {
destinations: [{
destinationTableBucketArn: 'destinationTableBucketArn',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| destinations | IResolvable | (IResolvable | Replication)[] | List of replication destinations. |
destinations
Type:
IResolvable | (IResolvable | Replication)[]
List of replication destinations.

.NET
Go
Java
Python
TypeScript