/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The paginated report options for a table visual.See Also:
* AWS
* API Reference
The visibility of printing table overflow across pages.
*/ inline const Visibility& GetVerticalOverflowVisibility() const{ return m_verticalOverflowVisibility; } /** *The visibility of printing table overflow across pages.
*/ inline bool VerticalOverflowVisibilityHasBeenSet() const { return m_verticalOverflowVisibilityHasBeenSet; } /** *The visibility of printing table overflow across pages.
*/ inline void SetVerticalOverflowVisibility(const Visibility& value) { m_verticalOverflowVisibilityHasBeenSet = true; m_verticalOverflowVisibility = value; } /** *The visibility of printing table overflow across pages.
*/ inline void SetVerticalOverflowVisibility(Visibility&& value) { m_verticalOverflowVisibilityHasBeenSet = true; m_verticalOverflowVisibility = std::move(value); } /** *The visibility of printing table overflow across pages.
*/ inline TablePaginatedReportOptions& WithVerticalOverflowVisibility(const Visibility& value) { SetVerticalOverflowVisibility(value); return *this;} /** *The visibility of printing table overflow across pages.
*/ inline TablePaginatedReportOptions& WithVerticalOverflowVisibility(Visibility&& value) { SetVerticalOverflowVisibility(std::move(value)); return *this;} /** *The visibility of repeating header rows on each page.
*/ inline const Visibility& GetOverflowColumnHeaderVisibility() const{ return m_overflowColumnHeaderVisibility; } /** *The visibility of repeating header rows on each page.
*/ inline bool OverflowColumnHeaderVisibilityHasBeenSet() const { return m_overflowColumnHeaderVisibilityHasBeenSet; } /** *The visibility of repeating header rows on each page.
*/ inline void SetOverflowColumnHeaderVisibility(const Visibility& value) { m_overflowColumnHeaderVisibilityHasBeenSet = true; m_overflowColumnHeaderVisibility = value; } /** *The visibility of repeating header rows on each page.
*/ inline void SetOverflowColumnHeaderVisibility(Visibility&& value) { m_overflowColumnHeaderVisibilityHasBeenSet = true; m_overflowColumnHeaderVisibility = std::move(value); } /** *The visibility of repeating header rows on each page.
*/ inline TablePaginatedReportOptions& WithOverflowColumnHeaderVisibility(const Visibility& value) { SetOverflowColumnHeaderVisibility(value); return *this;} /** *The visibility of repeating header rows on each page.
*/ inline TablePaginatedReportOptions& WithOverflowColumnHeaderVisibility(Visibility&& value) { SetOverflowColumnHeaderVisibility(std::move(value)); return *this;} private: Visibility m_verticalOverflowVisibility; bool m_verticalOverflowVisibilityHasBeenSet = false; Visibility m_overflowColumnHeaderVisibility; bool m_overflowColumnHeaderVisibilityHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws