Show / Hide Table of Contents

Class CfnDataLake.ReplicationConfigurationProperty

Provides replication configuration details for objects stored in the Amazon Security Lake data lake.

Inheritance
object
CfnDataLake.ReplicationConfigurationProperty
Implements
CfnDataLake.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.SecurityLake
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataLake.ReplicationConfigurationProperty : CfnDataLake.IReplicationConfigurationProperty
Syntax (vb)
Public Class CfnDataLake.ReplicationConfigurationProperty Implements CfnDataLake.IReplicationConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securitylake-datalake-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.SecurityLake;

             var replicationConfigurationProperty = new ReplicationConfigurationProperty {
                 Regions = new [] { "regions" },
                 RoleArn = "roleArn"
             };

Synopsis

Constructors

ReplicationConfigurationProperty()

Provides replication configuration details for objects stored in the Amazon Security Lake data lake.

Properties

Regions

Specifies one or more centralized rollup Regions.

RoleArn

Replication settings for the Amazon S3 buckets.

Constructors

ReplicationConfigurationProperty()

Provides replication configuration details for objects stored in the Amazon Security Lake data lake.

public ReplicationConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securitylake-datalake-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.SecurityLake;

             var replicationConfigurationProperty = new ReplicationConfigurationProperty {
                 Regions = new [] { "regions" },
                 RoleArn = "roleArn"
             };

Properties

Regions

Specifies one or more centralized rollup Regions.

public string[]? Regions { get; set; }
Property Value

string[]

Remarks

The AWS Region specified in the region parameter of the CreateDataLake or UpdateDataLake operations contributes data to the rollup Region or Regions specified in this parameter.

Replication enables automatic, asynchronous copying of objects across Amazon S3 buckets. S3 buckets that are configured for object replication can be owned by the same AWS account or by different accounts. You can replicate objects to a single destination bucket or to multiple destination buckets. The destination buckets can be in different Regions or within the same Region as the source bucket.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securitylake-datalake-replicationconfiguration.html#cfn-securitylake-datalake-replicationconfiguration-regions

RoleArn

Replication settings for the Amazon S3 buckets.

public string? RoleArn { get; set; }
Property Value

string

Remarks

This parameter uses the AWS Identity and Access Management (IAM) role you created that is managed by Security Lake , to ensure the replication setting is correct.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securitylake-datalake-replicationconfiguration.html#cfn-securitylake-datalake-replicationconfiguration-rolearn

Implements

CfnDataLake.IReplicationConfigurationProperty
Back to top Generated by DocFX