This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-pinpoint-email/include/aws/pinpoint-email/model/GetDedicatedIpsRequest.h

186 lines
7.1 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/pinpoint-email/PinpointEmail_EXPORTS.h>
#include <aws/pinpoint-email/PinpointEmailRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Http
{
class URI;
} //namespace Http
namespace PinpointEmail
{
namespace Model
{
/**
* <p>A request to obtain more information about dedicated IP pools.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/pinpoint-email-2018-07-26/GetDedicatedIpsRequest">AWS
* API Reference</a></p>
*/
class AWS_PINPOINTEMAIL_API GetDedicatedIpsRequest : public PinpointEmailRequest
{
public:
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::String SerializePayload() const override;
void AddQueryStringParameters(Aws::Http::URI& uri) const override;
/**
* <p>The name of the IP pool that the dedicated IP address is associated with.</p>
*/
inline const Aws::String& GetPoolName() const{ return m_poolName; }
/**
* <p>The name of the IP pool that the dedicated IP address is associated with.</p>
*/
inline bool PoolNameHasBeenSet() const { return m_poolNameHasBeenSet; }
/**
* <p>The name of the IP pool that the dedicated IP address is associated with.</p>
*/
inline void SetPoolName(const Aws::String& value) { m_poolNameHasBeenSet = true; m_poolName = value; }
/**
* <p>The name of the IP pool that the dedicated IP address is associated with.</p>
*/
inline void SetPoolName(Aws::String&& value) { m_poolNameHasBeenSet = true; m_poolName = std::move(value); }
/**
* <p>The name of the IP pool that the dedicated IP address is associated with.</p>
*/
inline void SetPoolName(const char* value) { m_poolNameHasBeenSet = true; m_poolName.assign(value); }
/**
* <p>The name of the IP pool that the dedicated IP address is associated with.</p>
*/
inline GetDedicatedIpsRequest& WithPoolName(const Aws::String& value) { SetPoolName(value); return *this;}
/**
* <p>The name of the IP pool that the dedicated IP address is associated with.</p>
*/
inline GetDedicatedIpsRequest& WithPoolName(Aws::String&& value) { SetPoolName(std::move(value)); return *this;}
/**
* <p>The name of the IP pool that the dedicated IP address is associated with.</p>
*/
inline GetDedicatedIpsRequest& WithPoolName(const char* value) { SetPoolName(value); return *this;}
/**
* <p>A token returned from a previous call to <code>GetDedicatedIps</code> to
* indicate the position of the dedicated IP pool in the list of IP pools.</p>
*/
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
/**
* <p>A token returned from a previous call to <code>GetDedicatedIps</code> to
* indicate the position of the dedicated IP pool in the list of IP pools.</p>
*/
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
/**
* <p>A token returned from a previous call to <code>GetDedicatedIps</code> to
* indicate the position of the dedicated IP pool in the list of IP pools.</p>
*/
inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
/**
* <p>A token returned from a previous call to <code>GetDedicatedIps</code> to
* indicate the position of the dedicated IP pool in the list of IP pools.</p>
*/
inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
/**
* <p>A token returned from a previous call to <code>GetDedicatedIps</code> to
* indicate the position of the dedicated IP pool in the list of IP pools.</p>
*/
inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
/**
* <p>A token returned from a previous call to <code>GetDedicatedIps</code> to
* indicate the position of the dedicated IP pool in the list of IP pools.</p>
*/
inline GetDedicatedIpsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
/**
* <p>A token returned from a previous call to <code>GetDedicatedIps</code> to
* indicate the position of the dedicated IP pool in the list of IP pools.</p>
*/
inline GetDedicatedIpsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
/**
* <p>A token returned from a previous call to <code>GetDedicatedIps</code> to
* indicate the position of the dedicated IP pool in the list of IP pools.</p>
*/
inline GetDedicatedIpsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
/**
* <p>The number of results to show in a single call to
* <code>GetDedicatedIpsRequest</code>. If the number of results is larger than the
* number you specified in this parameter, then the response includes a
* <code>NextToken</code> element, which you can use to obtain additional
* results.</p>
*/
inline int GetPageSize() const{ return m_pageSize; }
/**
* <p>The number of results to show in a single call to
* <code>GetDedicatedIpsRequest</code>. If the number of results is larger than the
* number you specified in this parameter, then the response includes a
* <code>NextToken</code> element, which you can use to obtain additional
* results.</p>
*/
inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; }
/**
* <p>The number of results to show in a single call to
* <code>GetDedicatedIpsRequest</code>. If the number of results is larger than the
* number you specified in this parameter, then the response includes a
* <code>NextToken</code> element, which you can use to obtain additional
* results.</p>
*/
inline void SetPageSize(int value) { m_pageSizeHasBeenSet = true; m_pageSize = value; }
/**
* <p>The number of results to show in a single call to
* <code>GetDedicatedIpsRequest</code>. If the number of results is larger than the
* number you specified in this parameter, then the response includes a
* <code>NextToken</code> element, which you can use to obtain additional
* results.</p>
*/
inline GetDedicatedIpsRequest& WithPageSize(int value) { SetPageSize(value); return *this;}
private:
Aws::String m_poolName;
bool m_poolNameHasBeenSet;
Aws::String m_nextToken;
bool m_nextTokenHasBeenSet;
int m_pageSize;
bool m_pageSizeHasBeenSet;
};
} // namespace Model
} // namespace PinpointEmail
} // namespace Aws