Struct aws_sdk_personalize::input::CreateSolutionInput
source · [−]#[non_exhaustive]pub struct CreateSolutionInput {
pub name: Option<String>,
pub perform_hpo: Option<bool>,
pub perform_auto_ml: bool,
pub recipe_arn: Option<String>,
pub dataset_group_arn: Option<String>,
pub event_type: Option<String>,
pub solution_config: Option<SolutionConfig>,
pub tags: Option<Vec<Tag>>,
}
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.name: Option<String>
The name for the solution.
perform_hpo: Option<bool>
Whether to perform hyperparameter optimization (HPO) on the specified or selected recipe. The default is false
.
When performing AutoML, this parameter is always true
and you should not set it to false
.
perform_auto_ml: bool
Whether to perform automated machine learning (AutoML). The default is false
. For this case, you must specify recipeArn
.
When set to true
, Amazon Personalize analyzes your training data and selects the optimal USER_PERSONALIZATION recipe and hyperparameters. In this case, you must omit recipeArn
. Amazon Personalize determines the optimal recipe by running tests with different values for the hyperparameters. AutoML lengthens the training process as compared to selecting a specific recipe.
recipe_arn: Option<String>
The ARN of the recipe to use for model training. Only specified when performAutoML
is false.
dataset_group_arn: Option<String>
The Amazon Resource Name (ARN) of the dataset group that provides the training data.
event_type: Option<String>
When your have multiple event types (using an EVENT_TYPE
schema field), this parameter specifies which event type (for example, 'click' or 'like') is used for training the model.
If you do not provide an eventType
, Amazon Personalize will use all interactions for training with equal weight regardless of type.
solution_config: Option<SolutionConfig>
The configuration to use with the solution. When performAutoML
is set to true, Amazon Personalize only evaluates the autoMLConfig
section of the solution configuration.
Amazon Personalize doesn't support configuring the hpoObjective
at this time.
A list of tags to apply to the solution.
Implementations
sourceimpl CreateSolutionInput
impl CreateSolutionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSolution, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSolution, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateSolution
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateSolutionInput
sourceimpl CreateSolutionInput
impl CreateSolutionInput
sourcepub fn perform_hpo(&self) -> Option<bool>
pub fn perform_hpo(&self) -> Option<bool>
Whether to perform hyperparameter optimization (HPO) on the specified or selected recipe. The default is false
.
When performing AutoML, this parameter is always true
and you should not set it to false
.
sourcepub fn perform_auto_ml(&self) -> bool
pub fn perform_auto_ml(&self) -> bool
Whether to perform automated machine learning (AutoML). The default is false
. For this case, you must specify recipeArn
.
When set to true
, Amazon Personalize analyzes your training data and selects the optimal USER_PERSONALIZATION recipe and hyperparameters. In this case, you must omit recipeArn
. Amazon Personalize determines the optimal recipe by running tests with different values for the hyperparameters. AutoML lengthens the training process as compared to selecting a specific recipe.
sourcepub fn recipe_arn(&self) -> Option<&str>
pub fn recipe_arn(&self) -> Option<&str>
The ARN of the recipe to use for model training. Only specified when performAutoML
is false.
sourcepub fn dataset_group_arn(&self) -> Option<&str>
pub fn dataset_group_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the dataset group that provides the training data.
sourcepub fn event_type(&self) -> Option<&str>
pub fn event_type(&self) -> Option<&str>
When your have multiple event types (using an EVENT_TYPE
schema field), this parameter specifies which event type (for example, 'click' or 'like') is used for training the model.
If you do not provide an eventType
, Amazon Personalize will use all interactions for training with equal weight regardless of type.
sourcepub fn solution_config(&self) -> Option<&SolutionConfig>
pub fn solution_config(&self) -> Option<&SolutionConfig>
The configuration to use with the solution. When performAutoML
is set to true, Amazon Personalize only evaluates the autoMLConfig
section of the solution configuration.
Amazon Personalize doesn't support configuring the hpoObjective
at this time.
A list of tags to apply to the solution.
Trait Implementations
sourceimpl Clone for CreateSolutionInput
impl Clone for CreateSolutionInput
sourcefn clone(&self) -> CreateSolutionInput
fn clone(&self) -> CreateSolutionInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CreateSolutionInput
impl Debug for CreateSolutionInput
sourceimpl PartialEq<CreateSolutionInput> for CreateSolutionInput
impl PartialEq<CreateSolutionInput> for CreateSolutionInput
sourcefn eq(&self, other: &CreateSolutionInput) -> bool
fn eq(&self, other: &CreateSolutionInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateSolutionInput) -> bool
fn ne(&self, other: &CreateSolutionInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreateSolutionInput
Auto Trait Implementations
impl RefUnwindSafe for CreateSolutionInput
impl Send for CreateSolutionInput
impl Sync for CreateSolutionInput
impl Unpin for CreateSolutionInput
impl UnwindSafe for CreateSolutionInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more