Struct aws_sdk_iot::input::CreateAuditSuppressionInput [−][src]
#[non_exhaustive]pub struct CreateAuditSuppressionInput {
pub check_name: Option<String>,
pub resource_identifier: Option<ResourceIdentifier>,
pub expiration_date: Option<DateTime>,
pub suppress_indefinitely: Option<bool>,
pub description: Option<String>,
pub client_request_token: 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 epoch timestamp in seconds at which this suppression expires.
suppress_indefinitely: Option<bool>
Indicates whether a suppression should exist indefinitely or not.
description: Option<String>
The description of the audit suppression.
client_request_token: Option<String>
Each audit supression must have a unique client request token. If you try to create a new audit suppression with the same token as one that already exists, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.
Implementations
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateAuditSuppression, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateAuditSuppression, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateAuditSuppression
>
Creates a new builder-style object to manufacture CreateAuditSuppressionInput
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 epoch timestamp in seconds at which this suppression expires.
Indicates whether a suppression should exist indefinitely or not.
The description of the audit suppression.
Each audit supression must have a unique client request token. If you try to create a new audit suppression with the same token as one that already exists, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.
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 CreateAuditSuppressionInput
impl Send for CreateAuditSuppressionInput
impl Sync for CreateAuditSuppressionInput
impl Unpin for CreateAuditSuppressionInput
impl UnwindSafe for CreateAuditSuppressionInput
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