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 ==.impl StructuralPartialEq for DeleteRemediationExceptionsInput
Auto Trait Implementations§
impl Freeze for DeleteRemediationExceptionsInput
impl RefUnwindSafe for DeleteRemediationExceptionsInput
impl Send for DeleteRemediationExceptionsInput
impl Sync for DeleteRemediationExceptionsInput
impl Unpin for DeleteRemediationExceptionsInput
impl UnwindSafe for DeleteRemediationExceptionsInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more