Show / Hide Table of Contents

Class CfnSolution.SolutionConfigProperty

Describes the configuration properties for the solution.

Inheritance
System.Object
CfnSolution.SolutionConfigProperty
Implements
CfnSolution.ISolutionConfigProperty
Namespace: Amazon.CDK.AWS.Personalize
Assembly: Amazon.CDK.AWS.Personalize.dll
Syntax (csharp)
public class SolutionConfigProperty : Object, CfnSolution.ISolutionConfigProperty
Syntax (vb)
Public Class SolutionConfigProperty
    Inherits Object
    Implements CfnSolution.ISolutionConfigProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-solution-solutionconfig.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 autoMlConfig;
var hpoConfig;

var solutionConfigProperty = new SolutionConfigProperty {
    AlgorithmHyperParameters = new Dictionary<string, string> {
        { "algorithmHyperParametersKey", "algorithmHyperParameters" }
    },
    AutoMlConfig = autoMlConfig,
    EventValueThreshold = "eventValueThreshold",
    FeatureTransformationParameters = new Dictionary<string, string> {
        { "featureTransformationParametersKey", "featureTransformationParameters" }
    },
    HpoConfig = hpoConfig
};

Synopsis

Constructors

SolutionConfigProperty()

Properties

AlgorithmHyperParameters

Lists the hyperparameter names and ranges.

AutoMlConfig

The AutoMLConfig object containing a list of recipes to search when AutoML is performed.

EventValueThreshold

Only events with a value greater than or equal to this threshold are used for training a model.

FeatureTransformationParameters

Lists the feature transformation parameters.

HpoConfig

Describes the properties for hyperparameter optimization (HPO).

Constructors

SolutionConfigProperty()

public SolutionConfigProperty()

Properties

AlgorithmHyperParameters

Lists the hyperparameter names and ranges.

public object AlgorithmHyperParameters { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-solution-solutionconfig.html#cfn-personalize-solution-solutionconfig-algorithmhyperparameters

AutoMlConfig

The AutoMLConfig object containing a list of recipes to search when AutoML is performed.

public object AutoMlConfig { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-solution-solutionconfig.html#cfn-personalize-solution-solutionconfig-automlconfig

EventValueThreshold

Only events with a value greater than or equal to this threshold are used for training a model.

public string EventValueThreshold { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-solution-solutionconfig.html#cfn-personalize-solution-solutionconfig-eventvaluethreshold

FeatureTransformationParameters

Lists the feature transformation parameters.

public object FeatureTransformationParameters { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-solution-solutionconfig.html#cfn-personalize-solution-solutionconfig-featuretransformationparameters

HpoConfig

Describes the properties for hyperparameter optimization (HPO).

public object HpoConfig { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-solution-solutionconfig.html#cfn-personalize-solution-solutionconfig-hpoconfig

Implements

CfnSolution.ISolutionConfigProperty
Back to top Generated by DocFX