Struct aws_sdk_ssm::types::AssociationOverview
source · #[non_exhaustive]pub struct AssociationOverview {
pub status: Option<String>,
pub detailed_status: Option<String>,
pub association_status_aggregated_count: Option<HashMap<String, i32>>,
}
Expand description
Information about the association.
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.status: Option<String>
The status of the association. Status can be: Pending, Success, or Failed.
detailed_status: Option<String>
A detailed status of the association.
association_status_aggregated_count: Option<HashMap<String, i32>>
Returns the number of targets for the association status. For example, if you created an association with two managed nodes, and one of them was successful, this would return the count of managed nodes by status.
Implementations§
source§impl AssociationOverview
impl AssociationOverview
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
The status of the association. Status can be: Pending, Success, or Failed.
sourcepub fn detailed_status(&self) -> Option<&str>
pub fn detailed_status(&self) -> Option<&str>
A detailed status of the association.
sourcepub fn association_status_aggregated_count(
&self,
) -> Option<&HashMap<String, i32>>
pub fn association_status_aggregated_count( &self, ) -> Option<&HashMap<String, i32>>
Returns the number of targets for the association status. For example, if you created an association with two managed nodes, and one of them was successful, this would return the count of managed nodes by status.
source§impl AssociationOverview
impl AssociationOverview
sourcepub fn builder() -> AssociationOverviewBuilder
pub fn builder() -> AssociationOverviewBuilder
Creates a new builder-style object to manufacture AssociationOverview
.
Trait Implementations§
source§impl Clone for AssociationOverview
impl Clone for AssociationOverview
source§fn clone(&self) -> AssociationOverview
fn clone(&self) -> AssociationOverview
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AssociationOverview
impl Debug for AssociationOverview
source§impl PartialEq for AssociationOverview
impl PartialEq for AssociationOverview
impl StructuralPartialEq for AssociationOverview
Auto Trait Implementations§
impl Freeze for AssociationOverview
impl RefUnwindSafe for AssociationOverview
impl Send for AssociationOverview
impl Sync for AssociationOverview
impl Unpin for AssociationOverview
impl UnwindSafe for AssociationOverview
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