#[non_exhaustive]pub struct RemoveTargetsResultEntry { /* private fields */ }
Expand description
Represents a target that failed to be removed from a rule.
Implementations§
source§impl RemoveTargetsResultEntry
impl RemoveTargetsResultEntry
sourcepub fn error_code(&self) -> Option<&str>
pub fn error_code(&self) -> Option<&str>
The error code that indicates why the target removal failed. If the value is ConcurrentModificationException
, too many requests were made at the same time.
sourcepub fn error_message(&self) -> Option<&str>
pub fn error_message(&self) -> Option<&str>
The error message that explains why the target removal failed.
source§impl RemoveTargetsResultEntry
impl RemoveTargetsResultEntry
sourcepub fn builder() -> RemoveTargetsResultEntryBuilder
pub fn builder() -> RemoveTargetsResultEntryBuilder
Creates a new builder-style object to manufacture RemoveTargetsResultEntry
.
Trait Implementations§
source§impl Clone for RemoveTargetsResultEntry
impl Clone for RemoveTargetsResultEntry
source§fn clone(&self) -> RemoveTargetsResultEntry
fn clone(&self) -> RemoveTargetsResultEntry
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 Debug for RemoveTargetsResultEntry
impl Debug for RemoveTargetsResultEntry
source§impl PartialEq<RemoveTargetsResultEntry> for RemoveTargetsResultEntry
impl PartialEq<RemoveTargetsResultEntry> for RemoveTargetsResultEntry
source§fn eq(&self, other: &RemoveTargetsResultEntry) -> bool
fn eq(&self, other: &RemoveTargetsResultEntry) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RemoveTargetsResultEntry
Auto Trait Implementations§
impl RefUnwindSafe for RemoveTargetsResultEntry
impl Send for RemoveTargetsResultEntry
impl Sync for RemoveTargetsResultEntry
impl Unpin for RemoveTargetsResultEntry
impl UnwindSafe for RemoveTargetsResultEntry
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