#[non_exhaustive]pub struct GetMaintenanceWindowExecutionTaskInvocationOutput { /* private fields */ }
Implementations
sourceimpl GetMaintenanceWindowExecutionTaskInvocationOutput
impl GetMaintenanceWindowExecutionTaskInvocationOutput
sourcepub fn window_execution_id(&self) -> Option<&str>
pub fn window_execution_id(&self) -> Option<&str>
The maintenance window execution ID.
sourcepub fn task_execution_id(&self) -> Option<&str>
pub fn task_execution_id(&self) -> Option<&str>
The task execution ID.
sourcepub fn invocation_id(&self) -> Option<&str>
pub fn invocation_id(&self) -> Option<&str>
The invocation ID.
sourcepub fn execution_id(&self) -> Option<&str>
pub fn execution_id(&self) -> Option<&str>
The execution ID.
sourcepub fn task_type(&self) -> Option<&MaintenanceWindowTaskType>
pub fn task_type(&self) -> Option<&MaintenanceWindowTaskType>
Retrieves the task type for a maintenance window.
sourcepub fn parameters(&self) -> Option<&str>
pub fn parameters(&self) -> Option<&str>
The parameters used at the time that the task ran.
sourcepub fn status(&self) -> Option<&MaintenanceWindowExecutionStatus>
pub fn status(&self) -> Option<&MaintenanceWindowExecutionStatus>
The task status for an invocation.
sourcepub fn status_details(&self) -> Option<&str>
pub fn status_details(&self) -> Option<&str>
The details explaining the status. Details are only available for certain status values.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The time that the task started running on the target.
sourcepub fn end_time(&self) -> Option<&DateTime>
pub fn end_time(&self) -> Option<&DateTime>
The time that the task finished running on the target.
sourcepub fn owner_information(&self) -> Option<&str>
pub fn owner_information(&self) -> Option<&str>
User-provided value to be included in any Amazon CloudWatch Events or Amazon EventBridge events raised while running tasks for these targets in this maintenance window.
sourcepub fn window_target_id(&self) -> Option<&str>
pub fn window_target_id(&self) -> Option<&str>
The maintenance window target ID.
sourceimpl GetMaintenanceWindowExecutionTaskInvocationOutput
impl GetMaintenanceWindowExecutionTaskInvocationOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetMaintenanceWindowExecutionTaskInvocationOutput
.
Trait Implementations
sourceimpl Clone for GetMaintenanceWindowExecutionTaskInvocationOutput
impl Clone for GetMaintenanceWindowExecutionTaskInvocationOutput
sourcefn clone(&self) -> GetMaintenanceWindowExecutionTaskInvocationOutput
fn clone(&self) -> GetMaintenanceWindowExecutionTaskInvocationOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl PartialEq<GetMaintenanceWindowExecutionTaskInvocationOutput> for GetMaintenanceWindowExecutionTaskInvocationOutput
impl PartialEq<GetMaintenanceWindowExecutionTaskInvocationOutput> for GetMaintenanceWindowExecutionTaskInvocationOutput
sourcefn eq(&self, other: &GetMaintenanceWindowExecutionTaskInvocationOutput) -> bool
fn eq(&self, other: &GetMaintenanceWindowExecutionTaskInvocationOutput) -> bool
impl StructuralPartialEq for GetMaintenanceWindowExecutionTaskInvocationOutput
Auto Trait Implementations
impl RefUnwindSafe for GetMaintenanceWindowExecutionTaskInvocationOutput
impl Send for GetMaintenanceWindowExecutionTaskInvocationOutput
impl Sync for GetMaintenanceWindowExecutionTaskInvocationOutput
impl Unpin for GetMaintenanceWindowExecutionTaskInvocationOutput
impl UnwindSafe for GetMaintenanceWindowExecutionTaskInvocationOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more