/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about the levels of a hierarchy group.See
* Also:
AWS
* API Reference
Information about level one.
*/ inline const HierarchyGroupSummary& GetLevelOne() const{ return m_levelOne; } /** *Information about level one.
*/ inline bool LevelOneHasBeenSet() const { return m_levelOneHasBeenSet; } /** *Information about level one.
*/ inline void SetLevelOne(const HierarchyGroupSummary& value) { m_levelOneHasBeenSet = true; m_levelOne = value; } /** *Information about level one.
*/ inline void SetLevelOne(HierarchyGroupSummary&& value) { m_levelOneHasBeenSet = true; m_levelOne = std::move(value); } /** *Information about level one.
*/ inline HierarchyPath& WithLevelOne(const HierarchyGroupSummary& value) { SetLevelOne(value); return *this;} /** *Information about level one.
*/ inline HierarchyPath& WithLevelOne(HierarchyGroupSummary&& value) { SetLevelOne(std::move(value)); return *this;} /** *Information about level two.
*/ inline const HierarchyGroupSummary& GetLevelTwo() const{ return m_levelTwo; } /** *Information about level two.
*/ inline bool LevelTwoHasBeenSet() const { return m_levelTwoHasBeenSet; } /** *Information about level two.
*/ inline void SetLevelTwo(const HierarchyGroupSummary& value) { m_levelTwoHasBeenSet = true; m_levelTwo = value; } /** *Information about level two.
*/ inline void SetLevelTwo(HierarchyGroupSummary&& value) { m_levelTwoHasBeenSet = true; m_levelTwo = std::move(value); } /** *Information about level two.
*/ inline HierarchyPath& WithLevelTwo(const HierarchyGroupSummary& value) { SetLevelTwo(value); return *this;} /** *Information about level two.
*/ inline HierarchyPath& WithLevelTwo(HierarchyGroupSummary&& value) { SetLevelTwo(std::move(value)); return *this;} /** *Information about level three.
*/ inline const HierarchyGroupSummary& GetLevelThree() const{ return m_levelThree; } /** *Information about level three.
*/ inline bool LevelThreeHasBeenSet() const { return m_levelThreeHasBeenSet; } /** *Information about level three.
*/ inline void SetLevelThree(const HierarchyGroupSummary& value) { m_levelThreeHasBeenSet = true; m_levelThree = value; } /** *Information about level three.
*/ inline void SetLevelThree(HierarchyGroupSummary&& value) { m_levelThreeHasBeenSet = true; m_levelThree = std::move(value); } /** *Information about level three.
*/ inline HierarchyPath& WithLevelThree(const HierarchyGroupSummary& value) { SetLevelThree(value); return *this;} /** *Information about level three.
*/ inline HierarchyPath& WithLevelThree(HierarchyGroupSummary&& value) { SetLevelThree(std::move(value)); return *this;} /** *Information about level four.
*/ inline const HierarchyGroupSummary& GetLevelFour() const{ return m_levelFour; } /** *Information about level four.
*/ inline bool LevelFourHasBeenSet() const { return m_levelFourHasBeenSet; } /** *Information about level four.
*/ inline void SetLevelFour(const HierarchyGroupSummary& value) { m_levelFourHasBeenSet = true; m_levelFour = value; } /** *Information about level four.
*/ inline void SetLevelFour(HierarchyGroupSummary&& value) { m_levelFourHasBeenSet = true; m_levelFour = std::move(value); } /** *Information about level four.
*/ inline HierarchyPath& WithLevelFour(const HierarchyGroupSummary& value) { SetLevelFour(value); return *this;} /** *Information about level four.
*/ inline HierarchyPath& WithLevelFour(HierarchyGroupSummary&& value) { SetLevelFour(std::move(value)); return *this;} /** *Information about level five.
*/ inline const HierarchyGroupSummary& GetLevelFive() const{ return m_levelFive; } /** *Information about level five.
*/ inline bool LevelFiveHasBeenSet() const { return m_levelFiveHasBeenSet; } /** *Information about level five.
*/ inline void SetLevelFive(const HierarchyGroupSummary& value) { m_levelFiveHasBeenSet = true; m_levelFive = value; } /** *Information about level five.
*/ inline void SetLevelFive(HierarchyGroupSummary&& value) { m_levelFiveHasBeenSet = true; m_levelFive = std::move(value); } /** *Information about level five.
*/ inline HierarchyPath& WithLevelFive(const HierarchyGroupSummary& value) { SetLevelFive(value); return *this;} /** *Information about level five.
*/ inline HierarchyPath& WithLevelFive(HierarchyGroupSummary&& value) { SetLevelFive(std::move(value)); return *this;} private: HierarchyGroupSummary m_levelOne; bool m_levelOneHasBeenSet = false; HierarchyGroupSummary m_levelTwo; bool m_levelTwoHasBeenSet = false; HierarchyGroupSummary m_levelThree; bool m_levelThreeHasBeenSet = false; HierarchyGroupSummary m_levelFour; bool m_levelFourHasBeenSet = false; HierarchyGroupSummary m_levelFive; bool m_levelFiveHasBeenSet = false; }; } // namespace Model } // namespace Connect } // namespace Aws