68 lines
1.6 KiB
C
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/resource-groups/ResourceGroups_EXPORTS.h>
|
|||
|
|
#include <aws/resource-groups/model/Group.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace ResourceGroups
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
class AWS_RESOURCEGROUPS_API UpdateGroupResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
UpdateGroupResult();
|
|||
|
|
UpdateGroupResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
UpdateGroupResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The update description of the resource group.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Group& GetGroup() const{ return m_group; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The update description of the resource group.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetGroup(const Group& value) { m_group = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The update description of the resource group.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetGroup(Group&& value) { m_group = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The update description of the resource group.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateGroupResult& WithGroup(const Group& value) { SetGroup(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The update description of the resource group.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateGroupResult& WithGroup(Group&& value) { SetGroup(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Group m_group;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace ResourceGroups
|
|||
|
|
} // namespace Aws
|