Module Values.ReportGroupSource

A series of reports. Each report contains information about the results from running a series of test cases. You specify the test cases for a report group in the buildspec for a build project using one or more paths to the test case files.

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

    The ARN of the ReportGroup.

    *)
  2. name : ReportGroupName.t option;
    (*

    The name of the ReportGroup.

    *)
  3. type_ : ReportType.t option;
    (*

    The type of the ReportGroup. This can be one of the following values: CODE_COVERAGE The report group contains code coverage reports. TEST The report group contains test reports.

    *)
  4. exportConfig : ReportExportConfig.t option;
    (*

    Information about the destination where the raw data of this ReportGroup is exported.

    *)
  5. created : Timestamp.t option;
    (*

    The date and time this ReportGroup was created.

    *)
  6. lastModified : Timestamp.t option;
    (*

    The date and time this ReportGroup was last modified.

    *)
  7. tags : TagList.t option;
    (*

    A list of tag key and value pairs associated with this report group. These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.

    *)
  8. status : ReportGroupStatusType.t option;
    (*

    The status of the report group. This property is read-only. This can be one of the following values: ACTIVE The report group is active. DELETING The report group is in the process of being deleted.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?type_:??? -> ?exportConfig:??? -> ?created:??? -> ?lastModified:??? -> ?tags:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of KeyInput.t ]) list ] list | `String of NonEmptyString.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Boolean of WrapperBoolean.t | `Enum of string | `String of NonEmptyString.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