Show / Hide Table of Contents

Class CfnFileSystemPropsMixin.ReplicationDestinationProperty

Describes the destination file system in the replication configuration.

Inheritance
object
CfnFileSystemPropsMixin.ReplicationDestinationProperty
Implements
CfnFileSystemPropsMixin.IReplicationDestinationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.EFS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnFileSystemPropsMixin.ReplicationDestinationProperty : CfnFileSystemPropsMixin.IReplicationDestinationProperty
Syntax (vb)
Public Class CfnFileSystemPropsMixin.ReplicationDestinationProperty Implements CfnFileSystemPropsMixin.IReplicationDestinationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-replicationdestination.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.CfnPropertyMixins.AWS.EFS;

             var replicationDestinationProperty = new ReplicationDestinationProperty {
                 AvailabilityZoneName = "availabilityZoneName",
                 FileSystemId = "fileSystemId",
                 KmsKeyId = "kmsKeyId",
                 Region = "region",
                 RoleArn = "roleArn",
                 Status = "status",
                 StatusMessage = "statusMessage"
             };

Synopsis

Constructors

ReplicationDestinationProperty()

Describes the destination file system in the replication configuration.

Properties

AvailabilityZoneName

For One Zone file systems, the replication configuration must specify the Availability Zone in which the destination file system is located.

FileSystemId

The ID of the destination Amazon EFS file system.

KmsKeyId

The ID of an AWS KMS key used to protect the encrypted file system.

Region

The AWS Region in which the destination file system is located.

RoleArn

The Amazon Resource Name (ARN) of the current source file system in the replication configuration.

Status

Describes the status of the replication configuration.

StatusMessage

Message that provides details about the PAUSED or ERRROR state of the replication destination configuration.

Constructors

ReplicationDestinationProperty()

Describes the destination file system in the replication configuration.

public ReplicationDestinationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-replicationdestination.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.CfnPropertyMixins.AWS.EFS;

             var replicationDestinationProperty = new ReplicationDestinationProperty {
                 AvailabilityZoneName = "availabilityZoneName",
                 FileSystemId = "fileSystemId",
                 KmsKeyId = "kmsKeyId",
                 Region = "region",
                 RoleArn = "roleArn",
                 Status = "status",
                 StatusMessage = "statusMessage"
             };

Properties

AvailabilityZoneName

For One Zone file systems, the replication configuration must specify the Availability Zone in which the destination file system is located.

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

string

Remarks

Use the format us-east-1a to specify the Availability Zone. For more information about One Zone file systems, see EFS file system types in the Amazon EFS User Guide .

One Zone file system type is not available in all Availability Zones in AWS Regions where Amazon EFS is available.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-replicationdestination.html#cfn-efs-filesystem-replicationdestination-availabilityzonename

FileSystemId

The ID of the destination Amazon EFS file system.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-replicationdestination.html#cfn-efs-filesystem-replicationdestination-filesystemid

KmsKeyId

The ID of an AWS KMS key used to protect the encrypted file system.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-replicationdestination.html#cfn-efs-filesystem-replicationdestination-kmskeyid

Region

The AWS Region in which the destination file system is located.

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

string

Remarks
For One Zone file systems, the replication configuration must specify the AWS Region in which the destination file system is located.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-replicationdestination.html#cfn-efs-filesystem-replicationdestination-region

RoleArn

The Amazon Resource Name (ARN) of the current source file system in the replication configuration.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-replicationdestination.html#cfn-efs-filesystem-replicationdestination-rolearn

Status

Describes the status of the replication configuration.

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

string

Remarks

For more information about replication status, see Viewing replication details in the Amazon EFS User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-replicationdestination.html#cfn-efs-filesystem-replicationdestination-status

StatusMessage

Message that provides details about the PAUSED or ERRROR state of the replication destination configuration.

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

string

Remarks

For more information about replication status messages, see Viewing replication details in the Amazon EFS User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-replicationdestination.html#cfn-efs-filesystem-replicationdestination-statusmessage

Implements

CfnFileSystemPropsMixin.IReplicationDestinationProperty
Back to top Generated by DocFX