Struct aws_sdk_ssm::types::AssociationOverview
source · #[non_exhaustive]pub struct AssociationOverview { /* private fields */ }Expand description
Information about the association.
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
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 AssociationOverview
impl Debug for AssociationOverview
source§impl PartialEq<AssociationOverview> for AssociationOverview
impl PartialEq<AssociationOverview> for AssociationOverview
source§fn eq(&self, other: &AssociationOverview) -> bool
fn eq(&self, other: &AssociationOverview) -> bool
This method tests for
self and other values to be equal, and is used
by ==.