Interface CfnFileSystemProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFileSystemProps.Jsii$Proxy
CfnFileSystem.
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.*;
Object fileSystemPolicy;
CfnFileSystemProps cfnFileSystemProps = CfnFileSystemProps.builder()
.availabilityZoneName("availabilityZoneName")
.backupPolicy(BackupPolicyProperty.builder()
.status("status")
.build())
.bypassPolicyLockoutSafetyCheck(false)
.encrypted(false)
.fileSystemPolicy(fileSystemPolicy)
.fileSystemTags(List.of(ElasticFileSystemTagProperty.builder()
.key("key")
.value("value")
.build()))
.kmsKeyId("kmsKeyId")
.lifecyclePolicies(List.of(LifecyclePolicyProperty.builder()
.transitionToIa("transitionToIa")
.transitionToPrimaryStorageClass("transitionToPrimaryStorageClass")
.build()))
.performanceMode("performanceMode")
.provisionedThroughputInMibps(123)
.throughputMode("throughputMode")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFileSystemPropsstatic final classAn implementation forCfnFileSystemProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnFileSystemProps.Builderbuilder()default StringUsed to create a file system that uses One Zone storage classes.default ObjectUse theBackupPolicyto turn automatic backups on or off for the file system.default Object(Optional) A boolean that specifies whether or not to bypass theFileSystemPolicylockout safety check.default ObjectA Boolean value that, if true, creates an encrypted file system.default ObjectTheFileSystemPolicyfor the EFS file system.Use to create one or more tags associated with the file system.default StringThe ID of the AWS KMS key to be used to protect the encrypted file system.default ObjectAn array ofLifecyclePolicyobjects that define the file system'sLifecycleConfigurationobject.default StringThe performance mode of the file system.default NumberThe throughput, measured in MiB/s, that you want to provision for a file system that you're creating.default StringSpecifies the throughput mode for the file system.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAvailabilityZoneName
Used to create a file system that uses One Zone storage classes.It specifies the AWS Availability Zone in which to create the file system. Use the format
us-east-1ato 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.
-
getBackupPolicy
Use theBackupPolicyto turn automatic backups on or off for the file system. -
getBypassPolicyLockoutSafetyCheck
(Optional) A boolean that specifies whether or not to bypass theFileSystemPolicylockout safety check.The lockout safety check determines whether the policy in the request will lock out, or prevent, the IAM principal that is making the request from making future
PutFileSystemPolicyrequests on this file system. SetBypassPolicyLockoutSafetyChecktoTrueonly when you intend to prevent the IAM principal that is making the request from making subsequentPutFileSystemPolicyrequests on this file system. The default value isFalse. -
getEncrypted
A Boolean value that, if true, creates an encrypted file system.When creating an encrypted file system, you have the option of specifying a KmsKeyId for an existing AWS KMS key . If you don't specify a KMS key , then the default KMS key for Amazon EFS ,
/aws/elasticfilesystem, is used to protect the encrypted file system. -
getFileSystemPolicy
TheFileSystemPolicyfor the EFS file system.A file system policy is an IAM resource policy used to control NFS access to an EFS file system. For more information, see Using IAM to control NFS access to Amazon EFS in the Amazon EFS User Guide .
-
getFileSystemTags
@Stability(Stable) @Nullable default List<CfnFileSystem.ElasticFileSystemTagProperty> getFileSystemTags()Use to create one or more tags associated with the file system.Each tag is a user-defined key-value pair. Name your file system on creation by including a
"Key":"Name","Value":"{value}"key-value pair. Each key must be unique. For more information, see Tagging AWS resources in the AWS General Reference Guide . -
getKmsKeyId
The ID of the AWS KMS key to be used to protect the encrypted file system.This parameter is only required if you want to use a nondefault KMS key . If this parameter is not specified, the default KMS key for Amazon EFS is used. This ID can be in one of the following formats:
- Key ID - A unique identifier of the key, for example
1234abcd-12ab-34cd-56ef-1234567890ab. - ARN - An Amazon Resource Name (ARN) for the key, for example
arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab. - Key alias - A previously created display name for a key, for example
alias/projectKey1. - Key alias ARN - An ARN for a key alias, for example
arn:aws:kms:us-west-2:444455556666:alias/projectKey1.
If
KmsKeyIdis specified, theEncryptedparameter must be set to true. - Key ID - A unique identifier of the key, for example
-
getLifecyclePolicies
An array ofLifecyclePolicyobjects that define the file system'sLifecycleConfigurationobject.A
LifecycleConfigurationobject informs EFS lifecycle management and intelligent tiering of the following:- When to move files in the file system from primary storage to the IA storage class.
- When to move files that are in IA storage to primary storage.
Amazon EFS requires that each
LifecyclePolicyobject have only a single transition. This means that in a request body,LifecyclePoliciesneeds to be structured as an array ofLifecyclePolicyobjects, one object for each transition,TransitionToIA,TransitionToPrimaryStorageClass. See the example requests in the following section for more information. -
getPerformanceMode
The performance mode of the file system.We recommend
generalPurposeperformance mode for most file systems. File systems using themaxIOperformance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. The performance mode can't be changed after the file system has been created.The
maxIOmode is not supported on file systems using One Zone storage classes. -
getProvisionedThroughputInMibps
The throughput, measured in MiB/s, that you want to provision for a file system that you're creating.Valid values are 1-1024. Required if
ThroughputModeis set toprovisioned. The upper limit for throughput is 1024 MiB/s. To increase this limit, contact AWS Support . For more information, see Amazon EFS quotas that you can increase in the Amazon EFS User Guide . -
getThroughputMode
Specifies the throughput mode for the file system.The mode can be
bursting,provisioned, orelastic. If you setThroughputModetoprovisioned, you must also set a value forProvisionedThroughputInMibps. After you create the file system, you can decrease your file system's throughput in Provisioned Throughput mode or change between the throughput modes, with certain time restrictions. For more information, see Specifying throughput with provisioned mode in the Amazon EFS User Guide .Default is
bursting. -
builder
- Returns:
- a
CfnFileSystemProps.BuilderofCfnFileSystemProps
-