We recommend new projects start with resources from the AWS provider.
aws-native.personalize.Solution
Explore with Pulumi AI
We recommend new projects start with resources from the AWS provider.
Resource schema for AWS::Personalize::Solution.
Example Usage
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() => 
{
    var mySolution = new AwsNative.Personalize.Solution("mySolution", new()
    {
        Name = "my-solution-name",
        DatasetGroupArn = "arn:aws:personalize:us-west-2:123456789012:dataset-group/my-dataset-group-name",
        RecipeArn = "arn:aws:personalize:::recipe/aws-user-personalization",
        SolutionConfig = new AwsNative.Personalize.Inputs.SolutionConfigArgs
        {
            EventValueThreshold = ".05",
        },
    });
});
package main
import (
	"github.com/pulumi/pulumi-aws-native/sdk/go/aws/personalize"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := personalize.NewSolution(ctx, "mySolution", &personalize.SolutionArgs{
			Name:            pulumi.String("my-solution-name"),
			DatasetGroupArn: pulumi.String("arn:aws:personalize:us-west-2:123456789012:dataset-group/my-dataset-group-name"),
			RecipeArn:       pulumi.String("arn:aws:personalize:::recipe/aws-user-personalization"),
			SolutionConfig: &personalize.SolutionConfigArgs{
				EventValueThreshold: pulumi.String(".05"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const mySolution = new aws_native.personalize.Solution("mySolution", {
    name: "my-solution-name",
    datasetGroupArn: "arn:aws:personalize:us-west-2:123456789012:dataset-group/my-dataset-group-name",
    recipeArn: "arn:aws:personalize:::recipe/aws-user-personalization",
    solutionConfig: {
        eventValueThreshold: ".05",
    },
});
import pulumi
import pulumi_aws_native as aws_native
my_solution = aws_native.personalize.Solution("mySolution",
    name="my-solution-name",
    dataset_group_arn="arn:aws:personalize:us-west-2:123456789012:dataset-group/my-dataset-group-name",
    recipe_arn="arn:aws:personalize:::recipe/aws-user-personalization",
    solution_config={
        "event_value_threshold": ".05",
    })
Coming soon!
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() => 
{
    var mySolution = new AwsNative.Personalize.Solution("mySolution", new()
    {
        Name = "my-solution-name",
        DatasetGroupArn = "arn:aws:personalize:us-west-2:123456789012:dataset-group/my-dataset-group-name",
        RecipeArn = "arn:aws:personalize:::recipe/aws-user-personalization",
        SolutionConfig = new AwsNative.Personalize.Inputs.SolutionConfigArgs
        {
            EventValueThreshold = ".05",
        },
    });
});
package main
import (
	"github.com/pulumi/pulumi-aws-native/sdk/go/aws/personalize"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := personalize.NewSolution(ctx, "mySolution", &personalize.SolutionArgs{
			Name:            pulumi.String("my-solution-name"),
			DatasetGroupArn: pulumi.String("arn:aws:personalize:us-west-2:123456789012:dataset-group/my-dataset-group-name"),
			RecipeArn:       pulumi.String("arn:aws:personalize:::recipe/aws-user-personalization"),
			SolutionConfig: &personalize.SolutionConfigArgs{
				EventValueThreshold: pulumi.String(".05"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const mySolution = new aws_native.personalize.Solution("mySolution", {
    name: "my-solution-name",
    datasetGroupArn: "arn:aws:personalize:us-west-2:123456789012:dataset-group/my-dataset-group-name",
    recipeArn: "arn:aws:personalize:::recipe/aws-user-personalization",
    solutionConfig: {
        eventValueThreshold: ".05",
    },
});
import pulumi
import pulumi_aws_native as aws_native
my_solution = aws_native.personalize.Solution("mySolution",
    name="my-solution-name",
    dataset_group_arn="arn:aws:personalize:us-west-2:123456789012:dataset-group/my-dataset-group-name",
    recipe_arn="arn:aws:personalize:::recipe/aws-user-personalization",
    solution_config={
        "event_value_threshold": ".05",
    })
Coming soon!
Create Solution Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Solution(name: string, args: SolutionArgs, opts?: CustomResourceOptions);@overload
def Solution(resource_name: str,
             args: SolutionArgs,
             opts: Optional[ResourceOptions] = None)
@overload
def Solution(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             dataset_group_arn: Optional[str] = None,
             event_type: Optional[str] = None,
             name: Optional[str] = None,
             perform_auto_ml: Optional[bool] = None,
             perform_hpo: Optional[bool] = None,
             recipe_arn: Optional[str] = None,
             solution_config: Optional[SolutionConfigArgs] = None)func NewSolution(ctx *Context, name string, args SolutionArgs, opts ...ResourceOption) (*Solution, error)public Solution(string name, SolutionArgs args, CustomResourceOptions? opts = null)
public Solution(String name, SolutionArgs args)
public Solution(String name, SolutionArgs args, CustomResourceOptions options)
type: aws-native:personalize:Solution
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SolutionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SolutionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SolutionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SolutionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SolutionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Solution Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Solution resource accepts the following input properties:
- DatasetGroup stringArn 
- The ARN of the dataset group that provides the training data.
- EventType 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.
- Name string
- The name for the solution
- PerformAuto boolMl 
- Whether to perform automated machine learning (AutoML). The default is false. For this case, you must specify recipeArn.
- PerformHpo 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.
- RecipeArn string
- The ARN of the recipe to use for model training. Only specified when performAutoML is false.
- SolutionConfig Pulumi.Aws Native. Personalize. Inputs. Solution Config 
- Describes the configuration properties for the solution.
- DatasetGroup stringArn 
- The ARN of the dataset group that provides the training data.
- EventType 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.
- Name string
- The name for the solution
- PerformAuto boolMl 
- Whether to perform automated machine learning (AutoML). The default is false. For this case, you must specify recipeArn.
- PerformHpo 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.
- RecipeArn string
- The ARN of the recipe to use for model training. Only specified when performAutoML is false.
- SolutionConfig SolutionConfig Args 
- Describes the configuration properties for the solution.
- datasetGroup StringArn 
- The ARN of the dataset group that provides the training data.
- eventType 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.
- name String
- The name for the solution
- performAuto BooleanMl 
- Whether to perform automated machine learning (AutoML). The default is false. For this case, you must specify recipeArn.
- performHpo Boolean
- 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.
- recipeArn String
- The ARN of the recipe to use for model training. Only specified when performAutoML is false.
- solutionConfig SolutionConfig 
- Describes the configuration properties for the solution.
- datasetGroup stringArn 
- The ARN of the dataset group that provides the training data.
- eventType 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.
- name string
- The name for the solution
- performAuto booleanMl 
- Whether to perform automated machine learning (AutoML). The default is false. For this case, you must specify recipeArn.
- performHpo boolean
- 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.
- recipeArn string
- The ARN of the recipe to use for model training. Only specified when performAutoML is false.
- solutionConfig SolutionConfig 
- Describes the configuration properties for the solution.
- dataset_group_ strarn 
- The ARN of the dataset group that provides the training data.
- event_type 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.
- name str
- The name for the solution
- perform_auto_ boolml 
- Whether to perform automated machine learning (AutoML). The default is false. For this case, you must specify recipeArn.
- perform_hpo 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.
- recipe_arn str
- The ARN of the recipe to use for model training. Only specified when performAutoML is false.
- solution_config SolutionConfig Args 
- Describes the configuration properties for the solution.
- datasetGroup StringArn 
- The ARN of the dataset group that provides the training data.
- eventType 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.
- name String
- The name for the solution
- performAuto BooleanMl 
- Whether to perform automated machine learning (AutoML). The default is false. For this case, you must specify recipeArn.
- performHpo Boolean
- 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.
- recipeArn String
- The ARN of the recipe to use for model training. Only specified when performAutoML is false.
- solutionConfig Property Map
- Describes the configuration properties for the solution.
Outputs
All input properties are implicitly available as output properties. Additionally, the Solution resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- SolutionArn string
- The Amazon Resource Name (ARN) of the solution.
- Id string
- The provider-assigned unique ID for this managed resource.
- SolutionArn string
- The Amazon Resource Name (ARN) of the solution.
- id String
- The provider-assigned unique ID for this managed resource.
- solutionArn String
- The Amazon Resource Name (ARN) of the solution.
- id string
- The provider-assigned unique ID for this managed resource.
- solutionArn string
- The Amazon Resource Name (ARN) of the solution.
- id str
- The provider-assigned unique ID for this managed resource.
- solution_arn str
- The Amazon Resource Name (ARN) of the solution.
- id String
- The provider-assigned unique ID for this managed resource.
- solutionArn String
- The Amazon Resource Name (ARN) of the solution.
Supporting Types
SolutionCategoricalHyperParameterRange, SolutionCategoricalHyperParameterRangeArgs          
SolutionConfig, SolutionConfigArgs    
- AlgorithmHyper Dictionary<string, string>Parameters 
- Lists the hyperparameter names and ranges.
- AutoMl Pulumi.Config Aws Native. Personalize. Inputs. Solution Config Auto Ml Config Properties 
- The AutoMLConfig object containing a list of recipes to search when AutoML is performed.
- EventValue stringThreshold 
- Only events with a value greater than or equal to this threshold are used for training a model.
- FeatureTransformation Dictionary<string, string>Parameters 
- Lists the feature transformation parameters.
- HpoConfig Pulumi.Aws Native. Personalize. Inputs. Solution Config Hpo Config Properties 
- Describes the properties for hyperparameter optimization (HPO)
- AlgorithmHyper map[string]stringParameters 
- Lists the hyperparameter names and ranges.
- AutoMl SolutionConfig Config Auto Ml Config Properties 
- The AutoMLConfig object containing a list of recipes to search when AutoML is performed.
- EventValue stringThreshold 
- Only events with a value greater than or equal to this threshold are used for training a model.
- FeatureTransformation map[string]stringParameters 
- Lists the feature transformation parameters.
- HpoConfig SolutionConfig Hpo Config Properties 
- Describes the properties for hyperparameter optimization (HPO)
- algorithmHyper Map<String,String>Parameters 
- Lists the hyperparameter names and ranges.
- autoMl SolutionConfig Config Auto Ml Config Properties 
- The AutoMLConfig object containing a list of recipes to search when AutoML is performed.
- eventValue StringThreshold 
- Only events with a value greater than or equal to this threshold are used for training a model.
- featureTransformation Map<String,String>Parameters 
- Lists the feature transformation parameters.
- hpoConfig SolutionConfig Hpo Config Properties 
- Describes the properties for hyperparameter optimization (HPO)
- algorithmHyper {[key: string]: string}Parameters 
- Lists the hyperparameter names and ranges.
- autoMl SolutionConfig Config Auto Ml Config Properties 
- The AutoMLConfig object containing a list of recipes to search when AutoML is performed.
- eventValue stringThreshold 
- Only events with a value greater than or equal to this threshold are used for training a model.
- featureTransformation {[key: string]: string}Parameters 
- Lists the feature transformation parameters.
- hpoConfig SolutionConfig Hpo Config Properties 
- Describes the properties for hyperparameter optimization (HPO)
- algorithm_hyper_ Mapping[str, str]parameters 
- Lists the hyperparameter names and ranges.
- auto_ml_ Solutionconfig Config Auto Ml Config Properties 
- The AutoMLConfig object containing a list of recipes to search when AutoML is performed.
- event_value_ strthreshold 
- Only events with a value greater than or equal to this threshold are used for training a model.
- feature_transformation_ Mapping[str, str]parameters 
- Lists the feature transformation parameters.
- hpo_config SolutionConfig Hpo Config Properties 
- Describes the properties for hyperparameter optimization (HPO)
- algorithmHyper Map<String>Parameters 
- Lists the hyperparameter names and ranges.
- autoMl Property MapConfig 
- The AutoMLConfig object containing a list of recipes to search when AutoML is performed.
- eventValue StringThreshold 
- Only events with a value greater than or equal to this threshold are used for training a model.
- featureTransformation Map<String>Parameters 
- Lists the feature transformation parameters.
- hpoConfig Property Map
- Describes the properties for hyperparameter optimization (HPO)
SolutionConfigAutoMlConfigProperties, SolutionConfigAutoMlConfigPropertiesArgs            
- MetricName string
- The metric to optimize.
- RecipeList List<string>
- The list of candidate recipes.
- MetricName string
- The metric to optimize.
- RecipeList []string
- The list of candidate recipes.
- metricName String
- The metric to optimize.
- recipeList List<String>
- The list of candidate recipes.
- metricName string
- The metric to optimize.
- recipeList string[]
- The list of candidate recipes.
- metric_name str
- The metric to optimize.
- recipe_list Sequence[str]
- The list of candidate recipes.
- metricName String
- The metric to optimize.
- recipeList List<String>
- The list of candidate recipes.
SolutionConfigHpoConfigProperties, SolutionConfigHpoConfigPropertiesArgs          
- AlgorithmHyper Pulumi.Parameter Ranges Aws Native. Personalize. Inputs. Solution Config Hpo Config Properties Algorithm Hyper Parameter Ranges Properties 
- The hyperparameters and their allowable ranges
- HpoObjective Pulumi.Aws Native. Personalize. Inputs. Solution Config Hpo Config Properties Hpo Objective Properties 
- The metric to optimize during HPO.
- HpoResource Pulumi.Config Aws Native. Personalize. Inputs. Solution Config Hpo Config Properties Hpo Resource Config Properties 
- Describes the resource configuration for hyperparameter optimization (HPO).
- AlgorithmHyper SolutionParameter Ranges Config Hpo Config Properties Algorithm Hyper Parameter Ranges Properties 
- The hyperparameters and their allowable ranges
- HpoObjective SolutionConfig Hpo Config Properties Hpo Objective Properties 
- The metric to optimize during HPO.
- HpoResource SolutionConfig Config Hpo Config Properties Hpo Resource Config Properties 
- Describes the resource configuration for hyperparameter optimization (HPO).
- algorithmHyper SolutionParameter Ranges Config Hpo Config Properties Algorithm Hyper Parameter Ranges Properties 
- The hyperparameters and their allowable ranges
- hpoObjective SolutionConfig Hpo Config Properties Hpo Objective Properties 
- The metric to optimize during HPO.
- hpoResource SolutionConfig Config Hpo Config Properties Hpo Resource Config Properties 
- Describes the resource configuration for hyperparameter optimization (HPO).
- algorithmHyper SolutionParameter Ranges Config Hpo Config Properties Algorithm Hyper Parameter Ranges Properties 
- The hyperparameters and their allowable ranges
- hpoObjective SolutionConfig Hpo Config Properties Hpo Objective Properties 
- The metric to optimize during HPO.
- hpoResource SolutionConfig Config Hpo Config Properties Hpo Resource Config Properties 
- Describes the resource configuration for hyperparameter optimization (HPO).
- algorithm_hyper_ Solutionparameter_ ranges Config Hpo Config Properties Algorithm Hyper Parameter Ranges Properties 
- The hyperparameters and their allowable ranges
- hpo_objective SolutionConfig Hpo Config Properties Hpo Objective Properties 
- The metric to optimize during HPO.
- hpo_resource_ Solutionconfig Config Hpo Config Properties Hpo Resource Config Properties 
- Describes the resource configuration for hyperparameter optimization (HPO).
- algorithmHyper Property MapParameter Ranges 
- The hyperparameters and their allowable ranges
- hpoObjective Property Map
- The metric to optimize during HPO.
- hpoResource Property MapConfig 
- Describes the resource configuration for hyperparameter optimization (HPO).
SolutionConfigHpoConfigPropertiesAlgorithmHyperParameterRangesProperties, SolutionConfigHpoConfigPropertiesAlgorithmHyperParameterRangesPropertiesArgs                    
- CategoricalHyper List<Pulumi.Parameter Ranges Aws Native. Personalize. Inputs. Solution Categorical Hyper Parameter Range> 
- The categorical hyperparameters and their ranges.
- ContinuousHyper List<Pulumi.Parameter Ranges Aws Native. Personalize. Inputs. Solution Continuous Hyper Parameter Range> 
- The continuous hyperparameters and their ranges.
- IntegerHyper List<Pulumi.Parameter Ranges Aws Native. Personalize. Inputs. Solution Integer Hyper Parameter Range> 
- The integer hyperparameters and their ranges.
- CategoricalHyper []SolutionParameter Ranges Categorical Hyper Parameter Range 
- The categorical hyperparameters and their ranges.
- ContinuousHyper []SolutionParameter Ranges Continuous Hyper Parameter Range 
- The continuous hyperparameters and their ranges.
- IntegerHyper []SolutionParameter Ranges Integer Hyper Parameter Range 
- The integer hyperparameters and their ranges.
- categoricalHyper List<SolutionParameter Ranges Categorical Hyper Parameter Range> 
- The categorical hyperparameters and their ranges.
- continuousHyper List<SolutionParameter Ranges Continuous Hyper Parameter Range> 
- The continuous hyperparameters and their ranges.
- integerHyper List<SolutionParameter Ranges Integer Hyper Parameter Range> 
- The integer hyperparameters and their ranges.
- categoricalHyper SolutionParameter Ranges Categorical Hyper Parameter Range[] 
- The categorical hyperparameters and their ranges.
- continuousHyper SolutionParameter Ranges Continuous Hyper Parameter Range[] 
- The continuous hyperparameters and their ranges.
- integerHyper SolutionParameter Ranges Integer Hyper Parameter Range[] 
- The integer hyperparameters and their ranges.
- categorical_hyper_ Sequence[Solutionparameter_ ranges Categorical Hyper Parameter Range] 
- The categorical hyperparameters and their ranges.
- continuous_hyper_ Sequence[Solutionparameter_ ranges Continuous Hyper Parameter Range] 
- The continuous hyperparameters and their ranges.
- integer_hyper_ Sequence[Solutionparameter_ ranges Integer Hyper Parameter Range] 
- The integer hyperparameters and their ranges.
- categoricalHyper List<Property Map>Parameter Ranges 
- The categorical hyperparameters and their ranges.
- continuousHyper List<Property Map>Parameter Ranges 
- The continuous hyperparameters and their ranges.
- integerHyper List<Property Map>Parameter Ranges 
- The integer hyperparameters and their ranges.
SolutionConfigHpoConfigPropertiesHpoObjectiveProperties, SolutionConfigHpoConfigPropertiesHpoObjectivePropertiesArgs                
- MetricName string
- The name of the metric
- MetricRegex string
- A regular expression for finding the metric in the training job logs.
- Type
Pulumi.Aws Native. Personalize. Solution Config Hpo Config Properties Hpo Objective Properties Type 
- The type of the metric. Valid values are Maximize and Minimize.
- MetricName string
- The name of the metric
- MetricRegex string
- A regular expression for finding the metric in the training job logs.
- Type
SolutionConfig Hpo Config Properties Hpo Objective Properties Type 
- The type of the metric. Valid values are Maximize and Minimize.
- metricName String
- The name of the metric
- metricRegex String
- A regular expression for finding the metric in the training job logs.
- type
SolutionConfig Hpo Config Properties Hpo Objective Properties Type 
- The type of the metric. Valid values are Maximize and Minimize.
- metricName string
- The name of the metric
- metricRegex string
- A regular expression for finding the metric in the training job logs.
- type
SolutionConfig Hpo Config Properties Hpo Objective Properties Type 
- The type of the metric. Valid values are Maximize and Minimize.
- metric_name str
- The name of the metric
- metric_regex str
- A regular expression for finding the metric in the training job logs.
- type
SolutionConfig Hpo Config Properties Hpo Objective Properties Type 
- The type of the metric. Valid values are Maximize and Minimize.
- metricName String
- The name of the metric
- metricRegex String
- A regular expression for finding the metric in the training job logs.
- type "Maximize" | "Minimize"
- The type of the metric. Valid values are Maximize and Minimize.
SolutionConfigHpoConfigPropertiesHpoObjectivePropertiesType, SolutionConfigHpoConfigPropertiesHpoObjectivePropertiesTypeArgs                  
- Maximize
- Maximize
- Minimize
- Minimize
- SolutionConfig Hpo Config Properties Hpo Objective Properties Type Maximize 
- Maximize
- SolutionConfig Hpo Config Properties Hpo Objective Properties Type Minimize 
- Minimize
- Maximize
- Maximize
- Minimize
- Minimize
- Maximize
- Maximize
- Minimize
- Minimize
- MAXIMIZE
- Maximize
- MINIMIZE
- Minimize
- "Maximize"
- Maximize
- "Minimize"
- Minimize
SolutionConfigHpoConfigPropertiesHpoResourceConfigProperties, SolutionConfigHpoConfigPropertiesHpoResourceConfigPropertiesArgs                  
- MaxNumber stringOf Training Jobs 
- The maximum number of training jobs when you create a solution version. The maximum value for maxNumberOfTrainingJobs is 40.
- MaxParallel stringTraining Jobs 
- The maximum number of parallel training jobs when you create a solution version. The maximum value for maxParallelTrainingJobs is 10.
- MaxNumber stringOf Training Jobs 
- The maximum number of training jobs when you create a solution version. The maximum value for maxNumberOfTrainingJobs is 40.
- MaxParallel stringTraining Jobs 
- The maximum number of parallel training jobs when you create a solution version. The maximum value for maxParallelTrainingJobs is 10.
- maxNumber StringOf Training Jobs 
- The maximum number of training jobs when you create a solution version. The maximum value for maxNumberOfTrainingJobs is 40.
- maxParallel StringTraining Jobs 
- The maximum number of parallel training jobs when you create a solution version. The maximum value for maxParallelTrainingJobs is 10.
- maxNumber stringOf Training Jobs 
- The maximum number of training jobs when you create a solution version. The maximum value for maxNumberOfTrainingJobs is 40.
- maxParallel stringTraining Jobs 
- The maximum number of parallel training jobs when you create a solution version. The maximum value for maxParallelTrainingJobs is 10.
- max_number_ strof_ training_ jobs 
- The maximum number of training jobs when you create a solution version. The maximum value for maxNumberOfTrainingJobs is 40.
- max_parallel_ strtraining_ jobs 
- The maximum number of parallel training jobs when you create a solution version. The maximum value for maxParallelTrainingJobs is 10.
- maxNumber StringOf Training Jobs 
- The maximum number of training jobs when you create a solution version. The maximum value for maxNumberOfTrainingJobs is 40.
- maxParallel StringTraining Jobs 
- The maximum number of parallel training jobs when you create a solution version. The maximum value for maxParallelTrainingJobs is 10.
SolutionContinuousHyperParameterRange, SolutionContinuousHyperParameterRangeArgs          
SolutionIntegerHyperParameterRange, SolutionIntegerHyperParameterRangeArgs          
Package Details
- Repository
- AWS Native pulumi/pulumi-aws-native
- License
- Apache-2.0
We recommend new projects start with resources from the AWS provider.