Interface OneZoneFileSystemProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
OneZoneFileSystemProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.109.0 (build c221850)",
date="2025-03-26T23:01:04.475Z")
@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 class
A builder forOneZoneFileSystemProps
static final class
An 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.Builder
ofOneZoneFileSystemProps
-