Values.GetAttributeValuesRequestSourceReturns 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.
type nonrec t = {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.
*)attributeName : String_.t;The name of the attribute that you want to retrieve the values for, such as volumeType.
*)nextToken : String_.t option;The pagination token that indicates the next set of results that you want to retrieve.
*)maxResults : GetAttributeValuesMaxResults.t option;The maximum number of results to return in response.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Integer of GetAttributeValuesMaxResults.t
| `String of String_.t ])
list ]