Struct aws_sdk_evidently::client::fluent_builders::CreateLaunch
source · [−]pub struct CreateLaunch<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* private fields */ }Expand description
Fluent builder constructing a request to CreateLaunch.
Creates a launch of a given feature. Before you create a launch, you must create the feature to use for the launch.
You can use a launch to safely validate new features by serving them to a specified percentage of your users while you roll out the feature. You can monitor the performance of the new feature to help you decide when to ramp up traffic to more users. This helps you reduce risk and identify unintended consequences before you fully launch the feature.
Don't use this operation to update an existing launch. Instead, use UpdateLaunch.
Implementations
impl<C, M, R> CreateLaunch<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> CreateLaunch<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<CreateLaunchOutput, SdkError<CreateLaunchError>> where
R::Policy: SmithyRetryPolicy<CreateLaunchInputOperationOutputAlias, CreateLaunchOutput, CreateLaunchError, CreateLaunchInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<CreateLaunchOutput, SdkError<CreateLaunchError>> where
R::Policy: SmithyRetryPolicy<CreateLaunchInputOperationOutputAlias, CreateLaunchOutput, CreateLaunchError, CreateLaunchInputOperationRetryAlias>,
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.
The name or ARN of the project that you want to create the launch in.
The name or ARN of the project that you want to create the launch in.
An optional description for the launch.
An optional description for the launch.
An array of structures that define the traffic allocation percentages among the feature variations during each step of the launch.
An array of structures that define the traffic allocation percentages among the feature variations during each step of the launch.
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.
An array of structures that define the metrics that will be used to monitor the launch performance.
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.
An array of structures that contains the feature and variations that are to be used for the launch.
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 randomizationsSalt.
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 randomizationsSalt.
Adds a key-value pair to tags.
To override the contents of this collection use set_tags.
Assigns one or more tags (key-value pairs) to the launch.
Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values.
Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters.
You can associate as many as 50 tags with a launch.
For more information, see Tagging Amazon Web Services resources.
Assigns one or more tags (key-value pairs) to the launch.
Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values.
Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters.
You can associate as many as 50 tags with a launch.
For more information, see Tagging Amazon Web Services resources.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !RefUnwindSafe for CreateLaunch<C, M, R>
impl<C, M, R> Unpin for CreateLaunch<C, M, R>
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !UnwindSafe for CreateLaunch<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more