68 lines
1.8 KiB
C
68 lines
1.8 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/GroupQuery.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 GetGroupQueryResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
GetGroupQueryResult();
|
|||
|
|
GetGroupQueryResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
GetGroupQueryResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resource query associated with the specified group.</p>
|
|||
|
|
*/
|
|||
|
|
inline const GroupQuery& GetGroupQuery() const{ return m_groupQuery; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resource query associated with the specified group.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetGroupQuery(const GroupQuery& value) { m_groupQuery = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resource query associated with the specified group.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetGroupQuery(GroupQuery&& value) { m_groupQuery = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resource query associated with the specified group.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetGroupQueryResult& WithGroupQuery(const GroupQuery& value) { SetGroupQuery(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The resource query associated with the specified group.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetGroupQueryResult& WithGroupQuery(GroupQuery&& value) { SetGroupQuery(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
GroupQuery m_groupQuery;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace ResourceGroups
|
|||
|
|
} // namespace Aws
|