/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace ConfigService { namespace Model { /** */ class DescribeOrganizationConformancePackStatusesRequest : public ConfigServiceRequest { public: AWS_CONFIGSERVICE_API DescribeOrganizationConformancePackStatusesRequest(); // 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 "DescribeOrganizationConformancePackStatuses"; } AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override; AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The names of organization conformance packs for which you want status * details. If you do not specify any names, Config returns details for all your * organization conformance packs.

*/ inline const Aws::Vector& GetOrganizationConformancePackNames() const{ return m_organizationConformancePackNames; } /** *

The names of organization conformance packs for which you want status * details. If you do not specify any names, Config returns details for all your * organization conformance packs.

*/ inline bool OrganizationConformancePackNamesHasBeenSet() const { return m_organizationConformancePackNamesHasBeenSet; } /** *

The names of organization conformance packs for which you want status * details. If you do not specify any names, Config returns details for all your * organization conformance packs.

*/ inline void SetOrganizationConformancePackNames(const Aws::Vector& value) { m_organizationConformancePackNamesHasBeenSet = true; m_organizationConformancePackNames = value; } /** *

The names of organization conformance packs for which you want status * details. If you do not specify any names, Config returns details for all your * organization conformance packs.

*/ inline void SetOrganizationConformancePackNames(Aws::Vector&& value) { m_organizationConformancePackNamesHasBeenSet = true; m_organizationConformancePackNames = std::move(value); } /** *

The names of organization conformance packs for which you want status * details. If you do not specify any names, Config returns details for all your * organization conformance packs.

*/ inline DescribeOrganizationConformancePackStatusesRequest& WithOrganizationConformancePackNames(const Aws::Vector& value) { SetOrganizationConformancePackNames(value); return *this;} /** *

The names of organization conformance packs for which you want status * details. If you do not specify any names, Config returns details for all your * organization conformance packs.

*/ inline DescribeOrganizationConformancePackStatusesRequest& WithOrganizationConformancePackNames(Aws::Vector&& value) { SetOrganizationConformancePackNames(std::move(value)); return *this;} /** *

The names of organization conformance packs for which you want status * details. If you do not specify any names, Config returns details for all your * organization conformance packs.

*/ inline DescribeOrganizationConformancePackStatusesRequest& AddOrganizationConformancePackNames(const Aws::String& value) { m_organizationConformancePackNamesHasBeenSet = true; m_organizationConformancePackNames.push_back(value); return *this; } /** *

The names of organization conformance packs for which you want status * details. If you do not specify any names, Config returns details for all your * organization conformance packs.

*/ inline DescribeOrganizationConformancePackStatusesRequest& AddOrganizationConformancePackNames(Aws::String&& value) { m_organizationConformancePackNamesHasBeenSet = true; m_organizationConformancePackNames.push_back(std::move(value)); return *this; } /** *

The names of organization conformance packs for which you want status * details. If you do not specify any names, Config returns details for all your * organization conformance packs.

*/ inline DescribeOrganizationConformancePackStatusesRequest& AddOrganizationConformancePackNames(const char* value) { m_organizationConformancePackNamesHasBeenSet = true; m_organizationConformancePackNames.push_back(value); return *this; } /** *

The maximum number of OrganizationConformancePackStatuses returned on each * page. If you do no specify a number, Config uses the default. The default is * 100.

*/ inline int GetLimit() const{ return m_limit; } /** *

The maximum number of OrganizationConformancePackStatuses returned on each * page. If you do no specify a number, Config uses the default. The default is * 100.

*/ inline bool LimitHasBeenSet() const { return m_limitHasBeenSet; } /** *

The maximum number of OrganizationConformancePackStatuses returned on each * page. If you do no specify a number, Config uses the default. The default is * 100.

*/ inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; } /** *

The maximum number of OrganizationConformancePackStatuses returned on each * page. If you do no specify a number, Config uses the default. The default is * 100.

*/ inline DescribeOrganizationConformancePackStatusesRequest& WithLimit(int value) { SetLimit(value); return *this;} /** *

The nextToken string returned on a previous page that you use to get the next * page of results in a paginated response.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

The nextToken string returned on a previous page that you use to get the next * page of results in a paginated response.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

The nextToken string returned on a previous page that you use to get the next * page of results in a paginated response.

*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *

The nextToken string returned on a previous page that you use to get the next * page of results in a paginated response.

*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *

The nextToken string returned on a previous page that you use to get the next * page of results in a paginated response.

*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *

The nextToken string returned on a previous page that you use to get the next * page of results in a paginated response.

*/ inline DescribeOrganizationConformancePackStatusesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

The nextToken string returned on a previous page that you use to get the next * page of results in a paginated response.

*/ inline DescribeOrganizationConformancePackStatusesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

The nextToken string returned on a previous page that you use to get the next * page of results in a paginated response.

*/ inline DescribeOrganizationConformancePackStatusesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::Vector m_organizationConformancePackNames; bool m_organizationConformancePackNamesHasBeenSet = false; int m_limit; bool m_limitHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace ConfigService } // namespace Aws