160 lines
6.6 KiB
C++
160 lines
6.6 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/codebuild/CodeBuild_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/codebuild/model/TestCase.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace CodeBuild
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_CODEBUILD_API DescribeTestCasesResult
|
|
{
|
|
public:
|
|
DescribeTestCasesResult();
|
|
DescribeTestCasesResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DescribeTestCasesResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p> During a previous call, the maximum number of items that can be returned is
|
|
* the value specified in <code>maxResults</code>. If there more items in the list,
|
|
* then a unique string called a <i>nextToken</i> is returned. To get the next
|
|
* batch of items in the list, call this operation again, adding the next token to
|
|
* the call. To get all of the items in the list, keep calling this operation with
|
|
* each subsequent next token that is returned, until no more next tokens are
|
|
* returned. </p>
|
|
*/
|
|
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
|
|
|
|
/**
|
|
* <p> During a previous call, the maximum number of items that can be returned is
|
|
* the value specified in <code>maxResults</code>. If there more items in the list,
|
|
* then a unique string called a <i>nextToken</i> is returned. To get the next
|
|
* batch of items in the list, call this operation again, adding the next token to
|
|
* the call. To get all of the items in the list, keep calling this operation with
|
|
* each subsequent next token that is returned, until no more next tokens are
|
|
* returned. </p>
|
|
*/
|
|
inline void SetNextToken(const Aws::String& value) { m_nextToken = value; }
|
|
|
|
/**
|
|
* <p> During a previous call, the maximum number of items that can be returned is
|
|
* the value specified in <code>maxResults</code>. If there more items in the list,
|
|
* then a unique string called a <i>nextToken</i> is returned. To get the next
|
|
* batch of items in the list, call this operation again, adding the next token to
|
|
* the call. To get all of the items in the list, keep calling this operation with
|
|
* each subsequent next token that is returned, until no more next tokens are
|
|
* returned. </p>
|
|
*/
|
|
inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); }
|
|
|
|
/**
|
|
* <p> During a previous call, the maximum number of items that can be returned is
|
|
* the value specified in <code>maxResults</code>. If there more items in the list,
|
|
* then a unique string called a <i>nextToken</i> is returned. To get the next
|
|
* batch of items in the list, call this operation again, adding the next token to
|
|
* the call. To get all of the items in the list, keep calling this operation with
|
|
* each subsequent next token that is returned, until no more next tokens are
|
|
* returned. </p>
|
|
*/
|
|
inline void SetNextToken(const char* value) { m_nextToken.assign(value); }
|
|
|
|
/**
|
|
* <p> During a previous call, the maximum number of items that can be returned is
|
|
* the value specified in <code>maxResults</code>. If there more items in the list,
|
|
* then a unique string called a <i>nextToken</i> is returned. To get the next
|
|
* batch of items in the list, call this operation again, adding the next token to
|
|
* the call. To get all of the items in the list, keep calling this operation with
|
|
* each subsequent next token that is returned, until no more next tokens are
|
|
* returned. </p>
|
|
*/
|
|
inline DescribeTestCasesResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
|
|
|
|
/**
|
|
* <p> During a previous call, the maximum number of items that can be returned is
|
|
* the value specified in <code>maxResults</code>. If there more items in the list,
|
|
* then a unique string called a <i>nextToken</i> is returned. To get the next
|
|
* batch of items in the list, call this operation again, adding the next token to
|
|
* the call. To get all of the items in the list, keep calling this operation with
|
|
* each subsequent next token that is returned, until no more next tokens are
|
|
* returned. </p>
|
|
*/
|
|
inline DescribeTestCasesResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p> During a previous call, the maximum number of items that can be returned is
|
|
* the value specified in <code>maxResults</code>. If there more items in the list,
|
|
* then a unique string called a <i>nextToken</i> is returned. To get the next
|
|
* batch of items in the list, call this operation again, adding the next token to
|
|
* the call. To get all of the items in the list, keep calling this operation with
|
|
* each subsequent next token that is returned, until no more next tokens are
|
|
* returned. </p>
|
|
*/
|
|
inline DescribeTestCasesResult& WithNextToken(const char* value) { SetNextToken(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p> The returned list of test cases. </p>
|
|
*/
|
|
inline const Aws::Vector<TestCase>& GetTestCases() const{ return m_testCases; }
|
|
|
|
/**
|
|
* <p> The returned list of test cases. </p>
|
|
*/
|
|
inline void SetTestCases(const Aws::Vector<TestCase>& value) { m_testCases = value; }
|
|
|
|
/**
|
|
* <p> The returned list of test cases. </p>
|
|
*/
|
|
inline void SetTestCases(Aws::Vector<TestCase>&& value) { m_testCases = std::move(value); }
|
|
|
|
/**
|
|
* <p> The returned list of test cases. </p>
|
|
*/
|
|
inline DescribeTestCasesResult& WithTestCases(const Aws::Vector<TestCase>& value) { SetTestCases(value); return *this;}
|
|
|
|
/**
|
|
* <p> The returned list of test cases. </p>
|
|
*/
|
|
inline DescribeTestCasesResult& WithTestCases(Aws::Vector<TestCase>&& value) { SetTestCases(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p> The returned list of test cases. </p>
|
|
*/
|
|
inline DescribeTestCasesResult& AddTestCases(const TestCase& value) { m_testCases.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p> The returned list of test cases. </p>
|
|
*/
|
|
inline DescribeTestCasesResult& AddTestCases(TestCase&& value) { m_testCases.push_back(std::move(value)); return *this; }
|
|
|
|
private:
|
|
|
|
Aws::String m_nextToken;
|
|
|
|
Aws::Vector<TestCase> m_testCases;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace CodeBuild
|
|
} // namespace Aws
|