IFileSystem

class aws_cdk.aws_efs.IFileSystem(*args, **kwargs)

Bases: IConnectable, IResourceWithPolicy, Protocol

Represents an Amazon EFS file system.

Methods

add_to_resource_policy(statement)

Add a statement to the resource’s resource policy.

Parameters:

statement (PolicyStatement) –

Return type:

AddToResourcePolicyResult

apply_removal_policy(policy)

Apply the given removal policy to this resource.

The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you’ve removed it from the CDK application or because you’ve made a change that requires the resource to be replaced.

The resource can be deleted (RemovalPolicy.DESTROY), or left in your AWS account for data recovery and cleanup later (RemovalPolicy.RETAIN).

Parameters:

policy (RemovalPolicy) –

Return type:

None

grant(grantee, *actions)

Grant the actions defined in actions to the given grantee on this File System resource.

Parameters:
Return type:

Grant

grant_read(grantee)

Grant read permissions for this file system to an IAM principal.

Parameters:

grantee (IGrantable) – The principal to grant read to.

Return type:

Grant

grant_read_write(grantee)

Grant read and write permissions for this file system to an IAM principal.

Parameters:

grantee (IGrantable) – The principal to grant read and write to.

Return type:

Grant

grant_root_access(grantee)

As root user, grant read and write permissions for this file system to an IAM principal.

Parameters:

grantee (IGrantable) – The principal to grant root access to.

Return type:

Grant

Attributes

connections

The network connections associated with this resource.

env

The environment this resource belongs to.

For resources that are created and managed by the CDK (generally, those created by creating new class instances like Role, Bucket, etc.), this is always the same as the environment of the stack they belong to; however, for imported resources (those obtained from static methods like fromRoleArn, fromBucketName, etc.), that might be different than the stack they were imported into.

file_system_arn

The ARN of the file system.

Attribute:

true

file_system_id

The ID of the file system, assigned by Amazon EFS.

Attribute:

true

mount_targets_available

Dependable that can be depended upon to ensure the mount targets of the filesystem are ready.

node

The tree node.

stack

The stack in which this resource is defined.