#[non_exhaustive]pub struct PutRemediationExceptionsInput {
pub config_rule_name: Option<String>,
pub resource_keys: Option<Vec<RemediationExceptionResourceKey>>,
pub message: Option<String>,
pub expiration_time: Option<DateTime>,
}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.config_rule_name: Option<String>The name of the Config rule for which you want to create remediation exception.
resource_keys: Option<Vec<RemediationExceptionResourceKey>>An exception list of resource exception keys to be processed with the current request. Config adds exception for each resource key. For example, Config adds 3 exceptions for 3 resource keys.
message: Option<String>The message contains an explanation of the exception.
expiration_time: Option<DateTime>The exception is automatically deleted after the expiration date.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutRemediationExceptions, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutRemediationExceptions, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<PutRemediationExceptions>
Creates a new builder-style object to manufacture PutRemediationExceptionsInput
The name of the Config rule for which you want to create remediation exception.
An exception list of resource exception keys to be processed with the current request. Config adds exception for each resource key. For example, Config adds 3 exceptions for 3 resource keys.
The exception is automatically deleted after the expiration date.
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 Send for PutRemediationExceptionsInput
impl Sync for PutRemediationExceptionsInput
impl Unpin for PutRemediationExceptionsInput
impl UnwindSafe for PutRemediationExceptionsInput
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