/*
* 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 quicksight-2018-04-01.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.QuickSight.Model
{
///
/// The configuration that overrides the existing default values for a dataset parameter
/// that is inherited from another dataset.
///
public partial class NewDefaultValues
{
private List _dateTimeStaticValues = new List();
private List _decimalStaticValues = new List();
private List _integerStaticValues = new List();
private List _stringStaticValues = new List();
///
/// Gets and sets the property DateTimeStaticValues.
///
/// A list of static default values for a given date time parameter.
///
///
[AWSProperty(Min=1, Max=32)]
public List DateTimeStaticValues
{
get { return this._dateTimeStaticValues; }
set { this._dateTimeStaticValues = value; }
}
// Check to see if DateTimeStaticValues property is set
internal bool IsSetDateTimeStaticValues()
{
return this._dateTimeStaticValues != null && this._dateTimeStaticValues.Count > 0;
}
///
/// Gets and sets the property DecimalStaticValues.
///
/// A list of static default values for a given decimal parameter.
///
///
[AWSProperty(Min=1, Max=32)]
public List DecimalStaticValues
{
get { return this._decimalStaticValues; }
set { this._decimalStaticValues = value; }
}
// Check to see if DecimalStaticValues property is set
internal bool IsSetDecimalStaticValues()
{
return this._decimalStaticValues != null && this._decimalStaticValues.Count > 0;
}
///
/// Gets and sets the property IntegerStaticValues.
///
/// A list of static default values for a given integer parameter.
///
///
[AWSProperty(Min=1, Max=32)]
public List IntegerStaticValues
{
get { return this._integerStaticValues; }
set { this._integerStaticValues = value; }
}
// Check to see if IntegerStaticValues property is set
internal bool IsSetIntegerStaticValues()
{
return this._integerStaticValues != null && this._integerStaticValues.Count > 0;
}
///
/// Gets and sets the property StringStaticValues.
///
/// A list of static default values for a given string parameter.
///
///
[AWSProperty(Min=1, Max=32)]
public List StringStaticValues
{
get { return this._stringStaticValues; }
set { this._stringStaticValues = value; }
}
// Check to see if StringStaticValues property is set
internal bool IsSetStringStaticValues()
{
return this._stringStaticValues != null && this._stringStaticValues.Count > 0;
}
}
}