Interface OneZoneFileSystemProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
OneZoneFileSystemProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:50.971Z")
@Stability(Stable)
public interface OneZoneFileSystemProps
extends software.amazon.jsii.JsiiSerializable
Properties for configuring ReplicationConfiguration to replicate to a new One Zone file system.
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.*;
import software.amazon.awscdk.services.kms.*;
Key key;
OneZoneFileSystemProps oneZoneFileSystemProps = OneZoneFileSystemProps.builder()
.availabilityZone("availabilityZone")
.region("region")
// the properties below are optional
.kmsKey(key)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forOneZoneFileSystemPropsstatic final classAn implementation forOneZoneFileSystemProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAvailabilityZone
The availability zone name of the destination file system.One zone file system is used as the destination file system when this property is set.
-
getRegion
The AWS Region in which the destination file system is located. -
getKmsKey
AWS KMS key used to protect the encrypted file system.Default: - use service-managed KMS key for Amazon EFS
-
builder
- Returns:
- a
OneZoneFileSystemProps.BuilderofOneZoneFileSystemProps
-