Show / Hide Table of Contents

Class CfnSolution.HpoResourceConfigProperty

Describes the resource configuration for hyperparameter optimization (HPO).

Inheritance
object
CfnSolution.HpoResourceConfigProperty
Implements
CfnSolution.IHpoResourceConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Personalize
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSolution.HpoResourceConfigProperty : CfnSolution.IHpoResourceConfigProperty
Syntax (vb)
Public Class CfnSolution.HpoResourceConfigProperty Implements CfnSolution.IHpoResourceConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-solution-hporesourceconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Personalize;

             var hpoResourceConfigProperty = new HpoResourceConfigProperty {
                 MaxNumberOfTrainingJobs = "maxNumberOfTrainingJobs",
                 MaxParallelTrainingJobs = "maxParallelTrainingJobs"
             };

Synopsis

Constructors

HpoResourceConfigProperty()

Describes the resource configuration for hyperparameter optimization (HPO).

Properties

MaxNumberOfTrainingJobs

The maximum number of training jobs when you create a solution version.

MaxParallelTrainingJobs

The maximum number of parallel training jobs when you create a solution version.

Constructors

HpoResourceConfigProperty()

Describes the resource configuration for hyperparameter optimization (HPO).

public HpoResourceConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-solution-hporesourceconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Personalize;

             var hpoResourceConfigProperty = new HpoResourceConfigProperty {
                 MaxNumberOfTrainingJobs = "maxNumberOfTrainingJobs",
                 MaxParallelTrainingJobs = "maxParallelTrainingJobs"
             };

Properties

MaxNumberOfTrainingJobs

The maximum number of training jobs when you create a solution version.

public string? MaxNumberOfTrainingJobs { get; set; }
Property Value

string

Remarks

The maximum value for maxNumberOfTrainingJobs is 40 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-solution-hporesourceconfig.html#cfn-personalize-solution-hporesourceconfig-maxnumberoftrainingjobs

MaxParallelTrainingJobs

The maximum number of parallel training jobs when you create a solution version.

public string? MaxParallelTrainingJobs { get; set; }
Property Value

string

Remarks

The maximum value for maxParallelTrainingJobs is 10 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-solution-hporesourceconfig.html#cfn-personalize-solution-hporesourceconfig-maxparalleltrainingjobs

Implements

CfnSolution.IHpoResourceConfigProperty
Back to top Generated by DocFX