Module Values.StartTestSetGenerationResponseSource

The action to start the generation of test set.

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

    The unique identifier of the test set generation to describe.

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

    The creation date and time for the test set generation.

    *)
  3. testSetGenerationStatus : TestSetGenerationStatus.t option;
    (*

    The status for the test set generation.

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

    The test set name used for the test set generation.

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

    The description used for the test set generation.

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

    The Amazon S3 storage location for the test set generation.

    *)
  7. generationDataSource : TestSetGenerationDataSource.t option;
    (*

    The data source for the test set generation.

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

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

    *)
  9. testSetTags : TagMap.t option;
    (*

    A list of tags that was used for the test set that is being generated.

    *)
}
Sourcetype nonrec error = [
  1. | `ConflictException of ConflictException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.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 : ?testSetGenerationId:??? -> ?creationDateTime:??? -> ?testSetGenerationStatus:??? -> ?testSetName:??? -> ?description:??? -> ?storageLocation:??? -> ?generationDataSource:??? -> ?roleArn:??? -> ?testSetTags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.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 | `ResourceNotFoundException of ResourceNotFoundException.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 | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Id.t | `Structure of (string * [> `String of S3BucketName.t | `Structure of (string * [> `String of Id.t | `Structure of (string * [> `Enum of string | `Timestamp of Timestamp.t ]) list ]) list ]) 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