/*
* 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
{
///
/// A dataset parameter.
///
public partial class DatasetParameter
{
private DateTimeDatasetParameter _dateTimeDatasetParameter;
private DecimalDatasetParameter _decimalDatasetParameter;
private IntegerDatasetParameter _integerDatasetParameter;
private StringDatasetParameter _stringDatasetParameter;
///
/// Gets and sets the property DateTimeDatasetParameter.
///
/// A date time parameter that is created in the dataset.
///
///
public DateTimeDatasetParameter DateTimeDatasetParameter
{
get { return this._dateTimeDatasetParameter; }
set { this._dateTimeDatasetParameter = value; }
}
// Check to see if DateTimeDatasetParameter property is set
internal bool IsSetDateTimeDatasetParameter()
{
return this._dateTimeDatasetParameter != null;
}
///
/// Gets and sets the property DecimalDatasetParameter.
///
/// A decimal parameter that is created in the dataset.
///
///
public DecimalDatasetParameter DecimalDatasetParameter
{
get { return this._decimalDatasetParameter; }
set { this._decimalDatasetParameter = value; }
}
// Check to see if DecimalDatasetParameter property is set
internal bool IsSetDecimalDatasetParameter()
{
return this._decimalDatasetParameter != null;
}
///
/// Gets and sets the property IntegerDatasetParameter.
///
/// An integer parameter that is created in the dataset.
///
///
public IntegerDatasetParameter IntegerDatasetParameter
{
get { return this._integerDatasetParameter; }
set { this._integerDatasetParameter = value; }
}
// Check to see if IntegerDatasetParameter property is set
internal bool IsSetIntegerDatasetParameter()
{
return this._integerDatasetParameter != null;
}
///
/// Gets and sets the property StringDatasetParameter.
///
/// A string parameter that is created in the dataset.
///
///
public StringDatasetParameter StringDatasetParameter
{
get { return this._stringDatasetParameter; }
set { this._stringDatasetParameter = value; }
}
// Check to see if StringDatasetParameter property is set
internal bool IsSetStringDatasetParameter()
{
return this._stringDatasetParameter != null;
}
}
}