Module Values_2.SnapshotRecycleBinInfoSource

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

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

    The ID of the snapshot.

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

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

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

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

    *)
  4. description : Values_0.String_.t option;
    (*

    The description for the snapshot.

    *)
  5. volumeId : Values_0.String_.t option;
    (*

    The ID of the volume from which the snapshot was created.

    *)
}
Sourceval make : ?snapshotId:??? -> ?recycleBinEnterTime:??? -> ?recycleBinExitTime:??? -> ?description:??? -> ?volumeId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.String_.t | `Timestamp of Values_0.MillisecondDateTime.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