Struct aws_sdk_evidently::types::Launch
source · #[non_exhaustive]pub struct Launch { /* private fields */ }Expand description
This structure contains the configuration details of one Evidently launch.
Implementations§
source§impl Launch
impl Launch
sourcepub fn status(&self) -> Option<&LaunchStatus>
pub fn status(&self) -> Option<&LaunchStatus>
The current state of the launch.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
If the launch was stopped, this is the string that was entered by the person who stopped the launch, to explain why it was stopped.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the launch.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
The date and time that the launch is created.
sourcepub fn last_updated_time(&self) -> Option<&DateTime>
pub fn last_updated_time(&self) -> Option<&DateTime>
The date and time that the launch was most recently updated.
sourcepub fn execution(&self) -> Option<&LaunchExecution>
pub fn execution(&self) -> Option<&LaunchExecution>
A structure that contains information about the start and end times of the launch.
sourcepub fn groups(&self) -> Option<&[LaunchGroup]>
pub fn groups(&self) -> Option<&[LaunchGroup]>
An array of structures that define the feature variations that are being used in the launch.
sourcepub fn metric_monitors(&self) -> Option<&[MetricMonitor]>
pub fn metric_monitors(&self) -> Option<&[MetricMonitor]>
An array of structures that define the metrics that are being used to monitor the launch performance.
sourcepub fn randomization_salt(&self) -> Option<&str>
pub fn randomization_salt(&self) -> Option<&str>
This value is used when Evidently assigns a particular user session to the launch, to help create a randomization ID to determine which variation the user session is served. This randomization ID is a combination of the entity ID and randomizationSalt.
sourcepub fn type(&self) -> Option<&LaunchType>
pub fn type(&self) -> Option<&LaunchType>
The type of launch.
sourcepub fn scheduled_splits_definition(
&self
) -> Option<&ScheduledSplitsLaunchDefinition>
pub fn scheduled_splits_definition( &self ) -> Option<&ScheduledSplitsLaunchDefinition>
An array of structures that define the traffic allocation percentages among the feature variations during each step of the launch.
The list of tag keys and values associated with this launch.