#[non_exhaustive]pub struct GetMaintenanceWindowExecutionTaskInvocationOutput {
pub window_execution_id: Option<String>,
pub task_execution_id: Option<String>,
pub invocation_id: Option<String>,
pub execution_id: Option<String>,
pub task_type: Option<MaintenanceWindowTaskType>,
pub parameters: Option<String>,
pub status: Option<MaintenanceWindowExecutionStatus>,
pub status_details: Option<String>,
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub owner_information: Option<String>,
pub window_target_id: Option<String>,
}
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.window_execution_id: Option<String>
The maintenance window execution ID.
task_execution_id: Option<String>
The task execution ID.
invocation_id: Option<String>
The invocation ID.
execution_id: Option<String>
The execution ID.
task_type: Option<MaintenanceWindowTaskType>
Retrieves the task type for a maintenance window.
parameters: Option<String>
The parameters used at the time that the task ran.
status: Option<MaintenanceWindowExecutionStatus>
The task status for an invocation.
status_details: Option<String>
The details explaining the status. Details are only available for certain status values.
start_time: Option<DateTime>
The time that the task started running on the target.
end_time: Option<DateTime>
The time that the task finished running on the target.
owner_information: Option<String>
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.
window_target_id: Option<String>
The maintenance window target ID.
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 more
sourceimpl PartialEq<GetMaintenanceWindowExecutionTaskInvocationOutput> for GetMaintenanceWindowExecutionTaskInvocationOutput
impl PartialEq<GetMaintenanceWindowExecutionTaskInvocationOutput> for GetMaintenanceWindowExecutionTaskInvocationOutput
sourcefn eq(&self, other: &GetMaintenanceWindowExecutionTaskInvocationOutput) -> bool
fn eq(&self, other: &GetMaintenanceWindowExecutionTaskInvocationOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GetMaintenanceWindowExecutionTaskInvocationOutput) -> bool
fn ne(&self, other: &GetMaintenanceWindowExecutionTaskInvocationOutput) -> bool
This method tests for !=
.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more