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
impl StructuralPartialEq for AssociationOverviewBuilder
Auto Trait Implementations§
impl Freeze for AssociationOverviewBuilder
impl RefUnwindSafe for AssociationOverviewBuilder
impl Send for AssociationOverviewBuilder
impl Sync for AssociationOverviewBuilder
impl Unpin for AssociationOverviewBuilder
impl UnwindSafe for AssociationOverviewBuilder
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