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-cognito-idp/include/aws/cognito-idp/model/GetGroupResult.h

68 lines
1.6 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/cognito-idp/CognitoIdentityProvider_EXPORTS.h>
#include <aws/cognito-idp/model/GroupType.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace CognitoIdentityProvider
{
namespace Model
{
class AWS_COGNITOIDENTITYPROVIDER_API GetGroupResult
{
public:
GetGroupResult();
GetGroupResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetGroupResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The group object for the group.</p>
*/
inline const GroupType& GetGroup() const{ return m_group; }
/**
* <p>The group object for the group.</p>
*/
inline void SetGroup(const GroupType& value) { m_group = value; }
/**
* <p>The group object for the group.</p>
*/
inline void SetGroup(GroupType&& value) { m_group = std::move(value); }
/**
* <p>The group object for the group.</p>
*/
inline GetGroupResult& WithGroup(const GroupType& value) { SetGroup(value); return *this;}
/**
* <p>The group object for the group.</p>
*/
inline GetGroupResult& WithGroup(GroupType&& value) { SetGroup(std::move(value)); return *this;}
private:
GroupType m_group;
};
} // namespace Model
} // namespace CognitoIdentityProvider
} // namespace Aws