IVolume
- class aws_cdk.aws_ec2.IVolume(*args, **kwargs)
Bases:
IResource
,Protocol
An EBS Volume in AWS EC2.
Methods
- 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_attach_volume(grantee, instances=None)
Grants permission to attach this Volume to an instance.
CAUTION: Granting an instance permission to attach to itself using this method will lead to an unresolvable circular reference between the instance role and the instance. Use
IVolume.grantAttachVolumeToSelf
to grant an instance permission to attach this volume to itself.- Parameters:
grantee (
IGrantable
) – the principal being granted permission.instances (
Optional
[Sequence
[IInstance
]]) – the instances to which permission is being granted to attach this volume to. If not specified, then permission is granted to attach to all instances in this account.
- Return type:
- grant_attach_volume_by_resource_tag(grantee, constructs, tag_key_suffix=None)
Grants permission to attach the Volume by a ResourceTag condition.
If you are looking to grant an Instance, AutoScalingGroup, EC2-Fleet, SpotFleet, ECS host, etc the ability to attach this volume to itself then this is the method you want to use.
This is implemented by adding a Tag with key
VolumeGrantAttach-<suffix>
to the given constructs and this Volume, and then conditioning the Grant such that the grantee is only given the ability to AttachVolume if both the Volume and the destination Instance have that tag applied to them.- Parameters:
grantee (
IGrantable
) – the principal being granted permission.constructs (
Sequence
[Construct
]) – The list of constructs that will have the generated resource tag applied to them.tag_key_suffix (
Optional
[str
]) – A suffix to use on the generated Tag key in place of the generated hash value. Defaults to a hash calculated from this volume and list of constructs. (DEPRECATED)
- Return type:
- grant_detach_volume(grantee, instances=None)
Grants permission to detach this Volume from an instance CAUTION: Granting an instance permission to detach from itself using this method will lead to an unresolvable circular reference between the instance role and the instance.
Use
IVolume.grantDetachVolumeFromSelf
to grant an instance permission to detach this volume from itself.- Parameters:
grantee (
IGrantable
) – the principal being granted permission.instances (
Optional
[Sequence
[IInstance
]]) – the instances to which permission is being granted to detach this volume from. If not specified, then permission is granted to detach from all instances in this account.
- Return type:
- grant_detach_volume_by_resource_tag(grantee, constructs, tag_key_suffix=None)
Grants permission to detach the Volume by a ResourceTag condition.
This is implemented via the same mechanism as
IVolume.grantAttachVolumeByResourceTag
, and is subject to the same conditions.- Parameters:
grantee (
IGrantable
) – the principal being granted permission.constructs (
Sequence
[Construct
]) – The list of constructs that will have the generated resource tag applied to them.tag_key_suffix (
Optional
[str
]) – A suffix to use on the generated Tag key in place of the generated hash value. Defaults to a hash calculated from this volume and list of constructs. (DEPRECATED)
- Return type:
Attributes
- availability_zone
us-west-2a).
- Type:
The availability zone that the EBS Volume is contained within (ex
- encryption_key
The customer-managed encryption key that is used to encrypt the Volume.
- Attribute:
true
- 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.
- node
The tree node.
- stack
The stack in which this resource is defined.
- volume_id
The EBS Volume’s ID.
- Attribute:
true