/*
* 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 aggregated field well of a scatter plot.
///
public partial class ScatterPlotCategoricallyAggregatedFieldWells
{
private List _category = new List();
private List _label = new List();
private List _size = new List();
private List _xAxis = new List();
private List _yAxis = new List();
///
/// Gets and sets the property Category.
///
/// The category field well of a scatter plot.
///
///
[AWSProperty(Max=200)]
public List Category
{
get { return this._category; }
set { this._category = value; }
}
// Check to see if Category property is set
internal bool IsSetCategory()
{
return this._category != null && this._category.Count > 0;
}
///
/// Gets and sets the property Label.
///
/// The label field well of a scatter plot.
///
///
[AWSProperty(Max=200)]
public List Label
{
get { return this._label; }
set { this._label = value; }
}
// Check to see if Label property is set
internal bool IsSetLabel()
{
return this._label != null && this._label.Count > 0;
}
///
/// Gets and sets the property Size.
///
/// The size field well of a scatter plot.
///
///
[AWSProperty(Max=200)]
public List Size
{
get { return this._size; }
set { this._size = value; }
}
// Check to see if Size property is set
internal bool IsSetSize()
{
return this._size != null && this._size.Count > 0;
}
///
/// Gets and sets the property XAxis.
///
/// The x-axis field well of a scatter plot.
///
///
///
/// The x-axis is aggregated by category.
///
///
[AWSProperty(Max=200)]
public List XAxis
{
get { return this._xAxis; }
set { this._xAxis = value; }
}
// Check to see if XAxis property is set
internal bool IsSetXAxis()
{
return this._xAxis != null && this._xAxis.Count > 0;
}
///
/// Gets and sets the property YAxis.
///
/// The y-axis field well of a scatter plot.
///
///
///
/// The y-axis is aggregated by category.
///
///
[AWSProperty(Max=200)]
public List YAxis
{
get { return this._yAxis; }
set { this._yAxis = value; }
}
// Check to see if YAxis property is set
internal bool IsSetYAxis()
{
return this._yAxis != null && this._yAxis.Count > 0;
}
}
}