#[non_exhaustive]pub struct CreateLaunchInput {
pub project: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub scheduled_splits_config: Option<ScheduledSplitsLaunchConfig>,
pub metric_monitors: Option<Vec<MetricMonitorConfig>>,
pub groups: Option<Vec<LaunchGroupConfig>>,
pub randomization_salt: Option<String>,
pub tags: Option<HashMap<String, String>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.project: Option<String>The name or ARN of the project that you want to create the launch in.
name: Option<String>The name for the new launch.
description: Option<String>An optional description for the launch.
scheduled_splits_config: Option<ScheduledSplitsLaunchConfig>An array of structures that define the traffic allocation percentages among the feature variations during each step of the launch.
metric_monitors: Option<Vec<MetricMonitorConfig>>An array of structures that define the metrics that will be used to monitor the launch performance.
groups: Option<Vec<LaunchGroupConfig>>An array of structures that contains the feature and variations that are to be used for the launch.
randomization_salt: Option<String>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.
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.
Implementations§
source§impl CreateLaunchInput
impl CreateLaunchInput
sourcepub fn project(&self) -> Option<&str>
pub fn project(&self) -> Option<&str>
The name or ARN of the project that you want to create the launch in.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
An optional description for the launch.
sourcepub fn scheduled_splits_config(&self) -> Option<&ScheduledSplitsLaunchConfig>
pub fn scheduled_splits_config(&self) -> Option<&ScheduledSplitsLaunchConfig>
An array of structures that define the traffic allocation percentages among the feature variations during each step of the launch.
sourcepub fn metric_monitors(&self) -> Option<&[MetricMonitorConfig]>
pub fn metric_monitors(&self) -> Option<&[MetricMonitorConfig]>
An array of structures that define the metrics that will be used to monitor the launch performance.
sourcepub fn groups(&self) -> Option<&[LaunchGroupConfig]>
pub fn groups(&self) -> Option<&[LaunchGroupConfig]>
An array of structures that contains the feature and variations that are to be used for the launch.
sourcepub fn randomization_salt(&self) -> Option<&str>
pub fn randomization_salt(&self) -> Option<&str>
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.
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.
source§impl CreateLaunchInput
impl CreateLaunchInput
sourcepub fn builder() -> CreateLaunchInputBuilder
pub fn builder() -> CreateLaunchInputBuilder
Creates a new builder-style object to manufacture CreateLaunchInput.
Trait Implementations§
source§impl Clone for CreateLaunchInput
impl Clone for CreateLaunchInput
source§fn clone(&self) -> CreateLaunchInput
fn clone(&self) -> CreateLaunchInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateLaunchInput
impl Debug for CreateLaunchInput
source§impl PartialEq<CreateLaunchInput> for CreateLaunchInput
impl PartialEq<CreateLaunchInput> for CreateLaunchInput
source§fn eq(&self, other: &CreateLaunchInput) -> bool
fn eq(&self, other: &CreateLaunchInput) -> bool
self and other values to be equal, and is used
by ==.