/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object, structure, or sub-structure of an analysis, template, or
* dashboard.See Also:
AWS
* API Reference
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