Struct aws_sdk_personalize::operation::create_solution::builders::CreateSolutionInputBuilder
source · #[non_exhaustive]pub struct CreateSolutionInputBuilder { /* private fields */ }
Expand description
A builder for CreateSolutionInput
.
Implementations§
source§impl CreateSolutionInputBuilder
impl CreateSolutionInputBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name for the solution.
This field is required.sourcepub fn perform_hpo(self, input: bool) -> Self
pub fn perform_hpo(self, input: bool) -> Self
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 set_perform_hpo(self, input: Option<bool>) -> Self
pub fn set_perform_hpo(self, input: Option<bool>) -> Self
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 get_perform_hpo(&self) -> &Option<bool>
pub fn get_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, input: bool) -> Self
pub fn perform_auto_ml(self, input: bool) -> Self
We don't recommend enabling automated machine learning. Instead, match your use case to the available Amazon Personalize recipes. For more information, see Determining your use case.
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 set_perform_auto_ml(self, input: Option<bool>) -> Self
pub fn set_perform_auto_ml(self, input: Option<bool>) -> Self
We don't recommend enabling automated machine learning. Instead, match your use case to the available Amazon Personalize recipes. For more information, see Determining your use case.
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 get_perform_auto_ml(&self) -> &Option<bool>
pub fn get_perform_auto_ml(&self) -> &Option<bool>
We don't recommend enabling automated machine learning. Instead, match your use case to the available Amazon Personalize recipes. For more information, see Determining your use case.
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, input: impl Into<String>) -> Self
pub fn recipe_arn(self, input: impl Into<String>) -> Self
The ARN of the recipe to use for model training. This is required when performAutoML
is false.
sourcepub fn set_recipe_arn(self, input: Option<String>) -> Self
pub fn set_recipe_arn(self, input: Option<String>) -> Self
The ARN of the recipe to use for model training. This is required when performAutoML
is false.
sourcepub fn get_recipe_arn(&self) -> &Option<String>
pub fn get_recipe_arn(&self) -> &Option<String>
The ARN of the recipe to use for model training. This is required when performAutoML
is false.
sourcepub fn dataset_group_arn(self, input: impl Into<String>) -> Self
pub fn dataset_group_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the dataset group that provides the training data.
This field is required.sourcepub fn set_dataset_group_arn(self, input: Option<String>) -> Self
pub fn set_dataset_group_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the dataset group that provides the training data.
sourcepub fn get_dataset_group_arn(&self) -> &Option<String>
pub fn get_dataset_group_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the dataset group that provides the training data.
sourcepub fn event_type(self, input: impl Into<String>) -> Self
pub fn event_type(self, input: impl Into<String>) -> Self
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 set_event_type(self, input: Option<String>) -> Self
pub fn set_event_type(self, input: Option<String>) -> Self
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 get_event_type(&self) -> &Option<String>
pub fn get_event_type(&self) -> &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.
sourcepub fn solution_config(self, input: SolutionConfig) -> Self
pub fn solution_config(self, input: SolutionConfig) -> Self
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.
sourcepub fn set_solution_config(self, input: Option<SolutionConfig>) -> Self
pub fn set_solution_config(self, input: Option<SolutionConfig>) -> Self
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.
sourcepub fn get_solution_config(&self) -> &Option<SolutionConfig>
pub fn get_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.
A list of tags to apply to the solution.
sourcepub fn build(self) -> Result<CreateSolutionInput, BuildError>
pub fn build(self) -> Result<CreateSolutionInput, BuildError>
Consumes the builder and constructs a CreateSolutionInput
.
source§impl CreateSolutionInputBuilder
impl CreateSolutionInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateSolutionOutput, SdkError<CreateSolutionError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateSolutionOutput, SdkError<CreateSolutionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateSolutionInputBuilder
impl Clone for CreateSolutionInputBuilder
source§fn clone(&self) -> CreateSolutionInputBuilder
fn clone(&self) -> CreateSolutionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateSolutionInputBuilder
impl Debug for CreateSolutionInputBuilder
source§impl Default for CreateSolutionInputBuilder
impl Default for CreateSolutionInputBuilder
source§fn default() -> CreateSolutionInputBuilder
fn default() -> CreateSolutionInputBuilder
source§impl PartialEq for CreateSolutionInputBuilder
impl PartialEq for CreateSolutionInputBuilder
source§fn eq(&self, other: &CreateSolutionInputBuilder) -> bool
fn eq(&self, other: &CreateSolutionInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.