Struct aws_sdk_personalize::input::CreateSolutionInput
source · #[non_exhaustive]pub struct CreateSolutionInput { /* private fields */ }
Implementations§
source§impl CreateSolutionInput
impl CreateSolutionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSolution, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSolution, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateSolution
>
Examples found in repository?
2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::CreateSolution,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::CreateSolutionError>,
> {
let handle = self.handle.clone();
let operation = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
Ok(crate::operation::customize::CustomizableOperation { handle, operation })
}
/// Sends the request and returns the response.
///
/// If an error occurs, an `SdkError` will be returned with additional details that
/// can be matched against.
///
/// By default, any retryable failures will be retried twice. Retry behavior
/// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> std::result::Result<
crate::output::CreateSolutionOutput,
aws_smithy_http::result::SdkError<crate::error::CreateSolutionError>,
> {
let op = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&self.handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
self.handle.client.call(op).await
}
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateSolutionInput
.
source§impl 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§
source§impl Clone for CreateSolutionInput
impl Clone for CreateSolutionInput
source§fn clone(&self) -> CreateSolutionInput
fn clone(&self) -> CreateSolutionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more