interface ReplicationRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Tables.CfnTableBucketPropsMixin.ReplicationRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3tables#CfnTableBucketPropsMixin_ReplicationRuleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3tables.CfnTableBucketPropsMixin.ReplicationRuleProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3tables.CfnTableBucketPropsMixin.ReplicationRuleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3tables » CfnTableBucketPropsMixin » 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/cfn-property-mixins';
const replicationRuleProperty: s3tables.CfnTableBucketPropsMixin.ReplicationRuleProperty = {
destinations: [{
destinationTableBucketArn: 'destinationTableBucketArn',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| destinations? | IResolvable | (IResolvable | Replication)[] | List of replication destinations. |
destinations?
Type:
IResolvable | (IResolvable | Replication)[]
(optional)
List of replication destinations.

.NET
Go
Java
Python
TypeScript