Module Values.UpdateReportGroupInputSource

Updates a report group.

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

    The ARN of the report group to update.

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

    Used to specify an updated export type. Valid values are: S3: The report results are exported to an S3 bucket. NO_EXPORT: The report results are not exported.

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

    An updated 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?exportConfig:??? -> ?tags:??? -> arn:NonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure 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 ]) 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