Module Values.DescribeImagesRequestSource

Retrieves a list that describes one or more specified images, if the image names or image ARNs are provided. Otherwise, all images in the account are described.

Sourcetype nonrec t = {
  1. names : StringList.t option;
    (*

    The names of the public or private images to describe.

    *)
  2. arns : ArnList.t option;
    (*

    The ARNs of the public, private, and shared images to describe.

    *)
  3. type_ : VisibilityType.t option;
    (*

    The type of image (public, private, or shared) to describe.

    *)
  4. nextToken : String_.t option;
    (*

    The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.

    *)
  5. maxResults : DescribeImagesMaxResults.t option;
    (*

    The maximum size of each page of results.

    *)
}
Sourceval make : ?names:??? -> ?arns:??? -> ?type_:??? -> ?nextToken:??? -> ?maxResults:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of DescribeImagesMaxResults.t | `List of [> `String of String_.t ] list | `String of String_.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