/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The background style configuration of a free-form layout
* element.See Also:
AWS
* API Reference
The border visibility of a free-form layout element.
*/ inline const Visibility& GetVisibility() const{ return m_visibility; } /** *The border visibility of a free-form layout element.
*/ inline bool VisibilityHasBeenSet() const { return m_visibilityHasBeenSet; } /** *The border visibility of a free-form layout element.
*/ inline void SetVisibility(const Visibility& value) { m_visibilityHasBeenSet = true; m_visibility = value; } /** *The border visibility of a free-form layout element.
*/ inline void SetVisibility(Visibility&& value) { m_visibilityHasBeenSet = true; m_visibility = std::move(value); } /** *The border visibility of a free-form layout element.
*/ inline FreeFormLayoutElementBorderStyle& WithVisibility(const Visibility& value) { SetVisibility(value); return *this;} /** *The border visibility of a free-form layout element.
*/ inline FreeFormLayoutElementBorderStyle& WithVisibility(Visibility&& value) { SetVisibility(std::move(value)); return *this;} /** *The border color of a free-form layout element.
*/ inline const Aws::String& GetColor() const{ return m_color; } /** *The border color of a free-form layout element.
*/ inline bool ColorHasBeenSet() const { return m_colorHasBeenSet; } /** *The border color of a free-form layout element.
*/ inline void SetColor(const Aws::String& value) { m_colorHasBeenSet = true; m_color = value; } /** *The border color of a free-form layout element.
*/ inline void SetColor(Aws::String&& value) { m_colorHasBeenSet = true; m_color = std::move(value); } /** *The border color of a free-form layout element.
*/ inline void SetColor(const char* value) { m_colorHasBeenSet = true; m_color.assign(value); } /** *The border color of a free-form layout element.
*/ inline FreeFormLayoutElementBorderStyle& WithColor(const Aws::String& value) { SetColor(value); return *this;} /** *The border color of a free-form layout element.
*/ inline FreeFormLayoutElementBorderStyle& WithColor(Aws::String&& value) { SetColor(std::move(value)); return *this;} /** *The border color of a free-form layout element.
*/ inline FreeFormLayoutElementBorderStyle& WithColor(const char* value) { SetColor(value); return *this;} private: Visibility m_visibility; bool m_visibilityHasBeenSet = false; Aws::String m_color; bool m_colorHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws