Struct aws_sdk_evidently::client::fluent_builders::UpdateLaunch
source · pub struct UpdateLaunch { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateLaunch.
Updates a launch of a given feature.
Don't use this operation to update the tags of an existing launch. Instead, use TagResource.
Implementations§
source§impl UpdateLaunch
impl UpdateLaunch
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateLaunch, AwsResponseRetryClassifier>, SdkError<UpdateLaunchError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateLaunch, AwsResponseRetryClassifier>, SdkError<UpdateLaunchError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateLaunchOutput, SdkError<UpdateLaunchError>>
pub async fn send(
self
) -> Result<UpdateLaunchOutput, SdkError<UpdateLaunchError>>
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 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 launch that you want to update.
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 launch that you want to update.
sourcepub fn launch(self, input: impl Into<String>) -> Self
pub fn launch(self, input: impl Into<String>) -> Self
The name of the launch that is to be updated.
sourcepub fn set_launch(self, input: Option<String>) -> Self
pub fn set_launch(self, input: Option<String>) -> Self
The name of the launch that is to be updated.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
An optional description for the launch.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
An optional description for the launch.
sourcepub fn groups(self, input: LaunchGroupConfig) -> Self
pub fn groups(self, input: LaunchGroupConfig) -> Self
Appends an item to groups.
To override the contents of this collection use set_groups.
An array of structures that contains the feature and variations that are to be used for the launch.
sourcepub fn set_groups(self, input: Option<Vec<LaunchGroupConfig>>) -> Self
pub fn set_groups(self, input: Option<Vec<LaunchGroupConfig>>) -> Self
An array of structures that contains the feature and variations that are to be used for the launch.
sourcepub fn metric_monitors(self, input: MetricMonitorConfig) -> Self
pub fn metric_monitors(self, input: MetricMonitorConfig) -> Self
Appends an item to metricMonitors.
To override the contents of this collection use set_metric_monitors.
An array of structures that define the metrics that will be used to monitor the launch performance.
sourcepub fn set_metric_monitors(self, input: Option<Vec<MetricMonitorConfig>>) -> Self
pub fn set_metric_monitors(self, input: Option<Vec<MetricMonitorConfig>>) -> Self
An array of structures that define the metrics that will be used to monitor the launch performance.
sourcepub fn randomization_salt(self, input: impl Into<String>) -> Self
pub fn randomization_salt(self, input: impl Into<String>) -> Self
When Evidently assigns a particular user session to a launch, it must use a randomization ID to determine which variation the user session is served. This randomization ID is a combination of the entity ID and randomizationSalt. If you omit randomizationSalt, Evidently uses the launch name as the randomizationSalt.
sourcepub fn set_randomization_salt(self, input: Option<String>) -> Self
pub fn set_randomization_salt(self, input: Option<String>) -> Self
When Evidently assigns a particular user session to a launch, it must use a randomization ID to determine which variation the user session is served. This randomization ID is a combination of the entity ID and randomizationSalt. If you omit randomizationSalt, Evidently uses the launch name as the randomizationSalt.
sourcepub fn scheduled_splits_config(self, input: ScheduledSplitsLaunchConfig) -> Self
pub fn scheduled_splits_config(self, input: ScheduledSplitsLaunchConfig) -> Self
An array of structures that define the traffic allocation percentages among the feature variations during each step of the launch.
sourcepub fn set_scheduled_splits_config(
self,
input: Option<ScheduledSplitsLaunchConfig>
) -> Self
pub fn set_scheduled_splits_config(
self,
input: Option<ScheduledSplitsLaunchConfig>
) -> Self
An array of structures that define the traffic allocation percentages among the feature variations during each step of the launch.
Trait Implementations§
source§impl Clone for UpdateLaunch
impl Clone for UpdateLaunch
source§fn clone(&self) -> UpdateLaunch
fn clone(&self) -> UpdateLaunch
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more