Module Values_2.TestCaseSummarySource

Contains summary information about a test case.

Sourcetype nonrec t = {
  1. id : Values_0.TestCaseId.t option;
    (*

    The identifier of the test case.

    *)
  2. arn : Values_0.ARN.t option;
    (*

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

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

    The name of the test case.

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

    The status of the test case.

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

    The time at which the test case was last modified.

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

    The region in which the test case was last modified.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?status:??? -> ?lastModifiedTime:??? -> ?lastModifiedRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.TestCaseId.t | `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