/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the forecast-2018-06-26.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.ForecastService.Model
{
///
/// Specifies the categorical, continuous, and integer hyperparameters, and their ranges
/// of tunable values. The range of tunable values determines which values that a hyperparameter
/// tuning job can choose for the specified hyperparameter. This object is part of the
/// HyperParameterTuningJobConfig object.
///
public partial class ParameterRanges
{
private List _categoricalParameterRanges = new List();
private List _continuousParameterRanges = new List();
private List _integerParameterRanges = new List();
///
/// Gets and sets the property CategoricalParameterRanges.
///
/// Specifies the tunable range for each categorical hyperparameter.
///
///
[AWSProperty(Min=1, Max=20)]
public List CategoricalParameterRanges
{
get { return this._categoricalParameterRanges; }
set { this._categoricalParameterRanges = value; }
}
// Check to see if CategoricalParameterRanges property is set
internal bool IsSetCategoricalParameterRanges()
{
return this._categoricalParameterRanges != null && this._categoricalParameterRanges.Count > 0;
}
///
/// Gets and sets the property ContinuousParameterRanges.
///
/// Specifies the tunable range for each continuous hyperparameter.
///
///
[AWSProperty(Min=1, Max=20)]
public List ContinuousParameterRanges
{
get { return this._continuousParameterRanges; }
set { this._continuousParameterRanges = value; }
}
// Check to see if ContinuousParameterRanges property is set
internal bool IsSetContinuousParameterRanges()
{
return this._continuousParameterRanges != null && this._continuousParameterRanges.Count > 0;
}
///
/// Gets and sets the property IntegerParameterRanges.
///
/// Specifies the tunable range for each integer hyperparameter.
///
///
[AWSProperty(Min=1, Max=20)]
public List IntegerParameterRanges
{
get { return this._integerParameterRanges; }
set { this._integerParameterRanges = value; }
}
// Check to see if IntegerParameterRanges property is set
internal bool IsSetIntegerParameterRanges()
{
return this._integerParameterRanges != null && this._integerParameterRanges.Count > 0;
}
}
}