Module Values_0.CreateTestCaseRequestSource

Creates a test case with its content and metadata for the specified Amazon Connect instance.

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

    The identifier of the Amazon Connect instance.

    *)
  2. name : TestCaseName.t;
    (*

    The name of the test.

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

    The description of the test.

    *)
  4. content : TestCaseContent.t;
    (*

    The JSON string that represents the content of the test.

    *)
  5. entryPoint : TestCaseEntryPoint.t option;
    (*

    Defines the starting point for your test.

    *)
  6. initializationData : TestCaseInitializationData.t option;
    (*

    Defines the initial custom attributes for your test.

    *)
  7. status : TestCaseStatus.t option;
    (*

    Indicates the test status as either SAVED or PUBLISHED. The PUBLISHED status will initiate validation on the content. The SAVED status does not initiate validation of the content.

    *)
  8. testCaseId : TestCaseId.t option;
    (*

    Id of the test case if you want to create it in a replica region using Amazon Connect Global Resiliency

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

    The tags used to organize, track, or control access for this resource.

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

    The time at which the resource was last modified.

    *)
  11. lastModifiedRegion : RegionName.t option;
    (*

    The region in which the resource was last modified

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?entryPoint:??? -> ?initializationData:??? -> ?status:??? -> ?testCaseId:??? -> ?tags:??? -> ?lastModifiedTime:??? -> ?lastModifiedRegion:??? -> instanceId:InstanceIdOrArn.t -> name:TestCaseName.t -> content:TestCaseContent.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of InstanceIdOrArn.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of PhoneNumber.t ]) 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