Interface CfnSolution.SolutionConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSolution.SolutionConfigProperty.Jsii$Proxy
Enclosing class:
CfnSolution

@Stability(Stable) public static interface CfnSolution.SolutionConfigProperty extends software.amazon.jsii.JsiiSerializable
Describes the configuration properties for the solution.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.personalize.*;
 Object autoMlConfig;
 Object hpoConfig;
 SolutionConfigProperty solutionConfigProperty = SolutionConfigProperty.builder()
         .algorithmHyperParameters(Map.of(
                 "algorithmHyperParametersKey", "algorithmHyperParameters"))
         .autoMlConfig(autoMlConfig)
         .eventValueThreshold("eventValueThreshold")
         .featureTransformationParameters(Map.of(
                 "featureTransformationParametersKey", "featureTransformationParameters"))
         .hpoConfig(hpoConfig)
         .build();
 
  • Method Details

    • getAlgorithmHyperParameters

      @Stability(Stable) @Nullable default Object getAlgorithmHyperParameters()
      Lists the hyperparameter names and ranges.
    • getAutoMlConfig

      @Stability(Stable) @Nullable default Object getAutoMlConfig()
      The AutoMLConfig object containing a list of recipes to search when AutoML is performed.
    • getEventValueThreshold

      @Stability(Stable) @Nullable default String getEventValueThreshold()
      Only events with a value greater than or equal to this threshold are used for training a model.
    • getFeatureTransformationParameters

      @Stability(Stable) @Nullable default Object getFeatureTransformationParameters()
      Lists the feature transformation parameters.
    • getHpoConfig

      @Stability(Stable) @Nullable default Object getHpoConfig()
      Describes the properties for hyperparameter optimization (HPO).
    • builder

      @Stability(Stable) static CfnSolution.SolutionConfigProperty.Builder builder()
      Returns:
      a CfnSolution.SolutionConfigProperty.Builder of CfnSolution.SolutionConfigProperty