Module Values_2.VolumeRecycleBinInfoSource

Information about a volume that is currently in the Recycle Bin.

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

    The ID of the volume.

    *)
  2. volumeType : Values_0.VolumeType.t option;
    (*

    The volume type.

    *)
  3. state : Values_1.VolumeState.t option;
    (*

    The state of the volume.

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

    The size of the volume, in GiB.

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

    The number of I/O operations per second (IOPS) for the volume.

    *)
  6. throughput : Values_0.Integer.t option;
    (*

    The throughput that the volume supports, in MiB/s.

    *)
  7. outpostArn : Values_0.String_.t option;
    (*

    The ARN of the Outpost on which the volume is stored. For more information, see Amazon EBS volumes on Outposts in the Amazon EBS User Guide.

    *)
  8. availabilityZone : Values_0.String_.t option;
    (*

    The Availability Zone for the volume.

    *)
  9. availabilityZoneId : Values_0.String_.t option;
    (*

    The ID of the Availability Zone for the volume.

    *)
  10. sourceVolumeId : Values_0.String_.t option;
    (*

    The ID of the source volume.

    *)
  11. snapshotId : Values_0.String_.t option;
    (*

    The snapshot from which the volume was created, if applicable.

    *)
  12. operator : Values_0.OperatorResponse.t option;
    (*

    The service provider that manages the volume.

    *)
  13. createTime : Values_0.DateTime.t option;
    (*

    The time stamp when volume creation was initiated.

    *)
  14. recycleBinEnterTime : Values_0.MillisecondDateTime.t option;
    (*

    The date and time when the volume entered the Recycle Bin.

    *)
  15. recycleBinExitTime : Values_0.MillisecondDateTime.t option;
    (*

    The date and time when the volume is to be permanently deleted from the Recycle Bin.

    *)
}
Sourceval make : ?volumeId:??? -> ?volumeType:??? -> ?state:??? -> ?size:??? -> ?iops:??? -> ?throughput:??? -> ?outpostArn:??? -> ?availabilityZone:??? -> ?availabilityZoneId:??? -> ?sourceVolumeId:??? -> ?snapshotId:??? -> ?operator:??? -> ?createTime:??? -> ?recycleBinEnterTime:??? -> ?recycleBinExitTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.Integer.t | `String of Values_0.VolumeId.t | `Structure of (string * [> `Boolean of bool | `String of string ]) list | `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