Struct aws_sdk_ssm::types::builders::AssociationOverviewBuilder
source · #[non_exhaustive]pub struct AssociationOverviewBuilder { /* private fields */ }
Expand description
A builder for AssociationOverview
.
Implementations§
source§impl AssociationOverviewBuilder
impl AssociationOverviewBuilder
sourcepub fn status(self, input: impl Into<String>) -> Self
pub fn status(self, input: impl Into<String>) -> Self
The status of the association. Status can be: Pending, Success, or Failed.
sourcepub fn set_status(self, input: Option<String>) -> Self
pub fn set_status(self, input: Option<String>) -> Self
The status of the association. Status can be: Pending, Success, or Failed.
sourcepub fn get_status(&self) -> &Option<String>
pub fn get_status(&self) -> &Option<String>
The status of the association. Status can be: Pending, Success, or Failed.
sourcepub fn detailed_status(self, input: impl Into<String>) -> Self
pub fn detailed_status(self, input: impl Into<String>) -> Self
A detailed status of the association.
sourcepub fn set_detailed_status(self, input: Option<String>) -> Self
pub fn set_detailed_status(self, input: Option<String>) -> Self
A detailed status of the association.
sourcepub fn get_detailed_status(&self) -> &Option<String>
pub fn get_detailed_status(&self) -> &Option<String>
A detailed status of the association.
sourcepub fn association_status_aggregated_count(
self,
k: impl Into<String>,
v: i32
) -> Self
pub fn association_status_aggregated_count( self, k: impl Into<String>, v: i32 ) -> Self
Adds a key-value pair to association_status_aggregated_count
.
To override the contents of this collection use set_association_status_aggregated_count
.
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.
sourcepub fn set_association_status_aggregated_count(
self,
input: Option<HashMap<String, i32>>
) -> Self
pub fn set_association_status_aggregated_count( self, input: Option<HashMap<String, i32>> ) -> Self
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.
sourcepub fn get_association_status_aggregated_count(
&self
) -> &Option<HashMap<String, i32>>
pub fn get_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.
sourcepub fn build(self) -> AssociationOverview
pub fn build(self) -> AssociationOverview
Consumes the builder and constructs a AssociationOverview
.
Trait Implementations§
source§impl Clone for AssociationOverviewBuilder
impl Clone for AssociationOverviewBuilder
source§fn clone(&self) -> AssociationOverviewBuilder
fn clone(&self) -> AssociationOverviewBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AssociationOverviewBuilder
impl Debug for AssociationOverviewBuilder
source§impl Default for AssociationOverviewBuilder
impl Default for AssociationOverviewBuilder
source§fn default() -> AssociationOverviewBuilder
fn default() -> AssociationOverviewBuilder
source§impl PartialEq for AssociationOverviewBuilder
impl PartialEq for AssociationOverviewBuilder
source§fn eq(&self, other: &AssociationOverviewBuilder) -> bool
fn eq(&self, other: &AssociationOverviewBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.