Module Values.ReportSettingSource

Contains detailed information about a report setting.

Sourcetype nonrec t = {
  1. reportTemplate : string;
    (*

    Identifies the report template for the report. Reports are built using a report template. The report templates are: RESOURCE_COMPLIANCE_REPORT | CONTROL_COMPLIANCE_REPORT | BACKUP_JOB_REPORT | COPY_JOB_REPORT | RESTORE_JOB_REPORT | SCAN_JOB_REPORT

    *)
  2. frameworkArns : StringList.t option;
    (*

    The Amazon Resource Names (ARNs) of the frameworks a report covers.

    *)
  3. numberOfFrameworks : Integer.t option;
    (*

    The number of frameworks a report covers.

    *)
  4. accounts : StringList.t option;
    (*

    These are the accounts to be included in the report. Use string value of ROOT to include all organizational units.

    *)
  5. organizationUnits : StringList.t option;
    (*

    These are the Organizational Units to be included in the report.

    *)
  6. regions : StringList.t option;
    (*

    These are the Regions to be included in the report. Use the wildcard as the string value to include all Regions.

    *)
}
Sourceval context_ : string
Sourceval make : ?frameworkArns:??? -> ?numberOfFrameworks:??? -> ?accounts:??? -> ?organizationUnits:??? -> ?regions:??? -> reportTemplate:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `String of string ] list | `String of string ]) 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