Struct aws_sdk_ssm::types::AssociationExecution
source · #[non_exhaustive]pub struct AssociationExecution { /* private fields */ }
Expand description
Includes information about the specified association.
Implementations§
source§impl AssociationExecution
impl AssociationExecution
sourcepub fn association_id(&self) -> Option<&str>
pub fn association_id(&self) -> Option<&str>
The association ID.
sourcepub fn association_version(&self) -> Option<&str>
pub fn association_version(&self) -> Option<&str>
The association version.
sourcepub fn execution_id(&self) -> Option<&str>
pub fn execution_id(&self) -> Option<&str>
The execution ID for the association.
sourcepub fn detailed_status(&self) -> Option<&str>
pub fn detailed_status(&self) -> Option<&str>
Detailed status information about the execution.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
The time the execution started.
sourcepub fn last_execution_date(&self) -> Option<&DateTime>
pub fn last_execution_date(&self) -> Option<&DateTime>
The date of the last execution.
sourcepub fn resource_count_by_status(&self) -> Option<&str>
pub fn resource_count_by_status(&self) -> Option<&str>
An aggregate status of the resources in the execution based on the status type.
sourcepub fn alarm_configuration(&self) -> Option<&AlarmConfiguration>
pub fn alarm_configuration(&self) -> Option<&AlarmConfiguration>
The details for the CloudWatch alarm you want to apply to an automation or command.
sourcepub fn triggered_alarms(&self) -> Option<&[AlarmStateInformation]>
pub fn triggered_alarms(&self) -> Option<&[AlarmStateInformation]>
The CloudWatch alarms that were invoked by the association.
source§impl AssociationExecution
impl AssociationExecution
sourcepub fn builder() -> AssociationExecutionBuilder
pub fn builder() -> AssociationExecutionBuilder
Creates a new builder-style object to manufacture AssociationExecution
.
Trait Implementations§
source§impl Clone for AssociationExecution
impl Clone for AssociationExecution
source§fn clone(&self) -> AssociationExecution
fn clone(&self) -> AssociationExecution
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 AssociationExecution
impl Debug for AssociationExecution
source§impl PartialEq<AssociationExecution> for AssociationExecution
impl PartialEq<AssociationExecution> for AssociationExecution
source§fn eq(&self, other: &AssociationExecution) -> bool
fn eq(&self, other: &AssociationExecution) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AssociationExecution
Auto Trait Implementations§
impl RefUnwindSafe for AssociationExecution
impl Send for AssociationExecution
impl Sync for AssociationExecution
impl Unpin for AssociationExecution
impl UnwindSafe for AssociationExecution
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
Mutably borrows from an owned value. Read more