#[non_exhaustive]pub struct MaintenanceWindowExecutionTaskIdentity { /* private fields */ }
Expand description
Information about a task execution performed as part of a maintenance window execution.
Implementations§
source§impl MaintenanceWindowExecutionTaskIdentity
impl MaintenanceWindowExecutionTaskIdentity
sourcepub fn window_execution_id(&self) -> Option<&str>
pub fn window_execution_id(&self) -> Option<&str>
The ID of the maintenance window execution that ran the task.
sourcepub fn task_execution_id(&self) -> Option<&str>
pub fn task_execution_id(&self) -> Option<&str>
The ID of the specific task execution in the maintenance window execution.
sourcepub fn status(&self) -> Option<&MaintenanceWindowExecutionStatus>
pub fn status(&self) -> Option<&MaintenanceWindowExecutionStatus>
The status of the task execution.
sourcepub fn status_details(&self) -> Option<&str>
pub fn status_details(&self) -> Option<&str>
The details explaining the status of the task execution. Not available for all status values.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The time the task execution started.
sourcepub fn task_type(&self) -> Option<&MaintenanceWindowTaskType>
pub fn task_type(&self) -> Option<&MaintenanceWindowTaskType>
The type of task that ran.
sourcepub fn alarm_configuration(&self) -> Option<&AlarmConfiguration>
pub fn alarm_configuration(&self) -> Option<&AlarmConfiguration>
The details for the CloudWatch alarm applied to your maintenance window task.
sourcepub fn triggered_alarms(&self) -> Option<&[AlarmStateInformation]>
pub fn triggered_alarms(&self) -> Option<&[AlarmStateInformation]>
The CloudWatch alarm that was invoked by the maintenance window task.
source§impl MaintenanceWindowExecutionTaskIdentity
impl MaintenanceWindowExecutionTaskIdentity
sourcepub fn builder() -> MaintenanceWindowExecutionTaskIdentityBuilder
pub fn builder() -> MaintenanceWindowExecutionTaskIdentityBuilder
Creates a new builder-style object to manufacture MaintenanceWindowExecutionTaskIdentity
.
Trait Implementations§
source§impl Clone for MaintenanceWindowExecutionTaskIdentity
impl Clone for MaintenanceWindowExecutionTaskIdentity
source§fn clone(&self) -> MaintenanceWindowExecutionTaskIdentity
fn clone(&self) -> MaintenanceWindowExecutionTaskIdentity
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 PartialEq<MaintenanceWindowExecutionTaskIdentity> for MaintenanceWindowExecutionTaskIdentity
impl PartialEq<MaintenanceWindowExecutionTaskIdentity> for MaintenanceWindowExecutionTaskIdentity
source§fn eq(&self, other: &MaintenanceWindowExecutionTaskIdentity) -> bool
fn eq(&self, other: &MaintenanceWindowExecutionTaskIdentity) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MaintenanceWindowExecutionTaskIdentity
Auto Trait Implementations§
impl RefUnwindSafe for MaintenanceWindowExecutionTaskIdentity
impl Send for MaintenanceWindowExecutionTaskIdentity
impl Sync for MaintenanceWindowExecutionTaskIdentity
impl Unpin for MaintenanceWindowExecutionTaskIdentity
impl UnwindSafe for MaintenanceWindowExecutionTaskIdentity
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