162 lines
5.6 KiB
C
162 lines
5.6 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/config/ConfigService_EXPORTS.h>
|
|||
|
|
#include <aws/config/ConfigServiceRequest.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace ConfigService
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
*/
|
|||
|
|
class AWS_CONFIGSERVICE_API SelectResourceConfigRequest : public ConfigServiceRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
SelectResourceConfigRequest();
|
|||
|
|
|
|||
|
|
// Service request name is the Operation name which will send this request out,
|
|||
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|||
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|||
|
|
// so we can not get operation's name from response.
|
|||
|
|
inline virtual const char* GetServiceRequestName() const override { return "SelectResourceConfig"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The SQL query <code>SELECT</code> command.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetExpression() const{ return m_expression; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The SQL query <code>SELECT</code> command.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool ExpressionHasBeenSet() const { return m_expressionHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The SQL query <code>SELECT</code> command.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetExpression(const Aws::String& value) { m_expressionHasBeenSet = true; m_expression = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The SQL query <code>SELECT</code> command.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetExpression(Aws::String&& value) { m_expressionHasBeenSet = true; m_expression = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The SQL query <code>SELECT</code> command.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetExpression(const char* value) { m_expressionHasBeenSet = true; m_expression.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The SQL query <code>SELECT</code> command.</p>
|
|||
|
|
*/
|
|||
|
|
inline SelectResourceConfigRequest& WithExpression(const Aws::String& value) { SetExpression(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The SQL query <code>SELECT</code> command.</p>
|
|||
|
|
*/
|
|||
|
|
inline SelectResourceConfigRequest& WithExpression(Aws::String&& value) { SetExpression(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The SQL query <code>SELECT</code> command.</p>
|
|||
|
|
*/
|
|||
|
|
inline SelectResourceConfigRequest& WithExpression(const char* value) { SetExpression(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The maximum number of query results returned on each page. </p>
|
|||
|
|
*/
|
|||
|
|
inline int GetLimit() const{ return m_limit; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The maximum number of query results returned on each page. </p>
|
|||
|
|
*/
|
|||
|
|
inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The maximum number of query results returned on each page. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The maximum number of query results returned on each page. </p>
|
|||
|
|
*/
|
|||
|
|
inline SelectResourceConfigRequest& WithLimit(int value) { SetLimit(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>nextToken</code> string returned in a previous request that you use
|
|||
|
|
* to request the next page of results in a paginated response. </p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>nextToken</code> string returned in a previous request that you use
|
|||
|
|
* to request the next page of results in a paginated response. </p>
|
|||
|
|
*/
|
|||
|
|
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>nextToken</code> string returned in a previous request that you use
|
|||
|
|
* to request the next page of results in a paginated response. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>nextToken</code> string returned in a previous request that you use
|
|||
|
|
* to request the next page of results in a paginated response. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>nextToken</code> string returned in a previous request that you use
|
|||
|
|
* to request the next page of results in a paginated response. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>nextToken</code> string returned in a previous request that you use
|
|||
|
|
* to request the next page of results in a paginated response. </p>
|
|||
|
|
*/
|
|||
|
|
inline SelectResourceConfigRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>nextToken</code> string returned in a previous request that you use
|
|||
|
|
* to request the next page of results in a paginated response. </p>
|
|||
|
|
*/
|
|||
|
|
inline SelectResourceConfigRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>nextToken</code> string returned in a previous request that you use
|
|||
|
|
* to request the next page of results in a paginated response. </p>
|
|||
|
|
*/
|
|||
|
|
inline SelectResourceConfigRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_expression;
|
|||
|
|
bool m_expressionHasBeenSet;
|
|||
|
|
|
|||
|
|
int m_limit;
|
|||
|
|
bool m_limitHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_nextToken;
|
|||
|
|
bool m_nextTokenHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace ConfigService
|
|||
|
|
} // namespace Aws
|