Struct aws_sdk_iot::input::UpdateScheduledAuditInput
source · #[non_exhaustive]pub struct UpdateScheduledAuditInput { /* private fields */ }
Implementations§
source§impl UpdateScheduledAuditInput
impl UpdateScheduledAuditInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateScheduledAudit, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateScheduledAudit, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateScheduledAudit
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateScheduledAuditInput
.
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) -> Option<&[String]>
pub fn target_check_names(&self) -> Option<&[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.)
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)
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<UpdateScheduledAuditInput> for UpdateScheduledAuditInput
impl PartialEq<UpdateScheduledAuditInput> 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 ==
.