Show / Hide Table of Contents

Interface CfnFileSystem.IReplicationConfigurationProperty

Describes the replication configuration for a specific file system.

Namespace: Amazon.CDK.AWS.EFS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnFileSystem.IReplicationConfigurationProperty
Syntax (vb)
Public Interface CfnFileSystem.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.AWS.EFS;

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

Synopsis

Properties

Destinations

An array of destination objects.

Properties

Destinations

An array of destination objects.

object? Destinations { get; }
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 CfnFileSystem.IReplicationDestinationProperty)[]

Back to top Generated by DocFX