/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { /** *

The sizing options for the table image configuration.

See * Also:

AWS * API Reference

*/ class TableCellImageSizingConfiguration { public: AWS_QUICKSIGHT_API TableCellImageSizingConfiguration(); AWS_QUICKSIGHT_API TableCellImageSizingConfiguration(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API TableCellImageSizingConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The cell scaling configuration of the sizing options for the table image * configuration.

*/ inline const TableCellImageScalingConfiguration& GetTableCellImageScalingConfiguration() const{ return m_tableCellImageScalingConfiguration; } /** *

The cell scaling configuration of the sizing options for the table image * configuration.

*/ inline bool TableCellImageScalingConfigurationHasBeenSet() const { return m_tableCellImageScalingConfigurationHasBeenSet; } /** *

The cell scaling configuration of the sizing options for the table image * configuration.

*/ inline void SetTableCellImageScalingConfiguration(const TableCellImageScalingConfiguration& value) { m_tableCellImageScalingConfigurationHasBeenSet = true; m_tableCellImageScalingConfiguration = value; } /** *

The cell scaling configuration of the sizing options for the table image * configuration.

*/ inline void SetTableCellImageScalingConfiguration(TableCellImageScalingConfiguration&& value) { m_tableCellImageScalingConfigurationHasBeenSet = true; m_tableCellImageScalingConfiguration = std::move(value); } /** *

The cell scaling configuration of the sizing options for the table image * configuration.

*/ inline TableCellImageSizingConfiguration& WithTableCellImageScalingConfiguration(const TableCellImageScalingConfiguration& value) { SetTableCellImageScalingConfiguration(value); return *this;} /** *

The cell scaling configuration of the sizing options for the table image * configuration.

*/ inline TableCellImageSizingConfiguration& WithTableCellImageScalingConfiguration(TableCellImageScalingConfiguration&& value) { SetTableCellImageScalingConfiguration(std::move(value)); return *this;} private: TableCellImageScalingConfiguration m_tableCellImageScalingConfiguration; bool m_tableCellImageScalingConfigurationHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws