Show / Hide Table of Contents

Class CfnTableBucket.ReplicationConfigurationProperty

Specifies replication configuration for the table bucket.

Inheritance
object
CfnTableBucket.ReplicationConfigurationProperty
Implements
CfnTableBucket.IReplicationConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-replicationconfiguration.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-replicationconfiguration.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-replicationconfiguration.html#cfn-s3tables-tablebucket-replicationconfiguration-role

Rules

List of replication rules.

public object Rules { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-replicationconfiguration.html#cfn-s3tables-tablebucket-replicationconfiguration-rules

Type union: either IResolvable or (either IResolvable or CfnTableBucket.IReplicationRuleProperty)[]

Implements

CfnTableBucket.IReplicationConfigurationProperty
Back to top Generated by DocFX