144 lines
5.2 KiB
C++
144 lines
5.2 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/ApplicationResponse.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 all of your applications.</p><p><h3>See Also:</h3>
|
|
* <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/ApplicationsResponse">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_PINPOINT_API ApplicationsResponse
|
|
{
|
|
public:
|
|
ApplicationsResponse();
|
|
ApplicationsResponse(Aws::Utils::Json::JsonView jsonValue);
|
|
ApplicationsResponse& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>An array of responses, one for each application that was returned.</p>
|
|
*/
|
|
inline const Aws::Vector<ApplicationResponse>& GetItem() const{ return m_item; }
|
|
|
|
/**
|
|
* <p>An array of responses, one for each application that was returned.</p>
|
|
*/
|
|
inline bool ItemHasBeenSet() const { return m_itemHasBeenSet; }
|
|
|
|
/**
|
|
* <p>An array of responses, one for each application that was returned.</p>
|
|
*/
|
|
inline void SetItem(const Aws::Vector<ApplicationResponse>& value) { m_itemHasBeenSet = true; m_item = value; }
|
|
|
|
/**
|
|
* <p>An array of responses, one for each application that was returned.</p>
|
|
*/
|
|
inline void SetItem(Aws::Vector<ApplicationResponse>&& value) { m_itemHasBeenSet = true; m_item = std::move(value); }
|
|
|
|
/**
|
|
* <p>An array of responses, one for each application that was returned.</p>
|
|
*/
|
|
inline ApplicationsResponse& WithItem(const Aws::Vector<ApplicationResponse>& value) { SetItem(value); return *this;}
|
|
|
|
/**
|
|
* <p>An array of responses, one for each application that was returned.</p>
|
|
*/
|
|
inline ApplicationsResponse& WithItem(Aws::Vector<ApplicationResponse>&& value) { SetItem(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>An array of responses, one for each application that was returned.</p>
|
|
*/
|
|
inline ApplicationsResponse& AddItem(const ApplicationResponse& value) { m_itemHasBeenSet = true; m_item.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>An array of responses, one for each application that was returned.</p>
|
|
*/
|
|
inline ApplicationsResponse& AddItem(ApplicationResponse&& 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 ApplicationsResponse& 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 ApplicationsResponse& 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 ApplicationsResponse& WithNextToken(const char* value) { SetNextToken(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::Vector<ApplicationResponse> m_item;
|
|
bool m_itemHasBeenSet;
|
|
|
|
Aws::String m_nextToken;
|
|
bool m_nextTokenHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Pinpoint
|
|
} // namespace Aws
|