Struct aws_sdk_ssm::types::AssociationExecution
source · #[non_exhaustive]pub struct AssociationExecution {
pub association_id: Option<String>,
pub association_version: Option<String>,
pub execution_id: Option<String>,
pub status: Option<String>,
pub detailed_status: Option<String>,
pub created_time: Option<DateTime>,
pub last_execution_date: Option<DateTime>,
pub resource_count_by_status: Option<String>,
pub alarm_configuration: Option<AlarmConfiguration>,
pub triggered_alarms: Option<Vec<AlarmStateInformation>>,
}
Expand description
Includes information about the specified 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.association_id: Option<String>
The association ID.
association_version: Option<String>
The association version.
execution_id: Option<String>
The execution ID for the association.
status: Option<String>
The status of the association execution.
detailed_status: Option<String>
Detailed status information about the execution.
created_time: Option<DateTime>
The time the execution started.
last_execution_date: Option<DateTime>
The date of the last execution.
resource_count_by_status: Option<String>
An aggregate status of the resources in the execution based on the status type.
alarm_configuration: Option<AlarmConfiguration>
The details for the CloudWatch alarm you want to apply to an automation or command.
triggered_alarms: Option<Vec<AlarmStateInformation>>
The CloudWatch alarms that were invoked by the 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) -> &[AlarmStateInformation]
pub fn triggered_alarms(&self) -> &[AlarmStateInformation]
The CloudWatch alarms that were invoked by the association.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .triggered_alarms.is_none()
.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AssociationExecution
impl Debug for AssociationExecution
source§impl PartialEq for AssociationExecution
impl PartialEq for AssociationExecution
source§fn eq(&self, other: &AssociationExecution) -> bool
fn eq(&self, other: &AssociationExecution) -> bool
self
and other
values to be equal, and is used
by ==
.