Module Values.UpdateTestSetResponseSource

The action to update the test set.

Sourcetype nonrec t = {
  1. testSetId : Id.t option;
    (*

    The test set Id for which update test operation to be performed.

    *)
  2. testSetName : Name.t option;
    (*

    The test set name for the updated test set.

    *)
  3. description : Description.t option;
    (*

    The test set description for the updated test set.

    *)
  4. modality : TestSetModality.t option;
    (*

    Indicates whether audio or text is used for the updated test set.

    *)
  5. status : TestSetStatus.t option;
    (*

    The status for the updated test set.

    *)
  6. roleArn : RoleArn.t option;
    (*

    The roleARN used for any operation in the test set to access resources in the Amazon Web Services account.

    *)
  7. numTurns : Count.t option;
    (*

    The number of conversation turns from the updated test set.

    *)
  8. storageLocation : TestSetStorageLocation.t option;
    (*

    The Amazon S3 storage location for the updated test set.

    *)
  9. creationDateTime : Timestamp.t option;
    (*

    The creation date and time for the updated test set.

    *)
  10. lastUpdatedDateTime : Timestamp.t option;
    (*

    The date and time of the last update for the updated test set.

    *)
}
Sourcetype nonrec error = [
  1. | `ConflictException of ConflictException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `PreconditionFailedException of PreconditionFailedException.t
  4. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?testSetId:??? -> ?testSetName:??? -> ?description:??? -> ?modality:??? -> ?status:??? -> ?roleArn:??? -> ?numTurns:??? -> ?storageLocation:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `PreconditionFailedException of PreconditionFailedException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `PreconditionFailedException of PreconditionFailedException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Count.t | `String of Id.t | `Structure of (string * [> `String of S3BucketName.t ]) list | `Timestamp of Timestamp.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