Struct aws_sdk_iam::model::DeletionTaskFailureReasonType
source · [−]#[non_exhaustive]pub struct DeletionTaskFailureReasonType {
pub reason: Option<String>,
pub role_usage_list: Option<Vec<RoleUsageType>>,
}
Expand description
The reason that the service-linked role deletion failed.
This data type is used as a response element in the GetServiceLinkedRoleDeletionStatus
operation.
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.reason: Option<String>
A short description of the reason that the service-linked role deletion failed.
role_usage_list: Option<Vec<RoleUsageType>>
A list of objects that contains details about the service-linked role deletion failure, if that information is returned by the service. If the service-linked role has active sessions or if any resources that were used by the role have not been deleted from the linked service, the role can't be deleted. This parameter includes a list of the resources that are associated with the role and the Region in which the resources are being used.
Implementations
sourceimpl DeletionTaskFailureReasonType
impl DeletionTaskFailureReasonType
sourcepub fn reason(&self) -> Option<&str>
pub fn reason(&self) -> Option<&str>
A short description of the reason that the service-linked role deletion failed.
sourcepub fn role_usage_list(&self) -> Option<&[RoleUsageType]>
pub fn role_usage_list(&self) -> Option<&[RoleUsageType]>
A list of objects that contains details about the service-linked role deletion failure, if that information is returned by the service. If the service-linked role has active sessions or if any resources that were used by the role have not been deleted from the linked service, the role can't be deleted. This parameter includes a list of the resources that are associated with the role and the Region in which the resources are being used.
sourceimpl DeletionTaskFailureReasonType
impl DeletionTaskFailureReasonType
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeletionTaskFailureReasonType
Trait Implementations
sourceimpl Clone for DeletionTaskFailureReasonType
impl Clone for DeletionTaskFailureReasonType
sourcefn clone(&self) -> DeletionTaskFailureReasonType
fn clone(&self) -> DeletionTaskFailureReasonType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DeletionTaskFailureReasonType
impl Debug for DeletionTaskFailureReasonType
sourceimpl PartialEq<DeletionTaskFailureReasonType> for DeletionTaskFailureReasonType
impl PartialEq<DeletionTaskFailureReasonType> for DeletionTaskFailureReasonType
sourcefn eq(&self, other: &DeletionTaskFailureReasonType) -> bool
fn eq(&self, other: &DeletionTaskFailureReasonType) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DeletionTaskFailureReasonType) -> bool
fn ne(&self, other: &DeletionTaskFailureReasonType) -> bool
This method tests for !=
.
impl StructuralPartialEq for DeletionTaskFailureReasonType
Auto Trait Implementations
impl RefUnwindSafe for DeletionTaskFailureReasonType
impl Send for DeletionTaskFailureReasonType
impl Sync for DeletionTaskFailureReasonType
impl Unpin for DeletionTaskFailureReasonType
impl UnwindSafe for DeletionTaskFailureReasonType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more