Module Values_0.UpdateScheduledAuditRequestSource

Updates a scheduled audit, including which checks are performed and how often the audit takes place. Requires permission to access the UpdateScheduledAudit action.

Sourcetype nonrec t = {
  1. frequency : AuditFrequency.t option;
    (*

    How often the scheduled audit takes place, either DAILY, WEEKLY, BIWEEKLY, or MONTHLY. The start time of each audit is determined by the system.

    *)
  2. dayOfMonth : DayOfMonth.t option;
    (*

    The day of the month on which the scheduled audit takes place. This can be 1 through 31 or LAST. This field is required if the frequency parameter is set to MONTHLY. If days 29-31 are specified, and the month does not have that many days, the audit takes place on the "LAST" day of the month.

    *)
  3. dayOfWeek : DayOfWeek.t option;
    (*

    The day of the week on which the scheduled audit takes place. This can be one of SUN, MON, TUE, WED, THU, FRI, or SAT. This field is required if the "frequency" parameter is set to WEEKLY or BIWEEKLY.

    *)
  4. targetCheckNames : TargetAuditCheckNames.t option;
    (*

    Which checks are performed during the scheduled audit. Checks must be enabled for your account. (Use DescribeAccountAuditConfiguration to see the list of all checks, including those that are enabled or use UpdateAccountAuditConfiguration to select which checks are enabled.)

    *)
  5. scheduledAuditName : ScheduledAuditName.t;
    (*

    The name of the scheduled audit. (Max. 128 chars)

    *)
}
Sourceval context_ : string
Sourceval make : ?frequency:??? -> ?dayOfMonth:??? -> ?dayOfWeek:??? -> ?targetCheckNames:??? -> scheduledAuditName:ScheduledAuditName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of AuditCheckName.t ] list | `String of DayOfMonth.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