Module Values_2.VolumeModificationSource

Describes the modification status of an EBS volume.

Sourcetype nonrec t = {
  1. volumeId : Values_0.String_.t option;
    (*

    The ID of the volume.

    *)
  2. modificationState : Values_1.VolumeModificationState.t option;
    (*

    The current modification state.

    *)
  3. statusMessage : Values_0.String_.t option;
    (*

    A status message about the modification progress or failure.

    *)
  4. targetSize : Values_0.Integer.t option;
    (*

    The target size of the volume, in GiB.

    *)
  5. targetIops : Values_0.Integer.t option;
    (*

    The target IOPS rate of the volume.

    *)
  6. targetVolumeType : Values_0.VolumeType.t option;
    (*

    The target EBS volume type of the volume.

    *)
  7. targetThroughput : Values_0.Integer.t option;
    (*

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

    *)
  8. targetMultiAttachEnabled : Values_0.Boolean.t option;
    (*

    The target setting for Amazon EBS Multi-Attach.

    *)
  9. originalSize : Values_0.Integer.t option;
    (*

    The original size of the volume, in GiB.

    *)
  10. originalIops : Values_0.Integer.t option;
    (*

    The original IOPS rate of the volume.

    *)
  11. originalVolumeType : Values_0.VolumeType.t option;
    (*

    The original EBS volume type of the volume.

    *)
  12. originalThroughput : Values_0.Integer.t option;
    (*

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

    *)
  13. originalMultiAttachEnabled : Values_0.Boolean.t option;
    (*

    The original setting for Amazon EBS Multi-Attach.

    *)
  14. progress : Values_0.Long.t option;
    (*

    The modification progress, from 0 to 100 percent complete.

    *)
  15. startTime : Values_0.DateTime.t option;
    (*

    The modification start time.

    *)
  16. endTime : Values_0.DateTime.t option;
    (*

    The modification completion or failure time.

    *)
}
Sourceval make : ?volumeId:??? -> ?modificationState:??? -> ?statusMessage:??? -> ?targetSize:??? -> ?targetIops:??? -> ?targetVolumeType:??? -> ?targetThroughput:??? -> ?targetMultiAttachEnabled:??? -> ?originalSize:??? -> ?originalIops:??? -> ?originalVolumeType:??? -> ?originalThroughput:??? -> ?originalMultiAttachEnabled:??? -> ?progress:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Enum of string | `Integer of Values_0.Integer.t | `Long of Values_0.Long.t | `String of Values_0.String_.t | `Timestamp of Values_0.DateTime.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t