Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data TrialComponentParameterValue = TrialComponentParameterValue' {}
- newTrialComponentParameterValue :: TrialComponentParameterValue
- trialComponentParameterValue_numberValue :: Lens' TrialComponentParameterValue (Maybe Double)
- trialComponentParameterValue_stringValue :: Lens' TrialComponentParameterValue (Maybe Text)
Documentation
data TrialComponentParameterValue Source #
The value of a hyperparameter. Only one of NumberValue
or
StringValue
can be specified.
This object is specified in the CreateTrialComponent request.
See: newTrialComponentParameterValue
smart constructor.
TrialComponentParameterValue' | |
|
Instances
newTrialComponentParameterValue :: TrialComponentParameterValue Source #
Create a value of TrialComponentParameterValue
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:numberValue:TrialComponentParameterValue'
, trialComponentParameterValue_numberValue
- The numeric value of a numeric hyperparameter. If you specify a value
for this parameter, you can't specify the StringValue
parameter.
$sel:stringValue:TrialComponentParameterValue'
, trialComponentParameterValue_stringValue
- The string value of a categorical hyperparameter. If you specify a value
for this parameter, you can't specify the NumberValue
parameter.
trialComponentParameterValue_numberValue :: Lens' TrialComponentParameterValue (Maybe Double) Source #
The numeric value of a numeric hyperparameter. If you specify a value
for this parameter, you can't specify the StringValue
parameter.
trialComponentParameterValue_stringValue :: Lens' TrialComponentParameterValue (Maybe Text) Source #
The string value of a categorical hyperparameter. If you specify a value
for this parameter, you can't specify the NumberValue
parameter.