/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The image configuration of a table field URL.See Also:
AWS
* API Reference
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