#[non_exhaustive]pub struct UpdateExperimentTemplateActionInputItemBuilder { /* private fields */ }Expand description
A builder for UpdateExperimentTemplateActionInputItem.
Implementations§
source§impl UpdateExperimentTemplateActionInputItemBuilder
impl UpdateExperimentTemplateActionInputItemBuilder
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
A description for the action.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description for the action.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A 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, if applicable.
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, if applicable.
sourcepub fn get_parameters(&self) -> &Option<HashMap<String, String>>
pub fn get_parameters(&self) -> &Option<HashMap<String, String>>
The parameters for the action, if applicable.
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 the current action starts. Omit this parameter to run the action at the start of the experiment.
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 the current action starts. Omit this parameter to run the action at the start of the experiment.
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 the current action starts. Omit this parameter to run the action at the start of the experiment.
sourcepub fn build(self) -> UpdateExperimentTemplateActionInputItem
pub fn build(self) -> UpdateExperimentTemplateActionInputItem
Consumes the builder and constructs a UpdateExperimentTemplateActionInputItem.
Trait Implementations§
source§impl Clone for UpdateExperimentTemplateActionInputItemBuilder
impl Clone for UpdateExperimentTemplateActionInputItemBuilder
source§fn clone(&self) -> UpdateExperimentTemplateActionInputItemBuilder
fn clone(&self) -> UpdateExperimentTemplateActionInputItemBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateExperimentTemplateActionInputItemBuilder
impl Default for UpdateExperimentTemplateActionInputItemBuilder
source§fn default() -> UpdateExperimentTemplateActionInputItemBuilder
fn default() -> UpdateExperimentTemplateActionInputItemBuilder
source§impl PartialEq for UpdateExperimentTemplateActionInputItemBuilder
impl PartialEq for UpdateExperimentTemplateActionInputItemBuilder
source§fn eq(&self, other: &UpdateExperimentTemplateActionInputItemBuilder) -> bool
fn eq(&self, other: &UpdateExperimentTemplateActionInputItemBuilder) -> bool
self and other values to be equal, and is used
by ==.