Struct aws_sdk_config::operation::delete_remediation_exceptions::DeleteRemediationExceptionsInput
source · #[non_exhaustive]pub struct DeleteRemediationExceptionsInput {
pub config_rule_name: Option<String>,
pub resource_keys: Option<Vec<RemediationExceptionResourceKey>>,
}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 delete remediation exception configuration.
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.
Implementations§
source§impl DeleteRemediationExceptionsInput
impl DeleteRemediationExceptionsInput
sourcepub fn config_rule_name(&self) -> Option<&str>
pub fn config_rule_name(&self) -> Option<&str>
The name of the Config rule for which you want to delete remediation exception configuration.
sourcepub fn resource_keys(&self) -> &[RemediationExceptionResourceKey]
pub fn resource_keys(&self) -> &[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .resource_keys.is_none().
source§impl DeleteRemediationExceptionsInput
impl DeleteRemediationExceptionsInput
sourcepub fn builder() -> DeleteRemediationExceptionsInputBuilder
pub fn builder() -> DeleteRemediationExceptionsInputBuilder
Creates a new builder-style object to manufacture DeleteRemediationExceptionsInput.
Trait Implementations§
source§impl Clone for DeleteRemediationExceptionsInput
impl Clone for DeleteRemediationExceptionsInput
source§fn clone(&self) -> DeleteRemediationExceptionsInput
fn clone(&self) -> DeleteRemediationExceptionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for DeleteRemediationExceptionsInput
impl PartialEq for DeleteRemediationExceptionsInput
source§fn eq(&self, other: &DeleteRemediationExceptionsInput) -> bool
fn eq(&self, other: &DeleteRemediationExceptionsInput) -> bool
self and other values to be equal, and is used
by ==.