Module Values.DescribeImagePermissionsRequestSource

Retrieves a list that describes the permissions for shared AWS account IDs on a private image that you own.

Sourcetype nonrec t = {
  1. name : Name.t;
    (*

    The name of the private image for which to describe permissions. The image must be one that you own.

    *)
  2. maxResults : MaxResults.t option;
    (*

    The maximum size of each page of results.

    *)
  3. sharedAwsAccountIds : AwsAccountIdList.t option;
    (*

    The 12-digit identifier of one or more AWS accounts with which the image is shared.

    *)
  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.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxResults:??? -> ?sharedAwsAccountIds:??? -> ?nextToken:??? -> name:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `String of AwsAccountId.t ] list | `String of Name.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