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")
.roleArn("roleArn")
.status("status")
.statusMessage("statusMessage")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFileSystem.ReplicationDestinationPropertystatic final classAn implementation forCfnFileSystem.ReplicationDestinationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringFor One Zone file systems, the replication configuration must specify the Availability Zone in which the destination file system is located.default StringThe ID of the destination Amazon EFS file system.default StringThe ID of an AWS KMS key used to protect the encrypted file system.default StringThe AWS Region in which the destination file system is located.default StringThe Amazon Resource Name (ARN) of the current source file system in the replication configuration.default StringDescribes the status of the replication configuration.default StringMessage that provides details about thePAUSEDorERRRORstate of the replication destination configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAvailabilityZoneName
For One Zone file systems, the replication configuration must specify the Availability Zone in which the destination file system is located.Use the format
us-east-1ato 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 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 One Zone file systems, the replication configuration must specify the AWS Region in which the destination file system is located.
- See Also:
-
getRoleArn
The Amazon Resource Name (ARN) of the current source file system in the replication configuration.- See Also:
-
getStatus
Describes the status of the replication configuration.For more information about replication status, see Viewing replication details in the Amazon EFS User Guide .
- See Also:
-
getStatusMessage
Message that provides details about thePAUSEDorERRRORstate of the replication destination configuration.For more information about replication status messages, see Viewing replication details in the Amazon EFS User Guide .
- See Also:
-
builder
-