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
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
Remarks
Only one destination object is supported.
Type union: either IResolvable or (either IResolvable or CfnFileSystem.IReplicationDestinationProperty)[]