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

.NET
Go
Java
Python
TypeScript