pub struct GetExperimentFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to GetExperiment.
Returns the details about one experiment. You must already know the experiment name. To retrieve a list of experiments in your account, use ListExperiments.
Implementations§
source§impl GetExperimentFluentBuilder
impl GetExperimentFluentBuilder
sourcepub fn as_input(&self) -> &GetExperimentInputBuilder
pub fn as_input(&self) -> &GetExperimentInputBuilder
Access the GetExperiment as a reference.
sourcepub async fn send(
self
) -> Result<GetExperimentOutput, SdkError<GetExperimentError, HttpResponse>>
pub async fn send( self ) -> Result<GetExperimentOutput, SdkError<GetExperimentError, 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<GetExperimentOutput, GetExperimentError>, SdkError<GetExperimentError>>
pub async fn customize( self ) -> Result<CustomizableOperation<GetExperimentOutput, GetExperimentError>, SdkError<GetExperimentError>>
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.
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.
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.
sourcepub fn experiment(self, input: impl Into<String>) -> Self
pub fn experiment(self, input: impl Into<String>) -> Self
The name of the experiment that you want to see the details of.
sourcepub fn set_experiment(self, input: Option<String>) -> Self
pub fn set_experiment(self, input: Option<String>) -> Self
The name of the experiment that you want to see the details of.
sourcepub fn get_experiment(&self) -> &Option<String>
pub fn get_experiment(&self) -> &Option<String>
The name of the experiment that you want to see the details of.
Trait Implementations§
source§impl Clone for GetExperimentFluentBuilder
impl Clone for GetExperimentFluentBuilder
source§fn clone(&self) -> GetExperimentFluentBuilder
fn clone(&self) -> GetExperimentFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more