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
source§fn eq(&self, other: &AssociationOverview) -> bool
fn eq(&self, other: &AssociationOverview) -> bool
self
and other
values to be equal, and is used
by ==
.