#[non_exhaustive]pub struct MaintenanceWindowTaskInvocationParametersBuilder { /* private fields */ }Expand description
A builder for MaintenanceWindowTaskInvocationParameters.
Implementations§
source§impl MaintenanceWindowTaskInvocationParametersBuilder
impl MaintenanceWindowTaskInvocationParametersBuilder
sourcepub fn run_command(self, input: MaintenanceWindowRunCommandParameters) -> Self
pub fn run_command(self, input: MaintenanceWindowRunCommandParameters) -> Self
The parameters for a RUN_COMMAND task type.
sourcepub fn set_run_command(
self,
input: Option<MaintenanceWindowRunCommandParameters>
) -> Self
pub fn set_run_command( self, input: Option<MaintenanceWindowRunCommandParameters> ) -> Self
The parameters for a RUN_COMMAND task type.
sourcepub fn automation(self, input: MaintenanceWindowAutomationParameters) -> Self
pub fn automation(self, input: MaintenanceWindowAutomationParameters) -> Self
The parameters for an AUTOMATION task type.
sourcepub fn set_automation(
self,
input: Option<MaintenanceWindowAutomationParameters>
) -> Self
pub fn set_automation( self, input: Option<MaintenanceWindowAutomationParameters> ) -> Self
The parameters for an AUTOMATION task type.
sourcepub fn step_functions(
self,
input: MaintenanceWindowStepFunctionsParameters
) -> Self
pub fn step_functions( self, input: MaintenanceWindowStepFunctionsParameters ) -> Self
The parameters for a STEP_FUNCTIONS task type.
sourcepub fn set_step_functions(
self,
input: Option<MaintenanceWindowStepFunctionsParameters>
) -> Self
pub fn set_step_functions( self, input: Option<MaintenanceWindowStepFunctionsParameters> ) -> Self
The parameters for a STEP_FUNCTIONS task type.
sourcepub fn lambda(self, input: MaintenanceWindowLambdaParameters) -> Self
pub fn lambda(self, input: MaintenanceWindowLambdaParameters) -> Self
The parameters for a LAMBDA task type.
sourcepub fn set_lambda(
self,
input: Option<MaintenanceWindowLambdaParameters>
) -> Self
pub fn set_lambda( self, input: Option<MaintenanceWindowLambdaParameters> ) -> Self
The parameters for a LAMBDA task type.
sourcepub fn build(self) -> MaintenanceWindowTaskInvocationParameters
pub fn build(self) -> MaintenanceWindowTaskInvocationParameters
Consumes the builder and constructs a MaintenanceWindowTaskInvocationParameters.
Trait Implementations§
source§impl Clone for MaintenanceWindowTaskInvocationParametersBuilder
impl Clone for MaintenanceWindowTaskInvocationParametersBuilder
source§fn clone(&self) -> MaintenanceWindowTaskInvocationParametersBuilder
fn clone(&self) -> MaintenanceWindowTaskInvocationParametersBuilder
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 Default for MaintenanceWindowTaskInvocationParametersBuilder
impl Default for MaintenanceWindowTaskInvocationParametersBuilder
source§fn default() -> MaintenanceWindowTaskInvocationParametersBuilder
fn default() -> MaintenanceWindowTaskInvocationParametersBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<MaintenanceWindowTaskInvocationParametersBuilder> for MaintenanceWindowTaskInvocationParametersBuilder
impl PartialEq<MaintenanceWindowTaskInvocationParametersBuilder> for MaintenanceWindowTaskInvocationParametersBuilder
source§fn eq(&self, other: &MaintenanceWindowTaskInvocationParametersBuilder) -> bool
fn eq(&self, other: &MaintenanceWindowTaskInvocationParametersBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.