#[non_exhaustive]pub struct FailedDeleteRemediationExceptionsBatch {
pub failure_message: Option<String>,
pub failed_items: Option<Vec<RemediationExceptionResourceKey>>,
}Expand description
List of each of the failed delete remediation exceptions with specific reasons.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.failure_message: Option<String>Returns a failure message for delete remediation exception. For example, Config creates an exception due to an internal error.
failed_items: Option<Vec<RemediationExceptionResourceKey>>Returns remediation exception resource key object of the failed items.
Implementations§
source§impl FailedDeleteRemediationExceptionsBatch
impl FailedDeleteRemediationExceptionsBatch
sourcepub fn failure_message(&self) -> Option<&str>
pub fn failure_message(&self) -> Option<&str>
Returns a failure message for delete remediation exception. For example, Config creates an exception due to an internal error.
sourcepub fn failed_items(&self) -> &[RemediationExceptionResourceKey]
pub fn failed_items(&self) -> &[RemediationExceptionResourceKey]
Returns remediation exception resource key object of the failed items.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .failed_items.is_none().
source§impl FailedDeleteRemediationExceptionsBatch
impl FailedDeleteRemediationExceptionsBatch
sourcepub fn builder() -> FailedDeleteRemediationExceptionsBatchBuilder
pub fn builder() -> FailedDeleteRemediationExceptionsBatchBuilder
Creates a new builder-style object to manufacture FailedDeleteRemediationExceptionsBatch.
Trait Implementations§
source§impl Clone for FailedDeleteRemediationExceptionsBatch
impl Clone for FailedDeleteRemediationExceptionsBatch
source§fn clone(&self) -> FailedDeleteRemediationExceptionsBatch
fn clone(&self) -> FailedDeleteRemediationExceptionsBatch
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq for FailedDeleteRemediationExceptionsBatch
impl PartialEq for FailedDeleteRemediationExceptionsBatch
source§fn eq(&self, other: &FailedDeleteRemediationExceptionsBatch) -> bool
fn eq(&self, other: &FailedDeleteRemediationExceptionsBatch) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FailedDeleteRemediationExceptionsBatch
Auto Trait Implementations§
impl RefUnwindSafe for FailedDeleteRemediationExceptionsBatch
impl Send for FailedDeleteRemediationExceptionsBatch
impl Sync for FailedDeleteRemediationExceptionsBatch
impl Unpin for FailedDeleteRemediationExceptionsBatch
impl UnwindSafe for FailedDeleteRemediationExceptionsBatch
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.