Show / Hide Table of Contents

Class CfnFileSystemPropsMixin.ReplicationConfigurationProperty

Describes the replication configuration for a specific file system.

Inheritance
object
CfnFileSystemPropsMixin.ReplicationConfigurationProperty
Implements
CfnFileSystemPropsMixin.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.Mixins.Preview.AWS.EFS.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnFileSystemPropsMixin.ReplicationConfigurationProperty : CfnFileSystemPropsMixin.IReplicationConfigurationProperty
Syntax (vb)
Public Class CfnFileSystemPropsMixin.ReplicationConfigurationProperty Implements CfnFileSystemPropsMixin.IReplicationConfigurationProperty
Remarks

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

             var replicationConfigurationProperty = new ReplicationConfigurationProperty {
                 Destinations = new [] { new ReplicationDestinationProperty {
                     AvailabilityZoneName = "availabilityZoneName",
                     FileSystemId = "fileSystemId",
                     KmsKeyId = "kmsKeyId",
                     Region = "region",
                     RoleArn = "roleArn",
                     Status = "status",
                     StatusMessage = "statusMessage"
                 } }
             };

Synopsis

Constructors

ReplicationConfigurationProperty()

Describes the replication configuration for a specific file system.

Properties

Destinations

An array of destination objects.

Constructors

ReplicationConfigurationProperty()

Describes the replication configuration for a specific file system.

public ReplicationConfigurationProperty()
Remarks

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

             var replicationConfigurationProperty = new ReplicationConfigurationProperty {
                 Destinations = new [] { new ReplicationDestinationProperty {
                     AvailabilityZoneName = "availabilityZoneName",
                     FileSystemId = "fileSystemId",
                     KmsKeyId = "kmsKeyId",
                     Region = "region",
                     RoleArn = "roleArn",
                     Status = "status",
                     StatusMessage = "statusMessage"
                 } }
             };

Properties

Destinations

An array of destination objects.

public object? Destinations { get; set; }
Property Value

object

Remarks

Only one destination object is supported.

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

Type union: either IResolvable or (either IResolvable or CfnFileSystemPropsMixin.IReplicationDestinationProperty)[]

Implements

CfnFileSystemPropsMixin.IReplicationConfigurationProperty
Back to top Generated by DocFX