This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-connect/include/aws/connect/model/HierarchyPath.h

216 lines
6.2 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/connect/Connect_EXPORTS.h>
#include <aws/connect/model/HierarchyGroupSummary.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace Connect
{
namespace Model
{
/**
* <p>Contains information about the levels of a hierarchy group.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HierarchyPath">AWS
* API Reference</a></p>
*/
class AWS_CONNECT_API HierarchyPath
{
public:
HierarchyPath();
HierarchyPath(Aws::Utils::Json::JsonView jsonValue);
HierarchyPath& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>Information about level one.</p>
*/
inline const HierarchyGroupSummary& GetLevelOne() const{ return m_levelOne; }
/**
* <p>Information about level one.</p>
*/
inline bool LevelOneHasBeenSet() const { return m_levelOneHasBeenSet; }
/**
* <p>Information about level one.</p>
*/
inline void SetLevelOne(const HierarchyGroupSummary& value) { m_levelOneHasBeenSet = true; m_levelOne = value; }
/**
* <p>Information about level one.</p>
*/
inline void SetLevelOne(HierarchyGroupSummary&& value) { m_levelOneHasBeenSet = true; m_levelOne = std::move(value); }
/**
* <p>Information about level one.</p>
*/
inline HierarchyPath& WithLevelOne(const HierarchyGroupSummary& value) { SetLevelOne(value); return *this;}
/**
* <p>Information about level one.</p>
*/
inline HierarchyPath& WithLevelOne(HierarchyGroupSummary&& value) { SetLevelOne(std::move(value)); return *this;}
/**
* <p>Information about level two.</p>
*/
inline const HierarchyGroupSummary& GetLevelTwo() const{ return m_levelTwo; }
/**
* <p>Information about level two.</p>
*/
inline bool LevelTwoHasBeenSet() const { return m_levelTwoHasBeenSet; }
/**
* <p>Information about level two.</p>
*/
inline void SetLevelTwo(const HierarchyGroupSummary& value) { m_levelTwoHasBeenSet = true; m_levelTwo = value; }
/**
* <p>Information about level two.</p>
*/
inline void SetLevelTwo(HierarchyGroupSummary&& value) { m_levelTwoHasBeenSet = true; m_levelTwo = std::move(value); }
/**
* <p>Information about level two.</p>
*/
inline HierarchyPath& WithLevelTwo(const HierarchyGroupSummary& value) { SetLevelTwo(value); return *this;}
/**
* <p>Information about level two.</p>
*/
inline HierarchyPath& WithLevelTwo(HierarchyGroupSummary&& value) { SetLevelTwo(std::move(value)); return *this;}
/**
* <p>Information about level three.</p>
*/
inline const HierarchyGroupSummary& GetLevelThree() const{ return m_levelThree; }
/**
* <p>Information about level three.</p>
*/
inline bool LevelThreeHasBeenSet() const { return m_levelThreeHasBeenSet; }
/**
* <p>Information about level three.</p>
*/
inline void SetLevelThree(const HierarchyGroupSummary& value) { m_levelThreeHasBeenSet = true; m_levelThree = value; }
/**
* <p>Information about level three.</p>
*/
inline void SetLevelThree(HierarchyGroupSummary&& value) { m_levelThreeHasBeenSet = true; m_levelThree = std::move(value); }
/**
* <p>Information about level three.</p>
*/
inline HierarchyPath& WithLevelThree(const HierarchyGroupSummary& value) { SetLevelThree(value); return *this;}
/**
* <p>Information about level three.</p>
*/
inline HierarchyPath& WithLevelThree(HierarchyGroupSummary&& value) { SetLevelThree(std::move(value)); return *this;}
/**
* <p>Information about level four.</p>
*/
inline const HierarchyGroupSummary& GetLevelFour() const{ return m_levelFour; }
/**
* <p>Information about level four.</p>
*/
inline bool LevelFourHasBeenSet() const { return m_levelFourHasBeenSet; }
/**
* <p>Information about level four.</p>
*/
inline void SetLevelFour(const HierarchyGroupSummary& value) { m_levelFourHasBeenSet = true; m_levelFour = value; }
/**
* <p>Information about level four.</p>
*/
inline void SetLevelFour(HierarchyGroupSummary&& value) { m_levelFourHasBeenSet = true; m_levelFour = std::move(value); }
/**
* <p>Information about level four.</p>
*/
inline HierarchyPath& WithLevelFour(const HierarchyGroupSummary& value) { SetLevelFour(value); return *this;}
/**
* <p>Information about level four.</p>
*/
inline HierarchyPath& WithLevelFour(HierarchyGroupSummary&& value) { SetLevelFour(std::move(value)); return *this;}
/**
* <p>Information about level five.</p>
*/
inline const HierarchyGroupSummary& GetLevelFive() const{ return m_levelFive; }
/**
* <p>Information about level five.</p>
*/
inline bool LevelFiveHasBeenSet() const { return m_levelFiveHasBeenSet; }
/**
* <p>Information about level five.</p>
*/
inline void SetLevelFive(const HierarchyGroupSummary& value) { m_levelFiveHasBeenSet = true; m_levelFive = value; }
/**
* <p>Information about level five.</p>
*/
inline void SetLevelFive(HierarchyGroupSummary&& value) { m_levelFiveHasBeenSet = true; m_levelFive = std::move(value); }
/**
* <p>Information about level five.</p>
*/
inline HierarchyPath& WithLevelFive(const HierarchyGroupSummary& value) { SetLevelFive(value); return *this;}
/**
* <p>Information about level five.</p>
*/
inline HierarchyPath& WithLevelFive(HierarchyGroupSummary&& value) { SetLevelFive(std::move(value)); return *this;}
private:
HierarchyGroupSummary m_levelOne;
bool m_levelOneHasBeenSet;
HierarchyGroupSummary m_levelTwo;
bool m_levelTwoHasBeenSet;
HierarchyGroupSummary m_levelThree;
bool m_levelThreeHasBeenSet;
HierarchyGroupSummary m_levelFour;
bool m_levelFourHasBeenSet;
HierarchyGroupSummary m_levelFive;
bool m_levelFiveHasBeenSet;
};
} // namespace Model
} // namespace Connect
} // namespace Aws