Module Values.GetAttributeValuesResponseSource

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. attributeValues : AttributeValueList.t option;
    (*

    The list of values for an attribute. For example, Throughput Optimized HDD and Provisioned IOPS are two available values for the AmazonEC2 volumeType.

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

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

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ExpiredNextTokenException of ExpiredNextTokenException.t
  3. | `InternalErrorException of InternalErrorException.t
  4. | `InvalidNextTokenException of InvalidNextTokenException.t
  5. | `InvalidParameterException of InvalidParameterException.t
  6. | `NotFoundException of NotFoundException.t
  7. | `ThrottlingException of ThrottlingException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?attributeValues:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ExpiredNextTokenException of ExpiredNextTokenException.t | `InternalErrorException of InternalErrorException.t | `InvalidNextTokenException of InvalidNextTokenException.t | `InvalidParameterException of InvalidParameterException.t | `NotFoundException of NotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ExpiredNextTokenException of ExpiredNextTokenException.t | `InternalErrorException of InternalErrorException.t | `InvalidNextTokenException of InvalidNextTokenException.t | `InvalidParameterException of InvalidParameterException.t | `NotFoundException of NotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] 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