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

An object, structure, or sub-structure of an analysis, template, or * dashboard.

See Also:

AWS * API Reference

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

The hierarchical path of the entity within the analysis, template, or * dashboard definition tree.

*/ inline const Aws::String& GetPath() const{ return m_path; } /** *

The hierarchical path of the entity within the analysis, template, or * dashboard definition tree.

*/ inline bool PathHasBeenSet() const { return m_pathHasBeenSet; } /** *

The hierarchical path of the entity within the analysis, template, or * dashboard definition tree.

*/ inline void SetPath(const Aws::String& value) { m_pathHasBeenSet = true; m_path = value; } /** *

The hierarchical path of the entity within the analysis, template, or * dashboard definition tree.

*/ inline void SetPath(Aws::String&& value) { m_pathHasBeenSet = true; m_path = std::move(value); } /** *

The hierarchical path of the entity within the analysis, template, or * dashboard definition tree.

*/ inline void SetPath(const char* value) { m_pathHasBeenSet = true; m_path.assign(value); } /** *

The hierarchical path of the entity within the analysis, template, or * dashboard definition tree.

*/ inline Entity& WithPath(const Aws::String& value) { SetPath(value); return *this;} /** *

The hierarchical path of the entity within the analysis, template, or * dashboard definition tree.

*/ inline Entity& WithPath(Aws::String&& value) { SetPath(std::move(value)); return *this;} /** *

The hierarchical path of the entity within the analysis, template, or * dashboard definition tree.

*/ inline Entity& WithPath(const char* value) { SetPath(value); return *this;} private: Aws::String m_path; bool m_pathHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws