/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the query results from a DescribeEvaluations
* operation. The content is essentially a list of
* Evaluation
.See Also:
AWS
* API Reference
A list of Evaluation
that meet the search criteria.
A list of Evaluation
that meet the search criteria.
A list of Evaluation
that meet the search criteria.
A list of Evaluation
that meet the search criteria.
A list of Evaluation
that meet the search criteria.
A list of Evaluation
that meet the search criteria.
A list of Evaluation
that meet the search criteria.
The ID of the next page in the paginated results that indicates at least one * more page follows.
*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *The ID of the next page in the paginated results that indicates at least one * more page follows.
*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *The ID of the next page in the paginated results that indicates at least one * more page follows.
*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *The ID of the next page in the paginated results that indicates at least one * more page follows.
*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *The ID of the next page in the paginated results that indicates at least one * more page follows.
*/ inline DescribeEvaluationsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *The ID of the next page in the paginated results that indicates at least one * more page follows.
*/ inline DescribeEvaluationsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *The ID of the next page in the paginated results that indicates at least one * more page follows.
*/ inline DescribeEvaluationsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeEvaluationsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeEvaluationsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeEvaluationsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector