interface CfnVolumeAttachmentProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.EC2.CfnVolumeAttachmentProps | 
|  Java | software.amazon.awscdk.services.ec2.CfnVolumeAttachmentProps | 
|  Python | aws_cdk.aws_ec2.CfnVolumeAttachmentProps | 
|  TypeScript | @aws-cdk/aws-ec2»CfnVolumeAttachmentProps | 
Properties for defining a CfnVolumeAttachment.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ec2 from '@aws-cdk/aws-ec2';
const cfnVolumeAttachmentProps: ec2.CfnVolumeAttachmentProps = {
  device: 'device',
  instanceId: 'instanceId',
  volumeId: 'volumeId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| device | string | The device name (for example, /dev/sdhorxvdh). | 
| instance | string | The ID of the instance to which the volume attaches. | 
| volume | string | The ID of the Amazon EBS volume. | 
device
Type:
string
The device name (for example, /dev/sdh or xvdh ).
instanceId
Type:
string
The ID of the instance to which the volume attaches.
This value can be a reference to an AWS::EC2::Instance resource, or it can be the physical ID of an existing EC2 instance.
volumeId
Type:
string
The ID of the Amazon EBS volume.
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.
