190 lines
8.1 KiB
C
190 lines
8.1 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/AWSVector.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace ConfigService
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
*/
|
|||
|
|
class AWS_CONFIGSERVICE_API DescribeOrganizationConfigRulesRequest : public ConfigServiceRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
DescribeOrganizationConfigRulesRequest();
|
|||
|
|
|
|||
|
|
// 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 "DescribeOrganizationConfigRules"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The names of organization config rules for which you want details. If you do
|
|||
|
|
* not specify any names, AWS Config returns details for all your organization
|
|||
|
|
* config rules.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<Aws::String>& GetOrganizationConfigRuleNames() const{ return m_organizationConfigRuleNames; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The names of organization config rules for which you want details. If you do
|
|||
|
|
* not specify any names, AWS Config returns details for all your organization
|
|||
|
|
* config rules.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool OrganizationConfigRuleNamesHasBeenSet() const { return m_organizationConfigRuleNamesHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The names of organization config rules for which you want details. If you do
|
|||
|
|
* not specify any names, AWS Config returns details for all your organization
|
|||
|
|
* config rules.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetOrganizationConfigRuleNames(const Aws::Vector<Aws::String>& value) { m_organizationConfigRuleNamesHasBeenSet = true; m_organizationConfigRuleNames = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The names of organization config rules for which you want details. If you do
|
|||
|
|
* not specify any names, AWS Config returns details for all your organization
|
|||
|
|
* config rules.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetOrganizationConfigRuleNames(Aws::Vector<Aws::String>&& value) { m_organizationConfigRuleNamesHasBeenSet = true; m_organizationConfigRuleNames = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The names of organization config rules for which you want details. If you do
|
|||
|
|
* not specify any names, AWS Config returns details for all your organization
|
|||
|
|
* config rules.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeOrganizationConfigRulesRequest& WithOrganizationConfigRuleNames(const Aws::Vector<Aws::String>& value) { SetOrganizationConfigRuleNames(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The names of organization config rules for which you want details. If you do
|
|||
|
|
* not specify any names, AWS Config returns details for all your organization
|
|||
|
|
* config rules.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeOrganizationConfigRulesRequest& WithOrganizationConfigRuleNames(Aws::Vector<Aws::String>&& value) { SetOrganizationConfigRuleNames(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The names of organization config rules for which you want details. If you do
|
|||
|
|
* not specify any names, AWS Config returns details for all your organization
|
|||
|
|
* config rules.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeOrganizationConfigRulesRequest& AddOrganizationConfigRuleNames(const Aws::String& value) { m_organizationConfigRuleNamesHasBeenSet = true; m_organizationConfigRuleNames.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The names of organization config rules for which you want details. If you do
|
|||
|
|
* not specify any names, AWS Config returns details for all your organization
|
|||
|
|
* config rules.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeOrganizationConfigRulesRequest& AddOrganizationConfigRuleNames(Aws::String&& value) { m_organizationConfigRuleNamesHasBeenSet = true; m_organizationConfigRuleNames.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The names of organization config rules for which you want details. If you do
|
|||
|
|
* not specify any names, AWS Config returns details for all your organization
|
|||
|
|
* config rules.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeOrganizationConfigRulesRequest& AddOrganizationConfigRuleNames(const char* value) { m_organizationConfigRuleNamesHasBeenSet = true; m_organizationConfigRuleNames.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The maximum number of organization config rules returned on each page. If you
|
|||
|
|
* do no specify a number, AWS Config uses the default. The default is 100.</p>
|
|||
|
|
*/
|
|||
|
|
inline int GetLimit() const{ return m_limit; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The maximum number of organization config rules returned on each page. If you
|
|||
|
|
* do no specify a number, AWS Config uses the default. The default is 100.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The maximum number of organization config rules returned on each page. If you
|
|||
|
|
* do no specify a number, AWS Config uses the default. The default is 100.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The maximum number of organization config rules returned on each page. If you
|
|||
|
|
* do no specify a number, AWS Config uses the default. The default is 100.</p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeOrganizationConfigRulesRequest& WithLimit(int value) { SetLimit(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>nextToken</code> string returned on a previous page that you use to
|
|||
|
|
* get 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 on a previous page that you use to
|
|||
|
|
* get the next page of results in a paginated response. </p>
|
|||
|
|
*/
|
|||
|
|
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>nextToken</code> string returned on a previous page that you use to
|
|||
|
|
* get 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 on a previous page that you use to
|
|||
|
|
* get 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 on a previous page that you use to
|
|||
|
|
* get 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 on a previous page that you use to
|
|||
|
|
* get the next page of results in a paginated response. </p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeOrganizationConfigRulesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>nextToken</code> string returned on a previous page that you use to
|
|||
|
|
* get the next page of results in a paginated response. </p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeOrganizationConfigRulesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>nextToken</code> string returned on a previous page that you use to
|
|||
|
|
* get the next page of results in a paginated response. </p>
|
|||
|
|
*/
|
|||
|
|
inline DescribeOrganizationConfigRulesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::Vector<Aws::String> m_organizationConfigRuleNames;
|
|||
|
|
bool m_organizationConfigRuleNamesHasBeenSet;
|
|||
|
|
|
|||
|
|
int m_limit;
|
|||
|
|
bool m_limitHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_nextToken;
|
|||
|
|
bool m_nextTokenHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace ConfigService
|
|||
|
|
} // namespace Aws
|