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/resource-groups/ResourceGroups_EXPORTS.h>
|
|
#include <aws/resource-groups/model/GroupConfiguration.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 GetGroupConfigurationResult
|
|
{
|
|
public:
|
|
GetGroupConfigurationResult();
|
|
GetGroupConfigurationResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
GetGroupConfigurationResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The configuration associated with the specified group.</p>
|
|
*/
|
|
inline const GroupConfiguration& GetGroupConfiguration() const{ return m_groupConfiguration; }
|
|
|
|
/**
|
|
* <p>The configuration associated with the specified group.</p>
|
|
*/
|
|
inline void SetGroupConfiguration(const GroupConfiguration& value) { m_groupConfiguration = value; }
|
|
|
|
/**
|
|
* <p>The configuration associated with the specified group.</p>
|
|
*/
|
|
inline void SetGroupConfiguration(GroupConfiguration&& value) { m_groupConfiguration = std::move(value); }
|
|
|
|
/**
|
|
* <p>The configuration associated with the specified group.</p>
|
|
*/
|
|
inline GetGroupConfigurationResult& WithGroupConfiguration(const GroupConfiguration& value) { SetGroupConfiguration(value); return *this;}
|
|
|
|
/**
|
|
* <p>The configuration associated with the specified group.</p>
|
|
*/
|
|
inline GetGroupConfigurationResult& WithGroupConfiguration(GroupConfiguration&& value) { SetGroupConfiguration(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
GroupConfiguration m_groupConfiguration;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace ResourceGroups
|
|
} // namespace Aws
|