/* * 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 sort configuration of a heat map. /// public partial class HeatMapSortConfiguration { private ItemsLimitConfiguration _heatMapColumnItemsLimitConfiguration; private List _heatMapColumnSort = new List(); private ItemsLimitConfiguration _heatMapRowItemsLimitConfiguration; private List _heatMapRowSort = new List(); /// /// Gets and sets the property HeatMapColumnItemsLimitConfiguration. /// /// The limit on the number of columns that are displayed in a heat map. /// /// public ItemsLimitConfiguration HeatMapColumnItemsLimitConfiguration { get { return this._heatMapColumnItemsLimitConfiguration; } set { this._heatMapColumnItemsLimitConfiguration = value; } } // Check to see if HeatMapColumnItemsLimitConfiguration property is set internal bool IsSetHeatMapColumnItemsLimitConfiguration() { return this._heatMapColumnItemsLimitConfiguration != null; } /// /// Gets and sets the property HeatMapColumnSort. /// /// The column sort configuration for heat map for columns that aren't a part of a field /// well. /// /// [AWSProperty(Max=100)] public List HeatMapColumnSort { get { return this._heatMapColumnSort; } set { this._heatMapColumnSort = value; } } // Check to see if HeatMapColumnSort property is set internal bool IsSetHeatMapColumnSort() { return this._heatMapColumnSort != null && this._heatMapColumnSort.Count > 0; } /// /// Gets and sets the property HeatMapRowItemsLimitConfiguration. /// /// The limit on the number of rows that are displayed in a heat map. /// /// public ItemsLimitConfiguration HeatMapRowItemsLimitConfiguration { get { return this._heatMapRowItemsLimitConfiguration; } set { this._heatMapRowItemsLimitConfiguration = value; } } // Check to see if HeatMapRowItemsLimitConfiguration property is set internal bool IsSetHeatMapRowItemsLimitConfiguration() { return this._heatMapRowItemsLimitConfiguration != null; } /// /// Gets and sets the property HeatMapRowSort. /// /// The field sort configuration of the rows fields. /// /// [AWSProperty(Max=100)] public List HeatMapRowSort { get { return this._heatMapRowSort; } set { this._heatMapRowSort = value; } } // Check to see if HeatMapRowSort property is set internal bool IsSetHeatMapRowSort() { return this._heatMapRowSort != null && this._heatMapRowSort.Count > 0; } } }