Module Values.GetAttributeValuesRequestSource

Returns a list of attribute values. Attributes are similar to the details in a Price List API offer file. For a list of available attributes, see Offer File Definitions in the Billing and Cost Management User Guide.

Sourcetype nonrec t = {
  1. serviceCode : String_.t;
    (*

    The service code for the service whose attributes you want to retrieve. For example, if you want the retrieve an EC2 attribute, use AmazonEC2.

    *)
  2. attributeName : String_.t;
    (*

    The name of the attribute that you want to retrieve the values for, such as volumeType.

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

    The pagination token that indicates the next set of results that you want to retrieve.

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

    The maximum number of results to return in response.

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