#[non_exhaustive]
pub struct Launch {
Show 15 fields pub arn: Option<String>, pub name: Option<String>, pub project: Option<String>, pub status: Option<LaunchStatus>, pub status_reason: Option<String>, pub description: Option<String>, pub created_time: Option<DateTime>, pub last_updated_time: Option<DateTime>, pub execution: Option<LaunchExecution>, pub groups: Option<Vec<LaunchGroup>>, pub metric_monitors: Option<Vec<MetricMonitor>>, pub randomization_salt: Option<String>, pub type: Option<LaunchType>, pub scheduled_splits_definition: Option<ScheduledSplitsLaunchDefinition>, pub tags: Option<HashMap<String, String>>,
}
Expand description

This structure contains the configuration details of one Evidently launch.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
arn: Option<String>

The ARN of the launch.

name: Option<String>

The name of the launch.

project: Option<String>

The name or ARN of the project that contains the launch.

status: Option<LaunchStatus>

The current state of the launch.

status_reason: Option<String>

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.

description: Option<String>

The description of the launch.

created_time: Option<DateTime>

The date and time that the launch is created.

last_updated_time: Option<DateTime>

The date and time that the launch was most recently updated.

execution: Option<LaunchExecution>

A structure that contains information about the start and end times of the launch.

groups: Option<Vec<LaunchGroup>>

An array of structures that define the feature variations that are being used in the launch.

metric_monitors: Option<Vec<MetricMonitor>>

An array of structures that define the metrics that are being used to monitor the launch performance.

randomization_salt: Option<String>

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.

type: Option<LaunchType>

The type of launch.

scheduled_splits_definition: Option<ScheduledSplitsLaunchDefinition>

An array of structures that define the traffic allocation percentages among the feature variations during each step of the launch.

tags: Option<HashMap<String, String>>

The list of tag keys and values associated with this launch.

Implementations

The ARN of the launch.

The name of the launch.

The name or ARN of the project that contains the launch.

The current state of the launch.

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.

The description of the launch.

The date and time that the launch is created.

The date and time that the launch was most recently updated.

A structure that contains information about the start and end times of the launch.

An array of structures that define the feature variations that are being used in the launch.

An array of structures that define the metrics that are being used to monitor the launch performance.

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.

The type of launch.

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.

Creates a new builder-style object to manufacture Launch

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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