Struct aws_sdk_iot::types::ScheduledAuditMetadata
source · #[non_exhaustive]pub struct ScheduledAuditMetadata { /* private fields */ }
Expand description
Information about the scheduled audit.
Implementations§
source§impl ScheduledAuditMetadata
impl ScheduledAuditMetadata
sourcepub fn scheduled_audit_name(&self) -> Option<&str>
pub fn scheduled_audit_name(&self) -> Option<&str>
The name of the scheduled audit.
sourcepub fn scheduled_audit_arn(&self) -> Option<&str>
pub fn scheduled_audit_arn(&self) -> Option<&str>
The ARN of the scheduled audit.
sourcepub fn frequency(&self) -> Option<&AuditFrequency>
pub fn frequency(&self) -> Option<&AuditFrequency>
How often the scheduled audit occurs.
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 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.
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 is run (if the frequency
is "WEEKLY" or "BIWEEKLY").
source§impl ScheduledAuditMetadata
impl ScheduledAuditMetadata
sourcepub fn builder() -> ScheduledAuditMetadataBuilder
pub fn builder() -> ScheduledAuditMetadataBuilder
Creates a new builder-style object to manufacture ScheduledAuditMetadata
.
Trait Implementations§
source§impl Clone for ScheduledAuditMetadata
impl Clone for ScheduledAuditMetadata
source§fn clone(&self) -> ScheduledAuditMetadata
fn clone(&self) -> ScheduledAuditMetadata
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ScheduledAuditMetadata
impl Debug for ScheduledAuditMetadata
source§impl PartialEq<ScheduledAuditMetadata> for ScheduledAuditMetadata
impl PartialEq<ScheduledAuditMetadata> for ScheduledAuditMetadata
source§fn eq(&self, other: &ScheduledAuditMetadata) -> bool
fn eq(&self, other: &ScheduledAuditMetadata) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.