Struct aws_sdk_ssm::types::MaintenanceWindowExecution
source · #[non_exhaustive]pub struct MaintenanceWindowExecution {
pub window_id: Option<String>,
pub window_execution_id: Option<String>,
pub status: Option<MaintenanceWindowExecutionStatus>,
pub status_details: Option<String>,
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
}
Expand description
Describes the information about an execution of a maintenance window.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.window_id: Option<String>
The ID of the maintenance window.
window_execution_id: Option<String>
The ID of the maintenance window execution.
status: Option<MaintenanceWindowExecutionStatus>
The status of the execution.
status_details: Option<String>
The details explaining the status. Not available for all status values.
start_time: Option<DateTime>
The time the execution started.
end_time: Option<DateTime>
The time the execution finished.
Implementations§
source§impl MaintenanceWindowExecution
impl MaintenanceWindowExecution
sourcepub fn window_execution_id(&self) -> Option<&str>
pub fn window_execution_id(&self) -> Option<&str>
The ID of the maintenance window execution.
sourcepub fn status(&self) -> Option<&MaintenanceWindowExecutionStatus>
pub fn status(&self) -> Option<&MaintenanceWindowExecutionStatus>
The status of the execution.
sourcepub fn status_details(&self) -> Option<&str>
pub fn status_details(&self) -> Option<&str>
The details explaining the status. Not available for all status values.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The time the execution started.
source§impl MaintenanceWindowExecution
impl MaintenanceWindowExecution
sourcepub fn builder() -> MaintenanceWindowExecutionBuilder
pub fn builder() -> MaintenanceWindowExecutionBuilder
Creates a new builder-style object to manufacture MaintenanceWindowExecution
.
Trait Implementations§
source§impl Clone for MaintenanceWindowExecution
impl Clone for MaintenanceWindowExecution
source§fn clone(&self) -> MaintenanceWindowExecution
fn clone(&self) -> MaintenanceWindowExecution
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 MaintenanceWindowExecution
impl Debug for MaintenanceWindowExecution
source§impl PartialEq for MaintenanceWindowExecution
impl PartialEq for MaintenanceWindowExecution
source§fn eq(&self, other: &MaintenanceWindowExecution) -> bool
fn eq(&self, other: &MaintenanceWindowExecution) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MaintenanceWindowExecution
Auto Trait Implementations§
impl RefUnwindSafe for MaintenanceWindowExecution
impl Send for MaintenanceWindowExecution
impl Sync for MaintenanceWindowExecution
impl Unpin for MaintenanceWindowExecution
impl UnwindSafe for MaintenanceWindowExecution
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