Module Values.AmiSource

Details of an Amazon EC2 AMI.

Sourcetype nonrec t = {
  1. region : NonEmptyString.t option;
    (*

    The Amazon Web Services Region of the Amazon EC2 AMI.

    *)
  2. image : NonEmptyString.t option;
    (*

    The AMI ID of the Amazon EC2 AMI.

    *)
  3. name : NonEmptyString.t option;
    (*

    The name of the Amazon EC2 AMI.

    *)
  4. description : NonEmptyString.t option;
    (*

    The description of the Amazon EC2 AMI. Minimum and maximum length are in characters.

    *)
  5. state : ImageState.t option;
  6. accountId : NonEmptyString.t option;
    (*

    The account ID of the owner of the AMI.

    *)
}
Sourceval make : ?region:??? -> ?image:??? -> ?name:??? -> ?description:??? -> ?state:??? -> ?accountId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Enum of string | `String of NonEmptyString.t ]) list ]) 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