Module Values.DescribeEntitlementsRequestSource

Retrieves a list that describes one of more entitlements.

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

    The name of the entitlement.

    *)
  2. stackName : Name.t;
    (*

    The name of the stack with which the entitlement is associated.

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

    The pagination token used to retrieve the next page of results for this operation.

    *)
  4. maxResults : Integer.t option;
    (*

    The maximum size of each page of results.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?nextToken:??? -> ?maxResults:??? -> stackName:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `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