Module Values_0.ScheduledAuditMetadataSource

Information about the scheduled audit.

Sourcetype nonrec t = {
  1. scheduledAuditName : ScheduledAuditName.t option;
    (*

    The name of the scheduled audit.

    *)
  2. scheduledAuditArn : ScheduledAuditArn.t option;
    (*

    The ARN of the scheduled audit.

    *)
  3. frequency : AuditFrequency.t option;
    (*

    How often the scheduled audit occurs.

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

    The day of the month on which the scheduled audit is run (if the frequency is "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.

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

    The day of the week on which the scheduled audit is run (if the frequency is "WEEKLY" or "BIWEEKLY").

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