Module Values.DescribeDimensionKeysResponseSource

For a specific time period, retrieve the top N dimension keys for a metric. Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 bytes are returned.

Sourcetype nonrec t = {
  1. alignedStartTime : ISOTimestamp.t option;
    (*

    The start time for the returned dimension keys, after alignment to a granular boundary (as specified by PeriodInSeconds). AlignedStartTime will be less than or equal to the value of the user-specified StartTime.

    *)
  2. alignedEndTime : ISOTimestamp.t option;
    (*

    The end time for the returned dimension keys, after alignment to a granular boundary (as specified by PeriodInSeconds). AlignedEndTime will be greater than or equal to the value of the user-specified Endtime.

    *)
  3. partitionKeys : ResponsePartitionKeyList.t option;
    (*

    If PartitionBy was present in the request, PartitionKeys contains the breakdown of dimension keys by the specified partitions.

    *)
  4. keys : DimensionKeyDescriptionList.t option;
    (*

    The dimension keys that were requested.

    *)
  5. nextToken : NextToken.t option;
    (*

    A pagination token that indicates the response didn’t return all available records because MaxRecords was specified in the previous request. To get the remaining records, specify NextToken in a separate request with this value.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServiceError of InternalServiceError.t
  2. | `InvalidArgumentException of InvalidArgumentException.t
  3. | `NotAuthorizedException of NotAuthorizedException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?alignedStartTime:??? -> ?alignedEndTime:??? -> ?partitionKeys:??? -> ?keys:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServiceError of InternalServiceError.t | `InvalidArgumentException of InvalidArgumentException.t | `NotAuthorizedException of NotAuthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServiceError of InternalServiceError.t | `InvalidArgumentException of InvalidArgumentException.t | `NotAuthorizedException of NotAuthorizedException.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 * [> `Double of Double.t | `List of [> `Double of Double.t ] list | `Map of ([> `String of RequestString.t ] * [> `Double of Double.t | `String of RequestString.t ]) list ]) list ] list | `String of NextToken.t | `Timestamp of ISOTimestamp.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