Interface CfnFileSystem.ReplicationDestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFileSystem.ReplicationDestinationProperty.Jsii$Proxy
- Enclosing class:
CfnFileSystem
@Stability(Stable)
public static interface CfnFileSystem.ReplicationDestinationProperty
extends software.amazon.jsii.JsiiSerializable
Describes the destination file system in the replication configuration.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.efs.*; ReplicationDestinationProperty replicationDestinationProperty = ReplicationDestinationProperty.builder() .availabilityZoneName("availabilityZoneName") .fileSystemId("fileSystemId") .kmsKeyId("kmsKeyId") .region("region") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFileSystem.ReplicationDestinationProperty
static final class
An implementation forCfnFileSystem.ReplicationDestinationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The AWS Availability Zone in which to create the file system.default String
The ID of the destination Amazon EFS file system.default String
The ID of an AWS KMS key used to protect the encrypted file system.default String
The AWS Region in which the destination file system is located.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAvailabilityZoneName
The AWS Availability Zone in which to create the file system.For file systems using One Zone storage classes, the replication configuration must specify the Availability Zone in which the destination file system is located.
Use the format
us-east-1a
to specify the Availability Zone. For more information about One Zone storage classes, see Using EFS storage classes in the Amazon EFS User Guide .One Zone storage classes are not available in all Availability Zones in AWS Regions where Amazon EFS is available.
- See Also:
-
getFileSystemId
The ID of the destination Amazon EFS file system.- See Also:
-
getKmsKeyId
The ID of an AWS KMS key used to protect the encrypted file system.- See Also:
-
getRegion
The AWS Region in which the destination file system is located.For file systems using Standard storage classes, the replication configuration must specify the AWS Region in which the destination file system is located.
- See Also:
-
builder
-