/**
* 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 override configuration of the rendering rules of a sheet.
See
* Also:
AWS
* API Reference
*/
class SheetElementConfigurationOverrides
{
public:
AWS_QUICKSIGHT_API SheetElementConfigurationOverrides();
AWS_QUICKSIGHT_API SheetElementConfigurationOverrides(Aws::Utils::Json::JsonView jsonValue);
AWS_QUICKSIGHT_API SheetElementConfigurationOverrides& operator=(Aws::Utils::Json::JsonView jsonValue);
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
/**
* Determines whether or not the overrides are visible. Choose one of the
* following options:
*/
inline const Visibility& GetVisibility() const{ return m_visibility; }
/**
* Determines whether or not the overrides are visible. Choose one of the
* following options:
*/
inline bool VisibilityHasBeenSet() const { return m_visibilityHasBeenSet; }
/**
* Determines whether or not the overrides are visible. Choose one of the
* following options:
*/
inline void SetVisibility(const Visibility& value) { m_visibilityHasBeenSet = true; m_visibility = value; }
/**
* Determines whether or not the overrides are visible. Choose one of the
* following options:
*/
inline void SetVisibility(Visibility&& value) { m_visibilityHasBeenSet = true; m_visibility = std::move(value); }
/**
* Determines whether or not the overrides are visible. Choose one of the
* following options:
*/
inline SheetElementConfigurationOverrides& WithVisibility(const Visibility& value) { SetVisibility(value); return *this;}
/**
* Determines whether or not the overrides are visible. Choose one of the
* following options:
*/
inline SheetElementConfigurationOverrides& WithVisibility(Visibility&& value) { SetVisibility(std::move(value)); return *this;}
private:
Visibility m_visibility;
bool m_visibilityHasBeenSet = false;
};
} // namespace Model
} // namespace QuickSight
} // namespace Aws