/** * 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 { /** *

Determines if hidden fields are included in an exported * dashboard.

See Also:

AWS * API Reference

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

The status of the export hidden fields options of a dashbaord.

*/ inline const DashboardBehavior& GetAvailabilityStatus() const{ return m_availabilityStatus; } /** *

The status of the export hidden fields options of a dashbaord.

*/ inline bool AvailabilityStatusHasBeenSet() const { return m_availabilityStatusHasBeenSet; } /** *

The status of the export hidden fields options of a dashbaord.

*/ inline void SetAvailabilityStatus(const DashboardBehavior& value) { m_availabilityStatusHasBeenSet = true; m_availabilityStatus = value; } /** *

The status of the export hidden fields options of a dashbaord.

*/ inline void SetAvailabilityStatus(DashboardBehavior&& value) { m_availabilityStatusHasBeenSet = true; m_availabilityStatus = std::move(value); } /** *

The status of the export hidden fields options of a dashbaord.

*/ inline ExportHiddenFieldsOption& WithAvailabilityStatus(const DashboardBehavior& value) { SetAvailabilityStatus(value); return *this;} /** *

The status of the export hidden fields options of a dashbaord.

*/ inline ExportHiddenFieldsOption& WithAvailabilityStatus(DashboardBehavior&& value) { SetAvailabilityStatus(std::move(value)); return *this;} private: DashboardBehavior m_availabilityStatus; bool m_availabilityStatusHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws