Copyright | (c) 2013-2016 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Language | Haskell2010 |
Attaches an EBS volume to a running or stopped instance and exposes it to the instance with the specified device name.
Encrypted EBS volumes may only be attached to instances that support Amazon EBS encryption. For more information, see Amazon EBS Encryption in the Amazon Elastic Compute Cloud User Guide.
For a list of supported device names, see Attaching an EBS Volume to an Instance. Any device names that aren't reserved for instance store volumes can be used for EBS volumes. For more information, see Amazon EC2 Instance Store in the Amazon Elastic Compute Cloud User Guide.
If a volume has an AWS Marketplace product code:
- The volume can be attached only to a stopped instance.
- AWS Marketplace product codes are copied from the volume to the instance.
- You must be subscribed to the product.
- The instance type and operating system of the instance must support the product. For example, you can't detach a volume from a Windows instance and attach it to a Linux instance.
For an overview of the AWS Marketplace, see Introducing AWS Marketplace.
For more information about EBS volumes, see Attaching Amazon EBS Volumes in the Amazon Elastic Compute Cloud User Guide.
- attachVolume :: Text -> Text -> Text -> AttachVolume
- data AttachVolume
- avDryRun :: Lens' AttachVolume (Maybe Bool)
- avVolumeId :: Lens' AttachVolume Text
- avInstanceId :: Lens' AttachVolume Text
- avDevice :: Lens' AttachVolume Text
- volumeAttachment :: VolumeAttachment
- data VolumeAttachment
- volInstanceId :: Lens' VolumeAttachment (Maybe Text)
- volDeleteOnTermination :: Lens' VolumeAttachment (Maybe Bool)
- volState :: Lens' VolumeAttachment (Maybe VolumeAttachmentState)
- volDevice :: Lens' VolumeAttachment (Maybe Text)
- volVolumeId :: Lens' VolumeAttachment (Maybe Text)
- volAttachTime :: Lens' VolumeAttachment (Maybe UTCTime)
Creating a Request
Creates a value of AttachVolume
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
data AttachVolume Source #
Contains the parameters for AttachVolume.
See: attachVolume
smart constructor.
Request Lenses
avDryRun :: Lens' AttachVolume (Maybe Bool) Source #
Checks whether you have the required permissions for the action, without
actually making the request, and provides an error response. If you have
the required permissions, the error response is DryRunOperation
.
Otherwise, it is UnauthorizedOperation
.
avVolumeId :: Lens' AttachVolume Text Source #
The ID of the EBS volume. The volume and instance must be within the same Availability Zone.
avInstanceId :: Lens' AttachVolume Text Source #
The ID of the instance.
avDevice :: Lens' AttachVolume Text Source #
The device name to expose to the instance (for example, '\/dev\/sdh' or
xvdh
).
Destructuring the Response
volumeAttachment :: VolumeAttachment Source #
Creates a value of VolumeAttachment
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
data VolumeAttachment Source #
Describes volume attachment details.
See: volumeAttachment
smart constructor.
Response Lenses
volInstanceId :: Lens' VolumeAttachment (Maybe Text) Source #
The ID of the instance.
volDeleteOnTermination :: Lens' VolumeAttachment (Maybe Bool) Source #
Indicates whether the EBS volume is deleted on instance termination.
volState :: Lens' VolumeAttachment (Maybe VolumeAttachmentState) Source #
The attachment state of the volume.
volVolumeId :: Lens' VolumeAttachment (Maybe Text) Source #
The ID of the volume.
volAttachTime :: Lens' VolumeAttachment (Maybe UTCTime) Source #
The time stamp when the attachment initiated.