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/include/aws/pinpoint/model/CampaignsResponse.h

152 lines
5.4 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/pinpoint/Pinpoint_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/pinpoint/model/CampaignResponse.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace Pinpoint
{
namespace Model
{
/**
* <p>Provides information about the configuration and other settings for all the
* campaigns that are associated with an application.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/CampaignsResponse">AWS
* API Reference</a></p>
*/
class AWS_PINPOINT_API CampaignsResponse
{
public:
CampaignsResponse();
CampaignsResponse(Aws::Utils::Json::JsonView jsonValue);
CampaignsResponse& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>An array of responses, one for each campaign that's associated with the
* application.</p>
*/
inline const Aws::Vector<CampaignResponse>& GetItem() const{ return m_item; }
/**
* <p>An array of responses, one for each campaign that's associated with the
* application.</p>
*/
inline bool ItemHasBeenSet() const { return m_itemHasBeenSet; }
/**
* <p>An array of responses, one for each campaign that's associated with the
* application.</p>
*/
inline void SetItem(const Aws::Vector<CampaignResponse>& value) { m_itemHasBeenSet = true; m_item = value; }
/**
* <p>An array of responses, one for each campaign that's associated with the
* application.</p>
*/
inline void SetItem(Aws::Vector<CampaignResponse>&& value) { m_itemHasBeenSet = true; m_item = std::move(value); }
/**
* <p>An array of responses, one for each campaign that's associated with the
* application.</p>
*/
inline CampaignsResponse& WithItem(const Aws::Vector<CampaignResponse>& value) { SetItem(value); return *this;}
/**
* <p>An array of responses, one for each campaign that's associated with the
* application.</p>
*/
inline CampaignsResponse& WithItem(Aws::Vector<CampaignResponse>&& value) { SetItem(std::move(value)); return *this;}
/**
* <p>An array of responses, one for each campaign that's associated with the
* application.</p>
*/
inline CampaignsResponse& AddItem(const CampaignResponse& value) { m_itemHasBeenSet = true; m_item.push_back(value); return *this; }
/**
* <p>An array of responses, one for each campaign that's associated with the
* application.</p>
*/
inline CampaignsResponse& AddItem(CampaignResponse&& value) { m_itemHasBeenSet = true; m_item.push_back(std::move(value)); return *this; }
/**
* <p>The string to use in a subsequent request to get the next page of results in
* a paginated response. This value is null if there are no additional pages.</p>
*/
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
/**
* <p>The string to use in a subsequent request to get the next page of results in
* a paginated response. This value is null if there are no additional pages.</p>
*/
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
/**
* <p>The string to use in a subsequent request to get the next page of results in
* a paginated response. This value is null if there are no additional pages.</p>
*/
inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
/**
* <p>The string to use in a subsequent request to get the next page of results in
* a paginated response. This value is null if there are no additional pages.</p>
*/
inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
/**
* <p>The string to use in a subsequent request to get the next page of results in
* a paginated response. This value is null if there are no additional pages.</p>
*/
inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
/**
* <p>The string to use in a subsequent request to get the next page of results in
* a paginated response. This value is null if there are no additional pages.</p>
*/
inline CampaignsResponse& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
/**
* <p>The string to use in a subsequent request to get the next page of results in
* a paginated response. This value is null if there are no additional pages.</p>
*/
inline CampaignsResponse& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
/**
* <p>The string to use in a subsequent request to get the next page of results in
* a paginated response. This value is null if there are no additional pages.</p>
*/
inline CampaignsResponse& WithNextToken(const char* value) { SetNextToken(value); return *this;}
private:
Aws::Vector<CampaignResponse> m_item;
bool m_itemHasBeenSet;
Aws::String m_nextToken;
bool m_nextTokenHasBeenSet;
};
} // namespace Model
} // namespace Pinpoint
} // namespace Aws