/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Configuration options for the canvas of a free-form layout.See
* Also:
AWS
* API Reference
The options that determine the sizing of the canvas used in a free-form * layout.
*/ inline const FreeFormLayoutScreenCanvasSizeOptions& GetScreenCanvasSizeOptions() const{ return m_screenCanvasSizeOptions; } /** *The options that determine the sizing of the canvas used in a free-form * layout.
*/ inline bool ScreenCanvasSizeOptionsHasBeenSet() const { return m_screenCanvasSizeOptionsHasBeenSet; } /** *The options that determine the sizing of the canvas used in a free-form * layout.
*/ inline void SetScreenCanvasSizeOptions(const FreeFormLayoutScreenCanvasSizeOptions& value) { m_screenCanvasSizeOptionsHasBeenSet = true; m_screenCanvasSizeOptions = value; } /** *The options that determine the sizing of the canvas used in a free-form * layout.
*/ inline void SetScreenCanvasSizeOptions(FreeFormLayoutScreenCanvasSizeOptions&& value) { m_screenCanvasSizeOptionsHasBeenSet = true; m_screenCanvasSizeOptions = std::move(value); } /** *The options that determine the sizing of the canvas used in a free-form * layout.
*/ inline FreeFormLayoutCanvasSizeOptions& WithScreenCanvasSizeOptions(const FreeFormLayoutScreenCanvasSizeOptions& value) { SetScreenCanvasSizeOptions(value); return *this;} /** *The options that determine the sizing of the canvas used in a free-form * layout.
*/ inline FreeFormLayoutCanvasSizeOptions& WithScreenCanvasSizeOptions(FreeFormLayoutScreenCanvasSizeOptions&& value) { SetScreenCanvasSizeOptions(std::move(value)); return *this;} private: FreeFormLayoutScreenCanvasSizeOptions m_screenCanvasSizeOptions; bool m_screenCanvasSizeOptionsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws