Struct aws_sdk_ssm::operation::get_maintenance_window_execution_task_invocation::GetMaintenanceWindowExecutionTaskInvocationOutput
source · #[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>,
/* private fields */
}
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§
source§impl 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.
source§impl GetMaintenanceWindowExecutionTaskInvocationOutput
impl GetMaintenanceWindowExecutionTaskInvocationOutput
sourcepub fn builder() -> GetMaintenanceWindowExecutionTaskInvocationOutputBuilder
pub fn builder() -> GetMaintenanceWindowExecutionTaskInvocationOutputBuilder
Creates a new builder-style object to manufacture GetMaintenanceWindowExecutionTaskInvocationOutput
.
Trait Implementations§
source§impl Clone for GetMaintenanceWindowExecutionTaskInvocationOutput
impl Clone for GetMaintenanceWindowExecutionTaskInvocationOutput
source§fn clone(&self) -> GetMaintenanceWindowExecutionTaskInvocationOutput
fn clone(&self) -> GetMaintenanceWindowExecutionTaskInvocationOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GetMaintenanceWindowExecutionTaskInvocationOutput
impl PartialEq for GetMaintenanceWindowExecutionTaskInvocationOutput
source§fn eq(&self, other: &GetMaintenanceWindowExecutionTaskInvocationOutput) -> bool
fn eq(&self, other: &GetMaintenanceWindowExecutionTaskInvocationOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetMaintenanceWindowExecutionTaskInvocationOutput
impl RequestId for GetMaintenanceWindowExecutionTaskInvocationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetMaintenanceWindowExecutionTaskInvocationOutput
Auto Trait Implementations§
impl Freeze for GetMaintenanceWindowExecutionTaskInvocationOutput
impl RefUnwindSafe for GetMaintenanceWindowExecutionTaskInvocationOutput
impl Send for GetMaintenanceWindowExecutionTaskInvocationOutput
impl Sync for GetMaintenanceWindowExecutionTaskInvocationOutput
impl Unpin for GetMaintenanceWindowExecutionTaskInvocationOutput
impl UnwindSafe for GetMaintenanceWindowExecutionTaskInvocationOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more