/** * 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 ACMPCA { namespace Model { /** */ class ListCertificateAuthoritiesRequest : public ACMPCARequest { public: AWS_ACMPCA_API ListCertificateAuthoritiesRequest(); // 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 "ListCertificateAuthorities"; } AWS_ACMPCA_API Aws::String SerializePayload() const override; AWS_ACMPCA_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

Use this parameter when paginating results in a subsequent request after you * receive a response with truncated results. Set it to the value of the * NextToken parameter from the response you just received.

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

Use this parameter when paginating results in a subsequent request after you * receive a response with truncated results. Set it to the value of the * NextToken parameter from the response you just received.

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

Use this parameter when paginating results in a subsequent request after you * receive a response with truncated results. Set it to the value of the * NextToken parameter from the response you just received.

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

Use this parameter when paginating results in a subsequent request after you * receive a response with truncated results. Set it to the value of the * NextToken parameter from the response you just received.

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

Use this parameter when paginating results in a subsequent request after you * receive a response with truncated results. Set it to the value of the * NextToken parameter from the response you just received.

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

Use this parameter when paginating results in a subsequent request after you * receive a response with truncated results. Set it to the value of the * NextToken parameter from the response you just received.

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

Use this parameter when paginating results in a subsequent request after you * receive a response with truncated results. Set it to the value of the * NextToken parameter from the response you just received.

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

Use this parameter when paginating results in a subsequent request after you * receive a response with truncated results. Set it to the value of the * NextToken parameter from the response you just received.

*/ inline ListCertificateAuthoritiesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

Use this parameter when paginating results to specify the maximum number of * items to return in the response on each page. If additional items exist beyond * the number you specify, the NextToken element is sent in the * response. Use this NextToken value in a subsequent request to * retrieve additional items.

*/ inline int GetMaxResults() const{ return m_maxResults; } /** *

Use this parameter when paginating results to specify the maximum number of * items to return in the response on each page. If additional items exist beyond * the number you specify, the NextToken element is sent in the * response. Use this NextToken value in a subsequent request to * retrieve additional items.

*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *

Use this parameter when paginating results to specify the maximum number of * items to return in the response on each page. If additional items exist beyond * the number you specify, the NextToken element is sent in the * response. Use this NextToken value in a subsequent request to * retrieve additional items.

*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *

Use this parameter when paginating results to specify the maximum number of * items to return in the response on each page. If additional items exist beyond * the number you specify, the NextToken element is sent in the * response. Use this NextToken value in a subsequent request to * retrieve additional items.

*/ inline ListCertificateAuthoritiesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *

Use this parameter to filter the returned set of certificate authorities * based on their owner. The default is SELF.

*/ inline const ResourceOwner& GetResourceOwner() const{ return m_resourceOwner; } /** *

Use this parameter to filter the returned set of certificate authorities * based on their owner. The default is SELF.

*/ inline bool ResourceOwnerHasBeenSet() const { return m_resourceOwnerHasBeenSet; } /** *

Use this parameter to filter the returned set of certificate authorities * based on their owner. The default is SELF.

*/ inline void SetResourceOwner(const ResourceOwner& value) { m_resourceOwnerHasBeenSet = true; m_resourceOwner = value; } /** *

Use this parameter to filter the returned set of certificate authorities * based on their owner. The default is SELF.

*/ inline void SetResourceOwner(ResourceOwner&& value) { m_resourceOwnerHasBeenSet = true; m_resourceOwner = std::move(value); } /** *

Use this parameter to filter the returned set of certificate authorities * based on their owner. The default is SELF.

*/ inline ListCertificateAuthoritiesRequest& WithResourceOwner(const ResourceOwner& value) { SetResourceOwner(value); return *this;} /** *

Use this parameter to filter the returned set of certificate authorities * based on their owner. The default is SELF.

*/ inline ListCertificateAuthoritiesRequest& WithResourceOwner(ResourceOwner&& value) { SetResourceOwner(std::move(value)); return *this;} private: Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; ResourceOwner m_resourceOwner; bool m_resourceOwnerHasBeenSet = false; }; } // namespace Model } // namespace ACMPCA } // namespace Aws