amazonka-ec2-2.0: Amazon Elastic Compute Cloud SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.EC2.Types.VolumeModification

Description

 
Synopsis

Documentation

data VolumeModification Source #

Describes the modification status of an EBS volume.

If the volume has never been modified, some element values will be null.

See: newVolumeModification smart constructor.

Constructors

VolumeModification' 

Fields

Instances

Instances details
FromXML VolumeModification Source # 
Instance details

Defined in Amazonka.EC2.Types.VolumeModification

Generic VolumeModification Source # 
Instance details

Defined in Amazonka.EC2.Types.VolumeModification

Associated Types

type Rep VolumeModification :: Type -> Type #

Read VolumeModification Source # 
Instance details

Defined in Amazonka.EC2.Types.VolumeModification

Show VolumeModification Source # 
Instance details

Defined in Amazonka.EC2.Types.VolumeModification

NFData VolumeModification Source # 
Instance details

Defined in Amazonka.EC2.Types.VolumeModification

Methods

rnf :: VolumeModification -> () #

Eq VolumeModification Source # 
Instance details

Defined in Amazonka.EC2.Types.VolumeModification

Hashable VolumeModification Source # 
Instance details

Defined in Amazonka.EC2.Types.VolumeModification

type Rep VolumeModification Source # 
Instance details

Defined in Amazonka.EC2.Types.VolumeModification

type Rep VolumeModification = D1 ('MetaData "VolumeModification" "Amazonka.EC2.Types.VolumeModification" "amazonka-ec2-2.0-48L9RAJvmvzAdBkRegqWCL" 'False) (C1 ('MetaCons "VolumeModification'" 'PrefixI 'True) ((((S1 ('MetaSel ('Just "endTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: S1 ('MetaSel ('Just "modificationState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VolumeModificationState))) :*: (S1 ('MetaSel ('Just "originalIops") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "originalMultiAttachEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))) :*: ((S1 ('MetaSel ('Just "originalSize") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "originalThroughput") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))) :*: (S1 ('MetaSel ('Just "originalVolumeType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VolumeType)) :*: S1 ('MetaSel ('Just "progress") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer))))) :*: (((S1 ('MetaSel ('Just "startTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: S1 ('MetaSel ('Just "statusMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "targetIops") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "targetMultiAttachEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))) :*: ((S1 ('MetaSel ('Just "targetSize") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "targetThroughput") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))) :*: (S1 ('MetaSel ('Just "targetVolumeType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe VolumeType)) :*: S1 ('MetaSel ('Just "volumeId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))))

newVolumeModification :: VolumeModification Source #

Create a value of VolumeModification with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:endTime:VolumeModification', volumeModification_endTime - The modification completion or failure time.

$sel:modificationState:VolumeModification', volumeModification_modificationState - The current modification state. The modification state is null for unmodified volumes.

$sel:originalIops:VolumeModification', volumeModification_originalIops - The original IOPS rate of the volume.

$sel:originalMultiAttachEnabled:VolumeModification', volumeModification_originalMultiAttachEnabled - The original setting for Amazon EBS Multi-Attach.

$sel:originalSize:VolumeModification', volumeModification_originalSize - The original size of the volume, in GiB.

$sel:originalThroughput:VolumeModification', volumeModification_originalThroughput - The original throughput of the volume, in MiB/s.

$sel:originalVolumeType:VolumeModification', volumeModification_originalVolumeType - The original EBS volume type of the volume.

$sel:progress:VolumeModification', volumeModification_progress - The modification progress, from 0 to 100 percent complete.

$sel:startTime:VolumeModification', volumeModification_startTime - The modification start time.

$sel:statusMessage:VolumeModification', volumeModification_statusMessage - A status message about the modification progress or failure.

$sel:targetIops:VolumeModification', volumeModification_targetIops - The target IOPS rate of the volume.

$sel:targetMultiAttachEnabled:VolumeModification', volumeModification_targetMultiAttachEnabled - The target setting for Amazon EBS Multi-Attach.

$sel:targetSize:VolumeModification', volumeModification_targetSize - The target size of the volume, in GiB.

$sel:targetThroughput:VolumeModification', volumeModification_targetThroughput - The target throughput of the volume, in MiB/s.

$sel:targetVolumeType:VolumeModification', volumeModification_targetVolumeType - The target EBS volume type of the volume.

$sel:volumeId:VolumeModification', volumeModification_volumeId - The ID of the volume.

volumeModification_endTime :: Lens' VolumeModification (Maybe UTCTime) Source #

The modification completion or failure time.

volumeModification_modificationState :: Lens' VolumeModification (Maybe VolumeModificationState) Source #

The current modification state. The modification state is null for unmodified volumes.

volumeModification_originalIops :: Lens' VolumeModification (Maybe Int) Source #

The original IOPS rate of the volume.

volumeModification_originalMultiAttachEnabled :: Lens' VolumeModification (Maybe Bool) Source #

The original setting for Amazon EBS Multi-Attach.

volumeModification_originalSize :: Lens' VolumeModification (Maybe Int) Source #

The original size of the volume, in GiB.

volumeModification_originalThroughput :: Lens' VolumeModification (Maybe Int) Source #

The original throughput of the volume, in MiB/s.

volumeModification_progress :: Lens' VolumeModification (Maybe Integer) Source #

The modification progress, from 0 to 100 percent complete.

volumeModification_statusMessage :: Lens' VolumeModification (Maybe Text) Source #

A status message about the modification progress or failure.

volumeModification_targetIops :: Lens' VolumeModification (Maybe Int) Source #

The target IOPS rate of the volume.

volumeModification_targetMultiAttachEnabled :: Lens' VolumeModification (Maybe Bool) Source #

The target setting for Amazon EBS Multi-Attach.

volumeModification_targetSize :: Lens' VolumeModification (Maybe Int) Source #

The target size of the volume, in GiB.

volumeModification_targetThroughput :: Lens' VolumeModification (Maybe Int) Source #

The target throughput of the volume, in MiB/s.