/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides information about the status and settings of all the import jobs
* that are associated with an application or segment. An import job is a job that
* imports endpoint definitions from one or more files.See Also:
* AWS
* API Reference
An array of responses, one for each import job that's associated with the * application (Import Jobs resource) or segment (Segment Import Jobs * resource).
*/ inline const Aws::VectorAn array of responses, one for each import job that's associated with the * application (Import Jobs resource) or segment (Segment Import Jobs * resource).
*/ inline bool ItemHasBeenSet() const { return m_itemHasBeenSet; } /** *An array of responses, one for each import job that's associated with the * application (Import Jobs resource) or segment (Segment Import Jobs * resource).
*/ inline void SetItem(const Aws::VectorAn array of responses, one for each import job that's associated with the * application (Import Jobs resource) or segment (Segment Import Jobs * resource).
*/ inline void SetItem(Aws::VectorAn array of responses, one for each import job that's associated with the * application (Import Jobs resource) or segment (Segment Import Jobs * resource).
*/ inline ImportJobsResponse& WithItem(const Aws::VectorAn array of responses, one for each import job that's associated with the * application (Import Jobs resource) or segment (Segment Import Jobs * resource).
*/ inline ImportJobsResponse& WithItem(Aws::VectorAn array of responses, one for each import job that's associated with the * application (Import Jobs resource) or segment (Segment Import Jobs * resource).
*/ inline ImportJobsResponse& AddItem(const ImportJobResponse& value) { m_itemHasBeenSet = true; m_item.push_back(value); return *this; } /** *An array of responses, one for each import job that's associated with the * application (Import Jobs resource) or segment (Segment Import Jobs * resource).
*/ inline ImportJobsResponse& AddItem(ImportJobResponse&& value) { m_itemHasBeenSet = true; m_item.push_back(std::move(value)); return *this; } /** *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.
*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *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.
*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *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.
*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *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.
*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *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.
*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *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.
*/ inline ImportJobsResponse& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *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.
*/ inline ImportJobsResponse& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *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.
*/ inline ImportJobsResponse& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::Vector