Struct aws_sdk_evidently::operation::start_experiment::builders::StartExperimentFluentBuilder
source · pub struct StartExperimentFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to StartExperiment.
Starts an existing experiment. To create an experiment, use CreateExperiment.
Implementations§
source§impl StartExperimentFluentBuilder
impl StartExperimentFluentBuilder
sourcepub fn as_input(&self) -> &StartExperimentInputBuilder
pub fn as_input(&self) -> &StartExperimentInputBuilder
Access the StartExperiment as a reference.
sourcepub async fn send(
self
) -> Result<StartExperimentOutput, SdkError<StartExperimentError, HttpResponse>>
pub async fn send( self ) -> Result<StartExperimentOutput, SdkError<StartExperimentError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<StartExperimentOutput, StartExperimentError>, SdkError<StartExperimentError>>
pub async fn customize( self ) -> Result<CustomizableOperation<StartExperimentOutput, StartExperimentError>, SdkError<StartExperimentError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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.
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.
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.
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.
Trait Implementations§
source§impl Clone for StartExperimentFluentBuilder
impl Clone for StartExperimentFluentBuilder
source§fn clone(&self) -> StartExperimentFluentBuilder
fn clone(&self) -> StartExperimentFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more