#[non_exhaustive]pub struct UpdateScheduledAuditInput {
pub frequency: Option<AuditFrequency>,
pub day_of_month: Option<String>,
pub day_of_week: Option<DayOfWeek>,
pub target_check_names: Option<Vec<String>>,
pub scheduled_audit_name: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.frequency: Option<AuditFrequency>How often the scheduled audit takes place, either DAILY, WEEKLY, BIWEEKLY, or MONTHLY. The start time of each audit is determined by the system.
day_of_month: Option<String>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.
day_of_week: Option<DayOfWeek>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.
target_check_names: Option<Vec<String>>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.)
scheduled_audit_name: Option<String>The name of the scheduled audit. (Max. 128 chars)
Implementations§
source§impl UpdateScheduledAuditInput
impl UpdateScheduledAuditInput
sourcepub fn frequency(&self) -> Option<&AuditFrequency>
pub fn frequency(&self) -> Option<&AuditFrequency>
How often the scheduled audit takes place, either DAILY, WEEKLY, BIWEEKLY, or MONTHLY. The start time of each audit is determined by the system.
sourcepub fn day_of_month(&self) -> Option<&str>
pub fn day_of_month(&self) -> Option<&str>
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.
sourcepub fn day_of_week(&self) -> Option<&DayOfWeek>
pub fn day_of_week(&self) -> Option<&DayOfWeek>
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.
sourcepub fn target_check_names(&self) -> &[String]
pub fn target_check_names(&self) -> &[String]
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.)
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .target_check_names.is_none().
sourcepub fn scheduled_audit_name(&self) -> Option<&str>
pub fn scheduled_audit_name(&self) -> Option<&str>
The name of the scheduled audit. (Max. 128 chars)
source§impl UpdateScheduledAuditInput
impl UpdateScheduledAuditInput
sourcepub fn builder() -> UpdateScheduledAuditInputBuilder
pub fn builder() -> UpdateScheduledAuditInputBuilder
Creates a new builder-style object to manufacture UpdateScheduledAuditInput.
Trait Implementations§
source§impl Clone for UpdateScheduledAuditInput
impl Clone for UpdateScheduledAuditInput
source§fn clone(&self) -> UpdateScheduledAuditInput
fn clone(&self) -> UpdateScheduledAuditInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateScheduledAuditInput
impl Debug for UpdateScheduledAuditInput
source§impl PartialEq for UpdateScheduledAuditInput
impl PartialEq for UpdateScheduledAuditInput
source§fn eq(&self, other: &UpdateScheduledAuditInput) -> bool
fn eq(&self, other: &UpdateScheduledAuditInput) -> bool
self and other values to be equal, and is used
by ==.