Module Values_2.ImageRecycleBinInfoSource

Information about an AMI that is currently in the Recycle Bin.

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

    The ID of the AMI.

    *)
  2. name : Values_0.String_.t option;
    (*

    The name of the AMI.

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

    The description of the AMI.

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

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

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

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

    *)
}
Sourceval make : ?imageId:??? -> ?name:??? -> ?description:??? -> ?recycleBinEnterTime:??? -> ?recycleBinExitTime:??? -> 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