[][src]Struct rusoto_personalize::Solution

pub struct Solution {
    pub auto_ml_result: Option<AutoMLResult>,
    pub creation_date_time: Option<f64>,
    pub dataset_group_arn: Option<String>,
    pub event_type: Option<String>,
    pub last_updated_date_time: Option<f64>,
    pub latest_solution_version: Option<SolutionVersionSummary>,
    pub name: Option<String>,
    pub perform_auto_ml: Option<bool>,
    pub perform_hpo: Option<bool>,
    pub recipe_arn: Option<String>,
    pub solution_arn: Option<String>,
    pub solution_config: Option<SolutionConfig>,
    pub status: Option<String>,
}

An object that provides information about a solution. A solution is a trained model that can be deployed as a campaign.

Fields

auto_ml_result: Option<AutoMLResult>

When performAutoML is true, specifies the best recipe found.

creation_date_time: Option<f64>

The creation date and time (in Unix time) of the solution.

dataset_group_arn: Option<String>

The Amazon Resource Name (ARN) of the dataset group that provides the training data.

event_type: Option<String>

The event type (for example, 'click' or 'like') that is used for training the model.

last_updated_date_time: Option<f64>

The date and time (in Unix time) that the solution was last updated.

latest_solution_version: Option<SolutionVersionSummary>

Describes the latest version of the solution, including the status and the ARN.

name: Option<String>

The name of the solution.

perform_auto_ml: Option<bool>

When true, Amazon Personalize performs a search for the best USER_PERSONALIZATION recipe from the list specified in the solution configuration (recipeArn must not be specified). When false (the default), Amazon Personalize uses recipeArn for training.

perform_hpo: Option<bool>

Whether to perform hyperparameter optimization (HPO) on the chosen recipe. The default is false.

recipe_arn: Option<String>

The ARN of the recipe used to create the solution.

solution_arn: Option<String>

The ARN of the solution.

solution_config: Option<SolutionConfig>

Describes the configuration properties for the solution.

status: Option<String>

The status of the solution.

A solution can be in one of the following states:

  • CREATE PENDING > CREATE INPROGRESS > ACTIVE -or- CREATE FAILED

  • DELETE PENDING > DELETE INPROGRESS

Trait Implementations

impl Clone for Solution[src]

impl Debug for Solution[src]

impl Default for Solution[src]

impl<'de> Deserialize<'de> for Solution[src]

impl PartialEq<Solution> for Solution[src]

impl StructuralPartialEq for Solution[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.