68 lines
1.9 KiB
C++
68 lines
1.9 KiB
C++
/**
|
|
* 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/HierarchyStructure.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace Connect
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_CONNECT_API DescribeUserHierarchyStructureResult
|
|
{
|
|
public:
|
|
DescribeUserHierarchyStructureResult();
|
|
DescribeUserHierarchyStructureResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DescribeUserHierarchyStructureResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>Information about the hierarchy structure.</p>
|
|
*/
|
|
inline const HierarchyStructure& GetHierarchyStructure() const{ return m_hierarchyStructure; }
|
|
|
|
/**
|
|
* <p>Information about the hierarchy structure.</p>
|
|
*/
|
|
inline void SetHierarchyStructure(const HierarchyStructure& value) { m_hierarchyStructure = value; }
|
|
|
|
/**
|
|
* <p>Information about the hierarchy structure.</p>
|
|
*/
|
|
inline void SetHierarchyStructure(HierarchyStructure&& value) { m_hierarchyStructure = std::move(value); }
|
|
|
|
/**
|
|
* <p>Information about the hierarchy structure.</p>
|
|
*/
|
|
inline DescribeUserHierarchyStructureResult& WithHierarchyStructure(const HierarchyStructure& value) { SetHierarchyStructure(value); return *this;}
|
|
|
|
/**
|
|
* <p>Information about the hierarchy structure.</p>
|
|
*/
|
|
inline DescribeUserHierarchyStructureResult& WithHierarchyStructure(HierarchyStructure&& value) { SetHierarchyStructure(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
HierarchyStructure m_hierarchyStructure;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Connect
|
|
} // namespace Aws
|