Class CfnFileSystem
- All Implemented Interfaces:
IConstruct
,IDependable
,IInspectable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
AWS::EFS::FileSystem
.
The AWS::EFS::FileSystem
resource creates a new, empty file system in Amazon Elastic File System ( Amazon EFS ). You must create a mount target ( AWS::EFS::MountTarget ) to mount your EFS file system on an Amazon EC2 or other AWS cloud compute resource.
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; CfnFileSystem cfnFileSystem = CfnFileSystem.Builder.create(this, "MyCfnFileSystem") .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
Modifier and TypeClassDescriptionstatic interface
The backup policy turns automatic backups for the file system on or off.static final class
A fluent builder forCfnFileSystem
.static interface
A tag is a key-value pair attached to a file system.static interface
Describes a policy used by EFS lifecycle management and EFS Intelligent-Tiering that specifies when to transition files into and out of the file system's Infrequent Access (IA) storage class.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionCfnFileSystem
(Construct scope, String id) Create a newAWS::EFS::FileSystem
.CfnFileSystem
(Construct scope, String id, CfnFileSystemProps props) Create a newAWS::EFS::FileSystem
.protected
CfnFileSystem
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnFileSystem
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionThe Amazon Resource Name (ARN) of the EFS file system.The ID of the EFS file system.Used to create a file system that uses One Zone storage classes.Use theBackupPolicy
to turn automatic backups on or off for the file system.(Optional) A boolean that specifies whether or not to bypass theFileSystemPolicy
lockout safety check.A Boolean value that, if true, creates an encrypted file system.TheFileSystemPolicy
for the EFS file system.The ID of the AWS KMS key to be used to protect the encrypted file system.An array ofLifecyclePolicy
objects that define the file system'sLifecycleConfiguration
object.The performance mode of the file system.The throughput, measured in MiB/s, that you want to provision for a file system that you're creating.getTags()
Use to create one or more tags associated with the file system.Specifies the throughput mode for the file system.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setAvailabilityZoneName
(String value) Used to create a file system that uses One Zone storage classes.void
setBackupPolicy
(IResolvable value) Use theBackupPolicy
to turn automatic backups on or off for the file system.void
Use theBackupPolicy
to turn automatic backups on or off for the file system.void
(Optional) A boolean that specifies whether or not to bypass theFileSystemPolicy
lockout safety check.void
(Optional) A boolean that specifies whether or not to bypass theFileSystemPolicy
lockout safety check.void
setEncrypted
(Boolean value) A Boolean value that, if true, creates an encrypted file system.void
setEncrypted
(IResolvable value) A Boolean value that, if true, creates an encrypted file system.void
setFileSystemPolicy
(Object value) TheFileSystemPolicy
for the EFS file system.void
setKmsKeyId
(String value) The ID of the AWS KMS key to be used to protect the encrypted file system.void
setLifecyclePolicies
(List<Object> value) An array ofLifecyclePolicy
objects that define the file system'sLifecycleConfiguration
object.void
setLifecyclePolicies
(IResolvable value) An array ofLifecyclePolicy
objects that define the file system'sLifecycleConfiguration
object.void
setPerformanceMode
(String value) The performance mode of the file system.void
The throughput, measured in MiB/s, that you want to provision for a file system that you're creating.void
setThroughputMode
(String value) Specifies the throughput mode for the file system.Methods inherited from class software.amazon.awscdk.core.CfnResource
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.core.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.core.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnFileSystem
protected CfnFileSystem(software.amazon.jsii.JsiiObjectRef objRef) -
CfnFileSystem
protected CfnFileSystem(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnFileSystem
@Stability(Stable) public CfnFileSystem(@NotNull Construct scope, @NotNull String id, @Nullable CfnFileSystemProps props) Create a newAWS::EFS::FileSystem
.- Parameters:
scope
-- scope in which this resource is defined.
id
-- scoped id of the resource.
props
-- resource properties.
-
CfnFileSystem
Create a newAWS::EFS::FileSystem
.- Parameters:
scope
-- scope in which this resource is defined.
id
-- scoped id of the resource.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
-- tree inspector to collect and process attributes.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrArn
The Amazon Resource Name (ARN) of the EFS file system.Example:
arn:aws:elasticfilesystem:us-west-2:1111333322228888:file-system/fs-0123456789abcdef8
-
getAttrFileSystemId
The ID of the EFS file system.For example:
fs-abcdef0123456789a
-
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getTags
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 . -
getFileSystemPolicy
TheFileSystemPolicy
for 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 .
-
setFileSystemPolicy
TheFileSystemPolicy
for 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 .
-
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-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.
-
setAvailabilityZoneName
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-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.
-
getBackupPolicy
Use theBackupPolicy
to turn automatic backups on or off for the file system. -
setBackupPolicy
Use theBackupPolicy
to turn automatic backups on or off for the file system. -
setBackupPolicy
Use theBackupPolicy
to turn automatic backups on or off for the file system. -
getBypassPolicyLockoutSafetyCheck
(Optional) A boolean that specifies whether or not to bypass theFileSystemPolicy
lockout 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
PutFileSystemPolicy
requests on this file system. SetBypassPolicyLockoutSafetyCheck
toTrue
only when you intend to prevent the IAM principal that is making the request from making subsequentPutFileSystemPolicy
requests on this file system. The default value isFalse
. -
setBypassPolicyLockoutSafetyCheck
(Optional) A boolean that specifies whether or not to bypass theFileSystemPolicy
lockout 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
PutFileSystemPolicy
requests on this file system. SetBypassPolicyLockoutSafetyCheck
toTrue
only when you intend to prevent the IAM principal that is making the request from making subsequentPutFileSystemPolicy
requests on this file system. The default value isFalse
. -
setBypassPolicyLockoutSafetyCheck
(Optional) A boolean that specifies whether or not to bypass theFileSystemPolicy
lockout 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
PutFileSystemPolicy
requests on this file system. SetBypassPolicyLockoutSafetyCheck
toTrue
only when you intend to prevent the IAM principal that is making the request from making subsequentPutFileSystemPolicy
requests 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. -
setEncrypted
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. -
setEncrypted
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. -
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
KmsKeyId
is specified, theEncrypted
parameter must be set to true. - Key ID - A unique identifier of the key, for example
-
setKmsKeyId
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
KmsKeyId
is specified, theEncrypted
parameter must be set to true. - Key ID - A unique identifier of the key, for example
-
getLifecyclePolicies
An array ofLifecyclePolicy
objects that define the file system'sLifecycleConfiguration
object.A
LifecycleConfiguration
object 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
LifecyclePolicy
object have only a single transition. This means that in a request body,LifecyclePolicies
needs to be structured as an array ofLifecyclePolicy
objects, one object for each transition,TransitionToIA
,TransitionToPrimaryStorageClass
. See the example requests in the following section for more information. -
setLifecyclePolicies
An array ofLifecyclePolicy
objects that define the file system'sLifecycleConfiguration
object.A
LifecycleConfiguration
object 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
LifecyclePolicy
object have only a single transition. This means that in a request body,LifecyclePolicies
needs to be structured as an array ofLifecyclePolicy
objects, one object for each transition,TransitionToIA
,TransitionToPrimaryStorageClass
. See the example requests in the following section for more information. -
setLifecyclePolicies
An array ofLifecyclePolicy
objects that define the file system'sLifecycleConfiguration
object.A
LifecycleConfiguration
object 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
LifecyclePolicy
object have only a single transition. This means that in a request body,LifecyclePolicies
needs to be structured as an array ofLifecyclePolicy
objects, 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
generalPurpose
performance mode for most file systems. File systems using themaxIO
performance 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
maxIO
mode is not supported on file systems using One Zone storage classes. -
setPerformanceMode
The performance mode of the file system.We recommend
generalPurpose
performance mode for most file systems. File systems using themaxIO
performance 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
maxIO
mode 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
ThroughputMode
is 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 . -
setProvisionedThroughputInMibps
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
ThroughputMode
is 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 setThroughputMode
toprovisioned
, 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
. -
setThroughputMode
Specifies the throughput mode for the file system.The mode can be
bursting
,provisioned
, orelastic
. If you setThroughputMode
toprovisioned
, 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
.
-