Module Values.StartTestSetGenerationRequestSource

The action to start the generation of test set.

Sourcetype nonrec t = {
  1. testSetName : Name.t;
    (*

    The test set name for the test set generation request.

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

    The test set description for the test set generation request.

    *)
  3. storageLocation : TestSetStorageLocation.t;
    (*

    The Amazon S3 storage location for the test set generation.

    *)
  4. generationDataSource : TestSetGenerationDataSource.t;
    (*

    The data source for the test set generation.

    *)
  5. roleArn : RoleArn.t;
    (*

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

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

    A list of tags to add to the test set. You can only add tags when you import/generate a new test set. You can't use the UpdateTestSet operation to update tags. To update tags, use the TagResource operation.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?testSetTags:??? -> testSetName:Name.t -> storageLocation:TestSetStorageLocation.t -> generationDataSource:TestSetGenerationDataSource.t -> roleArn:RoleArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Name.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 ]) 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