Module Values_1.TestCaseSource

Contains information about a test case.

Sourcetype nonrec t = {
  1. arn : Values_0.ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the test case.

    *)
  2. id : Values_0.TestCaseId.t option;
    (*

    The identifier of the test case.

    *)
  3. name : Values_0.TestCaseName.t option;
    (*

    The name of the test case.

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

    The JSON string that represents the content of the test.

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

    Defines the starting point for the test, including channel type and parameters.

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

    Defines the test attributes for precise data representation. The value must be a valid JSON string.

    *)
  7. description : Values_0.TestCaseDescription.t option;
    (*

    The description of the test case.

    *)
  8. status : Values_0.TestCaseStatus.t option;
    (*

    Indicates the test status as either SAVED or PUBLISHED.

    *)
  9. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    The time at which the test case was last modified.

    *)
  10. lastModifiedRegion : Values_0.RegionName.t option;
    (*

    The region in which the test case was last modified.

    *)
  11. tags : Values_0.TagMap.t option;
    (*

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

    *)
  12. testCaseSha256 : TestCaseSha256.t option;
    (*

    The SHA256 hash of the test case content.

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?name:??? -> ?content:??? -> ?entryPoint:??? -> ?initializationData:??? -> ?description:??? -> ?status:??? -> ?lastModifiedTime:??? -> ?lastModifiedRegion:??? -> ?tags:??? -> ?testCaseSha256:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of string ] * [> `String of string ]) list | `String of Values_0.ARN.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of string ]) list ]) list | `Timestamp of Values_0.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