Class CfnTableBucket.ReplicationConfigurationProperty
Specifies replication configuration for the table bucket.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.S3Tables
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTableBucket.ReplicationConfigurationProperty : CfnTableBucket.IReplicationConfigurationProperty
Syntax (vb)
Public Class CfnTableBucket.ReplicationConfigurationProperty Implements CfnTableBucket.IReplicationConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.S3Tables;
var replicationConfigurationProperty = new ReplicationConfigurationProperty {
Role = "role",
Rules = new [] { new ReplicationRuleProperty {
Destinations = new [] { new ReplicationDestinationProperty {
DestinationTableBucketArn = "destinationTableBucketArn"
} }
} }
};
Synopsis
Constructors
| ReplicationConfigurationProperty() | Specifies replication configuration for the table bucket. |
Properties
| Role | The ARN of the IAM role to use for replication. |
| Rules | List of replication rules. |
Constructors
ReplicationConfigurationProperty()
Specifies replication configuration for the table bucket.
public ReplicationConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.S3Tables;
var replicationConfigurationProperty = new ReplicationConfigurationProperty {
Role = "role",
Rules = new [] { new ReplicationRuleProperty {
Destinations = new [] { new ReplicationDestinationProperty {
DestinationTableBucketArn = "destinationTableBucketArn"
} }
} }
};
Properties
Role
The ARN of the IAM role to use for replication.
public string Role { get; set; }
Property Value
Remarks
Rules
List of replication rules.
public object Rules { get; set; }