@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.398Z") @Stability(value=Stable) public class CfnVolumeAttachment extends CfnResource implements IInspectable
Attaches an Amazon EBS volume to a running instance and exposes it to the instance with the specified device name.
Before this resource can be deleted (and therefore the volume detached), you must first unmount the volume in the instance. Failure to do so results in the volume being stuck in the busy state while it is trying to detach, which could possibly damage the file system or the data it contains.
If an Amazon EBS volume is the root device of an instance, it cannot be detached while the instance is in the "running" state. To detach the root volume, stop the instance first.
If the root volume is detached from an instance with an AWS Marketplace product code, then the product codes from that volume are no longer associated with the instance.
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.ec2.*;
CfnVolumeAttachment cfnVolumeAttachment = CfnVolumeAttachment.Builder.create(this, "MyCfnVolumeAttachment")
.device("device")
.instanceId("instanceId")
.volumeId("volumeId")
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
CfnVolumeAttachment.Builder
A fluent builder for
CfnVolumeAttachment. |
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnVolumeAttachment(software.constructs.Construct scope,
String id,
CfnVolumeAttachmentProps props)
Create a new `AWS::EC2::VolumeAttachment`.
|
protected |
CfnVolumeAttachment(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnVolumeAttachment(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
protected Map<String,Object> |
getCfnProperties() |
String |
getDevice()
The device name (for example, `/dev/sdh` or `xvdh` ).
|
String |
getInstanceId()
The ID of the instance to which the volume attaches.
|
String |
getVolumeId()
The ID of the Amazon EBS volume.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setDevice(String value)
The device name (for example, `/dev/sdh` or `xvdh` ).
|
void |
setInstanceId(String value)
The ID of the instance to which the volume attaches.
|
void |
setVolumeId(String value)
The ID of the Amazon EBS volume.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnVolumeAttachment(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnVolumeAttachment(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnVolumeAttachment(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnVolumeAttachmentProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public String getDevice()
@Stability(value=Stable)
public void setDevice(@NotNull
String value)
@Stability(value=Stable) @NotNull public String getInstanceId()
This value can be a reference to an AWS::EC2::Instance resource, or it can be the physical ID of an existing EC2 instance.
@Stability(value=Stable)
public void setInstanceId(@NotNull
String value)
This value can be a reference to an AWS::EC2::Instance resource, or it can be the physical ID of an existing EC2 instance.
@Stability(value=Stable) @NotNull public String getVolumeId()
The volume and instance must be within the same Availability Zone. This value can be a reference to an AWS::EC2::Volume resource, or it can be the volume ID of an existing Amazon EBS volume.
@Stability(value=Stable)
public void setVolumeId(@NotNull
String value)
The volume and instance must be within the same Availability Zone. This value can be a reference to an AWS::EC2::Volume resource, or it can be the volume ID of an existing Amazon EBS volume.
Copyright © 2022. All rights reserved.