Struct aws_sdk_iot::operation::update_scheduled_audit::builders::UpdateScheduledAuditInputBuilder
source · #[non_exhaustive]pub struct UpdateScheduledAuditInputBuilder { /* private fields */ }Expand description
A builder for UpdateScheduledAuditInput.
Implementations§
source§impl UpdateScheduledAuditInputBuilder
impl UpdateScheduledAuditInputBuilder
sourcepub fn frequency(self, input: AuditFrequency) -> Self
pub fn frequency(self, input: AuditFrequency) -> Self
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 set_frequency(self, input: Option<AuditFrequency>) -> Self
pub fn set_frequency(self, input: Option<AuditFrequency>) -> Self
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 get_frequency(&self) -> &Option<AuditFrequency>
pub fn get_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, input: impl Into<String>) -> Self
pub fn day_of_month(self, input: impl Into<String>) -> Self
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 set_day_of_month(self, input: Option<String>) -> Self
pub fn set_day_of_month(self, input: Option<String>) -> Self
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 get_day_of_month(&self) -> &Option<String>
pub fn get_day_of_month(&self) -> &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.
sourcepub fn day_of_week(self, input: DayOfWeek) -> Self
pub fn day_of_week(self, input: DayOfWeek) -> Self
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 set_day_of_week(self, input: Option<DayOfWeek>) -> Self
pub fn set_day_of_week(self, input: Option<DayOfWeek>) -> Self
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 get_day_of_week(&self) -> &Option<DayOfWeek>
pub fn get_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, input: impl Into<String>) -> Self
pub fn target_check_names(self, input: impl Into<String>) -> Self
Appends an item to target_check_names.
To override the contents of this collection use set_target_check_names.
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 set_target_check_names(self, input: Option<Vec<String>>) -> Self
pub fn set_target_check_names(self, input: Option<Vec<String>>) -> Self
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 get_target_check_names(&self) -> &Option<Vec<String>>
pub fn get_target_check_names(&self) -> &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.)
sourcepub fn scheduled_audit_name(self, input: impl Into<String>) -> Self
pub fn scheduled_audit_name(self, input: impl Into<String>) -> Self
The name of the scheduled audit. (Max. 128 chars)
This field is required.sourcepub fn set_scheduled_audit_name(self, input: Option<String>) -> Self
pub fn set_scheduled_audit_name(self, input: Option<String>) -> Self
The name of the scheduled audit. (Max. 128 chars)
sourcepub fn get_scheduled_audit_name(&self) -> &Option<String>
pub fn get_scheduled_audit_name(&self) -> &Option<String>
The name of the scheduled audit. (Max. 128 chars)
sourcepub fn build(self) -> Result<UpdateScheduledAuditInput, BuildError>
pub fn build(self) -> Result<UpdateScheduledAuditInput, BuildError>
Consumes the builder and constructs a UpdateScheduledAuditInput.
source§impl UpdateScheduledAuditInputBuilder
impl UpdateScheduledAuditInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateScheduledAuditOutput, SdkError<UpdateScheduledAuditError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateScheduledAuditOutput, SdkError<UpdateScheduledAuditError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateScheduledAuditInputBuilder
impl Clone for UpdateScheduledAuditInputBuilder
source§fn clone(&self) -> UpdateScheduledAuditInputBuilder
fn clone(&self) -> UpdateScheduledAuditInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateScheduledAuditInputBuilder
impl Default for UpdateScheduledAuditInputBuilder
source§fn default() -> UpdateScheduledAuditInputBuilder
fn default() -> UpdateScheduledAuditInputBuilder
source§impl PartialEq for UpdateScheduledAuditInputBuilder
impl PartialEq for UpdateScheduledAuditInputBuilder
source§fn eq(&self, other: &UpdateScheduledAuditInputBuilder) -> bool
fn eq(&self, other: &UpdateScheduledAuditInputBuilder) -> bool
self and other values to be equal, and is used
by ==.