Module Values_1.EvaluateDataTableValuesRequestSource

Evaluates values at the time of the request and returns them. It considers the request's timezone or the table's timezone, in that order, when accessing time based tables. When a value is accessed, the accessor's identity and the time of access are saved alongside the value to help identify values that are actively in use. The term "Batch" is not included in the operation name since it does not meet all the criteria for a batch operation as specified in Batch Operations: Amazon Web Services API Standards.

Sourcetype nonrec t = {
  1. instanceId : Values_0.InstanceId.t;
    (*

    The unique identifier for the Amazon Connect instance.

    *)
  2. dataTableId : Values_0.DataTableId.t;
    (*

    The unique identifier for the data table. Must also accept the table ARN with or without a version alias.

    *)
  3. values : DataTableValueEvaluationSetList.t;
    (*

    A list of value evaluation sets specifying which primary values and attributes to evaluate.

    *)
  4. timeZone : Values_0.TimeZone.t option;
    (*

    Optional IANA timezone identifier to use when resolving time based dynamic values. Defaults to the data table time zone if not provided.

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

    Specify the pagination token from a previous request to retrieve the next page of results.

    *)
  6. maxResults : MaxResult100.t option;
    (*

    The maximum number of data table values to return in one page of results.

    *)
}
Sourceval context_ : string
Sourceval make : ?timeZone:??? -> ?nextToken:??? -> ?maxResults:??? -> instanceId:Values_0.InstanceId.t -> dataTableId:Values_0.DataTableId.t -> values:DataTableValueEvaluationSetList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResult100.t | `List of [> `Structure of (string * [> `List of [> `String of string | `Structure of (string * [> `String of string ]) list ] list ]) list ] list | `String of Values_0.InstanceId.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