/** * 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 image configuration of a table field URL.

See Also:

AWS * API Reference

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

The sizing options for the table image configuration.

*/ inline const TableCellImageSizingConfiguration& GetSizingOptions() const{ return m_sizingOptions; } /** *

The sizing options for the table image configuration.

*/ inline bool SizingOptionsHasBeenSet() const { return m_sizingOptionsHasBeenSet; } /** *

The sizing options for the table image configuration.

*/ inline void SetSizingOptions(const TableCellImageSizingConfiguration& value) { m_sizingOptionsHasBeenSet = true; m_sizingOptions = value; } /** *

The sizing options for the table image configuration.

*/ inline void SetSizingOptions(TableCellImageSizingConfiguration&& value) { m_sizingOptionsHasBeenSet = true; m_sizingOptions = std::move(value); } /** *

The sizing options for the table image configuration.

*/ inline TableFieldImageConfiguration& WithSizingOptions(const TableCellImageSizingConfiguration& value) { SetSizingOptions(value); return *this;} /** *

The sizing options for the table image configuration.

*/ inline TableFieldImageConfiguration& WithSizingOptions(TableCellImageSizingConfiguration&& value) { SetSizingOptions(std::move(value)); return *this;} private: TableCellImageSizingConfiguration m_sizingOptions; bool m_sizingOptionsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws