Struct aws_sdk_evidently::operation::start_experiment::builders::StartExperimentInputBuilder
source · #[non_exhaustive]pub struct StartExperimentInputBuilder { /* private fields */ }Expand description
A builder for StartExperimentInput.
Implementations§
source§impl StartExperimentInputBuilder
impl StartExperimentInputBuilder
sourcepub fn project(self, input: impl Into<String>) -> Self
pub fn project(self, input: impl Into<String>) -> Self
The name or ARN of the project that contains the experiment to start.
This field is required.sourcepub fn set_project(self, input: Option<String>) -> Self
pub fn set_project(self, input: Option<String>) -> Self
The name or ARN of the project that contains the experiment to start.
sourcepub fn get_project(&self) -> &Option<String>
pub fn get_project(&self) -> &Option<String>
The name or ARN of the project that contains the experiment to start.
sourcepub fn experiment(self, input: impl Into<String>) -> Self
pub fn experiment(self, input: impl Into<String>) -> Self
The name of the experiment to start.
This field is required.sourcepub fn set_experiment(self, input: Option<String>) -> Self
pub fn set_experiment(self, input: Option<String>) -> Self
The name of the experiment to start.
sourcepub fn get_experiment(&self) -> &Option<String>
pub fn get_experiment(&self) -> &Option<String>
The name of the experiment to start.
sourcepub fn analysis_complete_time(self, input: DateTime) -> Self
pub fn analysis_complete_time(self, input: DateTime) -> Self
The date and time to end the experiment. This must be no more than 30 days after the experiment starts.
This field is required.sourcepub fn set_analysis_complete_time(self, input: Option<DateTime>) -> Self
pub fn set_analysis_complete_time(self, input: Option<DateTime>) -> Self
The date and time to end the experiment. This must be no more than 30 days after the experiment starts.
sourcepub fn get_analysis_complete_time(&self) -> &Option<DateTime>
pub fn get_analysis_complete_time(&self) -> &Option<DateTime>
The date and time to end the experiment. This must be no more than 30 days after the experiment starts.
sourcepub fn build(self) -> Result<StartExperimentInput, BuildError>
pub fn build(self) -> Result<StartExperimentInput, BuildError>
Consumes the builder and constructs a StartExperimentInput.
source§impl StartExperimentInputBuilder
impl StartExperimentInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<StartExperimentOutput, SdkError<StartExperimentError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<StartExperimentOutput, SdkError<StartExperimentError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for StartExperimentInputBuilder
impl Clone for StartExperimentInputBuilder
source§fn clone(&self) -> StartExperimentInputBuilder
fn clone(&self) -> StartExperimentInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StartExperimentInputBuilder
impl Debug for StartExperimentInputBuilder
source§impl Default for StartExperimentInputBuilder
impl Default for StartExperimentInputBuilder
source§fn default() -> StartExperimentInputBuilder
fn default() -> StartExperimentInputBuilder
source§impl PartialEq for StartExperimentInputBuilder
impl PartialEq for StartExperimentInputBuilder
source§fn eq(&self, other: &StartExperimentInputBuilder) -> bool
fn eq(&self, other: &StartExperimentInputBuilder) -> bool
self and other values to be equal, and is used
by ==.