/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Http { class URI; } //namespace Http namespace SESV2 { namespace Model { /** *

A request to obtain more information about dedicated IP pools.

See * Also:

AWS * API Reference

*/ class GetDedicatedIpsRequest : public SESV2Request { public: AWS_SESV2_API GetDedicatedIpsRequest(); // 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 "GetDedicatedIps"; } AWS_SESV2_API Aws::String SerializePayload() const override; AWS_SESV2_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** *

The name of the IP pool that the dedicated IP address is associated with.

*/ inline const Aws::String& GetPoolName() const{ return m_poolName; } /** *

The name of the IP pool that the dedicated IP address is associated with.

*/ inline bool PoolNameHasBeenSet() const { return m_poolNameHasBeenSet; } /** *

The name of the IP pool that the dedicated IP address is associated with.

*/ inline void SetPoolName(const Aws::String& value) { m_poolNameHasBeenSet = true; m_poolName = value; } /** *

The name of the IP pool that the dedicated IP address is associated with.

*/ inline void SetPoolName(Aws::String&& value) { m_poolNameHasBeenSet = true; m_poolName = std::move(value); } /** *

The name of the IP pool that the dedicated IP address is associated with.

*/ inline void SetPoolName(const char* value) { m_poolNameHasBeenSet = true; m_poolName.assign(value); } /** *

The name of the IP pool that the dedicated IP address is associated with.

*/ inline GetDedicatedIpsRequest& WithPoolName(const Aws::String& value) { SetPoolName(value); return *this;} /** *

The name of the IP pool that the dedicated IP address is associated with.

*/ inline GetDedicatedIpsRequest& WithPoolName(Aws::String&& value) { SetPoolName(std::move(value)); return *this;} /** *

The name of the IP pool that the dedicated IP address is associated with.

*/ inline GetDedicatedIpsRequest& WithPoolName(const char* value) { SetPoolName(value); return *this;} /** *

A token returned from a previous call to GetDedicatedIps to * indicate the position of the dedicated IP pool in the list of IP pools.

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

A token returned from a previous call to GetDedicatedIps to * indicate the position of the dedicated IP pool in the list of IP pools.

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

A token returned from a previous call to GetDedicatedIps to * indicate the position of the dedicated IP pool in the list of IP pools.

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

A token returned from a previous call to GetDedicatedIps to * indicate the position of the dedicated IP pool in the list of IP pools.

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

A token returned from a previous call to GetDedicatedIps to * indicate the position of the dedicated IP pool in the list of IP pools.

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

A token returned from a previous call to GetDedicatedIps to * indicate the position of the dedicated IP pool in the list of IP pools.

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

A token returned from a previous call to GetDedicatedIps to * indicate the position of the dedicated IP pool in the list of IP pools.

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

A token returned from a previous call to GetDedicatedIps to * indicate the position of the dedicated IP pool in the list of IP pools.

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

The number of results to show in a single call to * GetDedicatedIpsRequest. If the number of results is larger than the * number you specified in this parameter, then the response includes a * NextToken element, which you can use to obtain additional * results.

*/ inline int GetPageSize() const{ return m_pageSize; } /** *

The number of results to show in a single call to * GetDedicatedIpsRequest. If the number of results is larger than the * number you specified in this parameter, then the response includes a * NextToken element, which you can use to obtain additional * results.

*/ inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; } /** *

The number of results to show in a single call to * GetDedicatedIpsRequest. If the number of results is larger than the * number you specified in this parameter, then the response includes a * NextToken element, which you can use to obtain additional * results.

*/ inline void SetPageSize(int value) { m_pageSizeHasBeenSet = true; m_pageSize = value; } /** *

The number of results to show in a single call to * GetDedicatedIpsRequest. If the number of results is larger than the * number you specified in this parameter, then the response includes a * NextToken element, which you can use to obtain additional * results.

*/ inline GetDedicatedIpsRequest& WithPageSize(int value) { SetPageSize(value); return *this;} private: Aws::String m_poolName; bool m_poolNameHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_pageSize; bool m_pageSizeHasBeenSet = false; }; } // namespace Model } // namespace SESV2 } // namespace Aws