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-resource-groups/include/aws/resource-groups/model/GetGroupConfigurationResult.h

68 lines
1.9 KiB
C
Raw Normal View History

/**
* 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