pub struct MaintenanceWindowExecutionTaskIdentity {
pub end_time: Option<f64>,
pub start_time: Option<f64>,
pub status: Option<String>,
pub status_details: Option<String>,
pub task_arn: Option<String>,
pub task_execution_id: Option<String>,
pub task_type: Option<String>,
pub window_execution_id: Option<String>,
}Expand description
Information about a task execution performed as part of a maintenance window execution.
Fields§
§end_time: Option<f64>The time the task execution finished.
start_time: Option<f64>The time the task execution started.
status: Option<String>The status of the task execution.
status_details: Option<String>The details explaining the status of the task execution. Only available for certain status values.
task_arn: Option<String>The ARN of the task that ran.
task_execution_id: Option<String>The ID of the specific task execution in the maintenance window execution.
task_type: Option<String>The type of task that ran.
window_execution_id: Option<String>The ID of the maintenance window execution that ran the task.
Trait Implementations§
Source§impl Clone for MaintenanceWindowExecutionTaskIdentity
impl Clone for MaintenanceWindowExecutionTaskIdentity
Source§fn clone(&self) -> MaintenanceWindowExecutionTaskIdentity
fn clone(&self) -> MaintenanceWindowExecutionTaskIdentity
Returns a duplicate 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 Default for MaintenanceWindowExecutionTaskIdentity
impl Default for MaintenanceWindowExecutionTaskIdentity
Source§fn default() -> MaintenanceWindowExecutionTaskIdentity
fn default() -> MaintenanceWindowExecutionTaskIdentity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MaintenanceWindowExecutionTaskIdentity
impl<'de> Deserialize<'de> for MaintenanceWindowExecutionTaskIdentity
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MaintenanceWindowExecutionTaskIdentity
impl PartialEq for MaintenanceWindowExecutionTaskIdentity
Source§fn eq(&self, other: &MaintenanceWindowExecutionTaskIdentity) -> bool
fn eq(&self, other: &MaintenanceWindowExecutionTaskIdentity) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MaintenanceWindowExecutionTaskIdentity
Auto Trait Implementations§
impl Freeze for MaintenanceWindowExecutionTaskIdentity
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