amazonka-ec2-1.6.1: Amazon Elastic Compute Cloud SDK.

Copyright(c) 2013-2018 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.EC2.AttachVolume

Contents

Description

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 .

Synopsis

Creating a Request

attachVolume Source #

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:

  • avDryRun - 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 .
  • avDevice - The device name (for example, devsdh or xvdh ).
  • avInstanceId - The ID of the instance.
  • avVolumeId - The ID of the EBS volume. The volume and instance must be within the same Availability Zone.

data AttachVolume Source #

Contains the parameters for AttachVolume.

See: attachVolume smart constructor.

Instances
Eq AttachVolume Source # 
Instance details

Defined in Network.AWS.EC2.AttachVolume

Data AttachVolume Source # 
Instance details

Defined in Network.AWS.EC2.AttachVolume

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> AttachVolume -> c AttachVolume #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c AttachVolume #

toConstr :: AttachVolume -> Constr #

dataTypeOf :: AttachVolume -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c AttachVolume) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c AttachVolume) #

gmapT :: (forall b. Data b => b -> b) -> AttachVolume -> AttachVolume #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> AttachVolume -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> AttachVolume -> r #

gmapQ :: (forall d. Data d => d -> u) -> AttachVolume -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> AttachVolume -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> AttachVolume -> m AttachVolume #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> AttachVolume -> m AttachVolume #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> AttachVolume -> m AttachVolume #

Read AttachVolume Source # 
Instance details

Defined in Network.AWS.EC2.AttachVolume

Show AttachVolume Source # 
Instance details

Defined in Network.AWS.EC2.AttachVolume

Generic AttachVolume Source # 
Instance details

Defined in Network.AWS.EC2.AttachVolume

Associated Types

type Rep AttachVolume :: Type -> Type #

Hashable AttachVolume Source # 
Instance details

Defined in Network.AWS.EC2.AttachVolume

AWSRequest AttachVolume Source # 
Instance details

Defined in Network.AWS.EC2.AttachVolume

Associated Types

type Rs AttachVolume :: Type #

ToHeaders AttachVolume Source # 
Instance details

Defined in Network.AWS.EC2.AttachVolume

ToPath AttachVolume Source # 
Instance details

Defined in Network.AWS.EC2.AttachVolume

ToQuery AttachVolume Source # 
Instance details

Defined in Network.AWS.EC2.AttachVolume

NFData AttachVolume Source # 
Instance details

Defined in Network.AWS.EC2.AttachVolume

Methods

rnf :: AttachVolume -> () #

type Rep AttachVolume Source # 
Instance details

Defined in Network.AWS.EC2.AttachVolume

type Rep AttachVolume = D1 (MetaData "AttachVolume" "Network.AWS.EC2.AttachVolume" "amazonka-ec2-1.6.1-GgG1M0FWcBrE5I5IM2QktE" False) (C1 (MetaCons "AttachVolume'" PrefixI True) ((S1 (MetaSel (Just "_avDryRun") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 (MetaSel (Just "_avDevice") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) :*: (S1 (MetaSel (Just "_avInstanceId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_avVolumeId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))))
type Rs AttachVolume Source # 
Instance details

Defined in Network.AWS.EC2.AttachVolume

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 .

avDevice :: Lens' AttachVolume Text Source #

The device name (for example, devsdh or xvdh ).

avInstanceId :: Lens' AttachVolume Text Source #

The ID of the instance.

avVolumeId :: Lens' AttachVolume Text Source #

The ID of the EBS volume. The volume and instance must be within the same Availability Zone.

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.

Instances
Eq VolumeAttachment Source # 
Instance details

Defined in Network.AWS.EC2.Types.Product

Data VolumeAttachment Source # 
Instance details

Defined in Network.AWS.EC2.Types.Product

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> VolumeAttachment -> c VolumeAttachment #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c VolumeAttachment #

toConstr :: VolumeAttachment -> Constr #

dataTypeOf :: VolumeAttachment -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c VolumeAttachment) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c VolumeAttachment) #

gmapT :: (forall b. Data b => b -> b) -> VolumeAttachment -> VolumeAttachment #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> VolumeAttachment -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> VolumeAttachment -> r #

gmapQ :: (forall d. Data d => d -> u) -> VolumeAttachment -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> VolumeAttachment -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> VolumeAttachment -> m VolumeAttachment #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> VolumeAttachment -> m VolumeAttachment #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> VolumeAttachment -> m VolumeAttachment #

Read VolumeAttachment Source # 
Instance details

Defined in Network.AWS.EC2.Types.Product

Show VolumeAttachment Source # 
Instance details

Defined in Network.AWS.EC2.Types.Product

Generic VolumeAttachment Source # 
Instance details

Defined in Network.AWS.EC2.Types.Product

Associated Types

type Rep VolumeAttachment :: Type -> Type #

Hashable VolumeAttachment Source # 
Instance details

Defined in Network.AWS.EC2.Types.Product

FromXML VolumeAttachment Source # 
Instance details

Defined in Network.AWS.EC2.Types.Product

NFData VolumeAttachment Source # 
Instance details

Defined in Network.AWS.EC2.Types.Product

Methods

rnf :: VolumeAttachment -> () #

type Rep VolumeAttachment Source # 
Instance details

Defined in Network.AWS.EC2.Types.Product

type Rep VolumeAttachment = D1 (MetaData "VolumeAttachment" "Network.AWS.EC2.Types.Product" "amazonka-ec2-1.6.1-GgG1M0FWcBrE5I5IM2QktE" False) (C1 (MetaCons "VolumeAttachment'" PrefixI True) ((S1 (MetaSel (Just "_volInstanceId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_volDeleteOnTermination") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 (MetaSel (Just "_volState") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe VolumeAttachmentState)))) :*: (S1 (MetaSel (Just "_volDevice") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_volVolumeId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_volAttachTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe ISO8601))))))

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.