Struct aws_sdk_fis::types::builders::ExperimentActionBuilder
source · #[non_exhaustive]pub struct ExperimentActionBuilder { /* private fields */ }Expand description
A builder for ExperimentAction.
Implementations§
source§impl ExperimentActionBuilder
impl ExperimentActionBuilder
sourcepub fn set_action_id(self, input: Option<String>) -> Self
pub fn set_action_id(self, input: Option<String>) -> Self
The ID of the action.
sourcepub fn get_action_id(&self) -> &Option<String>
pub fn get_action_id(&self) -> &Option<String>
The ID of the action.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description for the action.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description for the action.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description for the action.
sourcepub fn parameters(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn parameters(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to parameters.
To override the contents of this collection use set_parameters.
The parameters for the action.
sourcepub fn set_parameters(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_parameters(self, input: Option<HashMap<String, String>>) -> Self
The parameters for the action.
sourcepub fn get_parameters(&self) -> &Option<HashMap<String, String>>
pub fn get_parameters(&self) -> &Option<HashMap<String, String>>
The parameters for the action.
sourcepub fn targets(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn targets(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to targets.
To override the contents of this collection use set_targets.
The targets for the action.
sourcepub fn set_targets(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_targets(self, input: Option<HashMap<String, String>>) -> Self
The targets for the action.
sourcepub fn start_after(self, input: impl Into<String>) -> Self
pub fn start_after(self, input: impl Into<String>) -> Self
Appends an item to start_after.
To override the contents of this collection use set_start_after.
The name of the action that must be completed before this action starts.
sourcepub fn set_start_after(self, input: Option<Vec<String>>) -> Self
pub fn set_start_after(self, input: Option<Vec<String>>) -> Self
The name of the action that must be completed before this action starts.
sourcepub fn get_start_after(&self) -> &Option<Vec<String>>
pub fn get_start_after(&self) -> &Option<Vec<String>>
The name of the action that must be completed before this action starts.
sourcepub fn state(self, input: ExperimentActionState) -> Self
pub fn state(self, input: ExperimentActionState) -> Self
The state of the action.
sourcepub fn set_state(self, input: Option<ExperimentActionState>) -> Self
pub fn set_state(self, input: Option<ExperimentActionState>) -> Self
The state of the action.
sourcepub fn get_state(&self) -> &Option<ExperimentActionState>
pub fn get_state(&self) -> &Option<ExperimentActionState>
The state of the action.
sourcepub fn start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
The time that the action started.
sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
The time that the action started.
sourcepub fn get_start_time(&self) -> &Option<DateTime>
pub fn get_start_time(&self) -> &Option<DateTime>
The time that the action started.
sourcepub fn set_end_time(self, input: Option<DateTime>) -> Self
pub fn set_end_time(self, input: Option<DateTime>) -> Self
The time that the action ended.
sourcepub fn get_end_time(&self) -> &Option<DateTime>
pub fn get_end_time(&self) -> &Option<DateTime>
The time that the action ended.
sourcepub fn build(self) -> ExperimentAction
pub fn build(self) -> ExperimentAction
Consumes the builder and constructs a ExperimentAction.
Trait Implementations§
source§impl Clone for ExperimentActionBuilder
impl Clone for ExperimentActionBuilder
source§fn clone(&self) -> ExperimentActionBuilder
fn clone(&self) -> ExperimentActionBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ExperimentActionBuilder
impl Debug for ExperimentActionBuilder
source§impl Default for ExperimentActionBuilder
impl Default for ExperimentActionBuilder
source§fn default() -> ExperimentActionBuilder
fn default() -> ExperimentActionBuilder
source§impl PartialEq for ExperimentActionBuilder
impl PartialEq for ExperimentActionBuilder
source§fn eq(&self, other: &ExperimentActionBuilder) -> bool
fn eq(&self, other: &ExperimentActionBuilder) -> bool
self and other values to be equal, and is used
by ==.