Struct aws_sdk_iot::input::UpdateAuditSuppressionInput [−][src]
#[non_exhaustive]pub struct UpdateAuditSuppressionInput {
pub check_name: Option<String>,
pub resource_identifier: Option<ResourceIdentifier>,
pub expiration_date: Option<DateTime>,
pub suppress_indefinitely: Option<bool>,
pub description: 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.check_name: Option<String>
An audit check name. 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.)
resource_identifier: Option<ResourceIdentifier>
Information that identifies the noncompliant resource.
expiration_date: Option<DateTime>
The expiration date (epoch timestamp in seconds) that you want the suppression to adhere to.
suppress_indefinitely: Option<bool>
Indicates whether a suppression should exist indefinitely or not.
description: Option<String>
The description of the audit suppression.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateAuditSuppression, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateAuditSuppression, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateAuditSuppression
>
Creates a new builder-style object to manufacture UpdateAuditSuppressionInput
An audit check name. 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.)
Information that identifies the noncompliant resource.
The expiration date (epoch timestamp in seconds) that you want the suppression to adhere to.
Indicates whether a suppression should exist indefinitely or not.
The description of the audit suppression.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UpdateAuditSuppressionInput
impl Send for UpdateAuditSuppressionInput
impl Sync for UpdateAuditSuppressionInput
impl Unpin for UpdateAuditSuppressionInput
impl UnwindSafe for UpdateAuditSuppressionInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more