Struct aws_sdk_ssm::operation::get_maintenance_window_execution_task_invocation::builders::GetMaintenanceWindowExecutionTaskInvocationInputBuilder
source · #[non_exhaustive]pub struct GetMaintenanceWindowExecutionTaskInvocationInputBuilder { /* private fields */ }
Expand description
A builder for GetMaintenanceWindowExecutionTaskInvocationInput
.
Implementations§
source§impl GetMaintenanceWindowExecutionTaskInvocationInputBuilder
impl GetMaintenanceWindowExecutionTaskInvocationInputBuilder
sourcepub fn window_execution_id(self, input: impl Into<String>) -> Self
pub fn window_execution_id(self, input: impl Into<String>) -> Self
The ID of the maintenance window execution for which the task is a part.
This field is required.sourcepub fn set_window_execution_id(self, input: Option<String>) -> Self
pub fn set_window_execution_id(self, input: Option<String>) -> Self
The ID of the maintenance window execution for which the task is a part.
sourcepub fn get_window_execution_id(&self) -> &Option<String>
pub fn get_window_execution_id(&self) -> &Option<String>
The ID of the maintenance window execution for which the task is a part.
sourcepub fn task_id(self, input: impl Into<String>) -> Self
pub fn task_id(self, input: impl Into<String>) -> Self
The ID of the specific task in the maintenance window task that should be retrieved.
This field is required.sourcepub fn set_task_id(self, input: Option<String>) -> Self
pub fn set_task_id(self, input: Option<String>) -> Self
The ID of the specific task in the maintenance window task that should be retrieved.
sourcepub fn get_task_id(&self) -> &Option<String>
pub fn get_task_id(&self) -> &Option<String>
The ID of the specific task in the maintenance window task that should be retrieved.
sourcepub fn invocation_id(self, input: impl Into<String>) -> Self
pub fn invocation_id(self, input: impl Into<String>) -> Self
The invocation ID to retrieve.
This field is required.sourcepub fn set_invocation_id(self, input: Option<String>) -> Self
pub fn set_invocation_id(self, input: Option<String>) -> Self
The invocation ID to retrieve.
sourcepub fn get_invocation_id(&self) -> &Option<String>
pub fn get_invocation_id(&self) -> &Option<String>
The invocation ID to retrieve.
sourcepub fn build(
self
) -> Result<GetMaintenanceWindowExecutionTaskInvocationInput, BuildError>
pub fn build( self ) -> Result<GetMaintenanceWindowExecutionTaskInvocationInput, BuildError>
Consumes the builder and constructs a GetMaintenanceWindowExecutionTaskInvocationInput
.
source§impl GetMaintenanceWindowExecutionTaskInvocationInputBuilder
impl GetMaintenanceWindowExecutionTaskInvocationInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetMaintenanceWindowExecutionTaskInvocationOutput, SdkError<GetMaintenanceWindowExecutionTaskInvocationError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetMaintenanceWindowExecutionTaskInvocationOutput, SdkError<GetMaintenanceWindowExecutionTaskInvocationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetMaintenanceWindowExecutionTaskInvocationInputBuilder
impl Clone for GetMaintenanceWindowExecutionTaskInvocationInputBuilder
source§fn clone(&self) -> GetMaintenanceWindowExecutionTaskInvocationInputBuilder
fn clone(&self) -> GetMaintenanceWindowExecutionTaskInvocationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetMaintenanceWindowExecutionTaskInvocationInputBuilder
impl Default for GetMaintenanceWindowExecutionTaskInvocationInputBuilder
source§fn default() -> GetMaintenanceWindowExecutionTaskInvocationInputBuilder
fn default() -> GetMaintenanceWindowExecutionTaskInvocationInputBuilder
source§impl PartialEq for GetMaintenanceWindowExecutionTaskInvocationInputBuilder
impl PartialEq for GetMaintenanceWindowExecutionTaskInvocationInputBuilder
source§fn eq(
&self,
other: &GetMaintenanceWindowExecutionTaskInvocationInputBuilder
) -> bool
fn eq( &self, other: &GetMaintenanceWindowExecutionTaskInvocationInputBuilder ) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetMaintenanceWindowExecutionTaskInvocationInputBuilder
Auto Trait Implementations§
impl Freeze for GetMaintenanceWindowExecutionTaskInvocationInputBuilder
impl RefUnwindSafe for GetMaintenanceWindowExecutionTaskInvocationInputBuilder
impl Send for GetMaintenanceWindowExecutionTaskInvocationInputBuilder
impl Sync for GetMaintenanceWindowExecutionTaskInvocationInputBuilder
impl Unpin for GetMaintenanceWindowExecutionTaskInvocationInputBuilder
impl UnwindSafe for GetMaintenanceWindowExecutionTaskInvocationInputBuilder
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