/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace RoboMaker { namespace Model { class BatchDescribeSimulationJobResult { public: AWS_ROBOMAKER_API BatchDescribeSimulationJobResult(); AWS_ROBOMAKER_API BatchDescribeSimulationJobResult(const Aws::AmazonWebServiceResult& result); AWS_ROBOMAKER_API BatchDescribeSimulationJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A list of simulation jobs.

*/ inline const Aws::Vector& GetJobs() const{ return m_jobs; } /** *

A list of simulation jobs.

*/ inline void SetJobs(const Aws::Vector& value) { m_jobs = value; } /** *

A list of simulation jobs.

*/ inline void SetJobs(Aws::Vector&& value) { m_jobs = std::move(value); } /** *

A list of simulation jobs.

*/ inline BatchDescribeSimulationJobResult& WithJobs(const Aws::Vector& value) { SetJobs(value); return *this;} /** *

A list of simulation jobs.

*/ inline BatchDescribeSimulationJobResult& WithJobs(Aws::Vector&& value) { SetJobs(std::move(value)); return *this;} /** *

A list of simulation jobs.

*/ inline BatchDescribeSimulationJobResult& AddJobs(const SimulationJob& value) { m_jobs.push_back(value); return *this; } /** *

A list of simulation jobs.

*/ inline BatchDescribeSimulationJobResult& AddJobs(SimulationJob&& value) { m_jobs.push_back(std::move(value)); return *this; } /** *

A list of unprocessed simulation job Amazon Resource Names (ARNs).

*/ inline const Aws::Vector& GetUnprocessedJobs() const{ return m_unprocessedJobs; } /** *

A list of unprocessed simulation job Amazon Resource Names (ARNs).

*/ inline void SetUnprocessedJobs(const Aws::Vector& value) { m_unprocessedJobs = value; } /** *

A list of unprocessed simulation job Amazon Resource Names (ARNs).

*/ inline void SetUnprocessedJobs(Aws::Vector&& value) { m_unprocessedJobs = std::move(value); } /** *

A list of unprocessed simulation job Amazon Resource Names (ARNs).

*/ inline BatchDescribeSimulationJobResult& WithUnprocessedJobs(const Aws::Vector& value) { SetUnprocessedJobs(value); return *this;} /** *

A list of unprocessed simulation job Amazon Resource Names (ARNs).

*/ inline BatchDescribeSimulationJobResult& WithUnprocessedJobs(Aws::Vector&& value) { SetUnprocessedJobs(std::move(value)); return *this;} /** *

A list of unprocessed simulation job Amazon Resource Names (ARNs).

*/ inline BatchDescribeSimulationJobResult& AddUnprocessedJobs(const Aws::String& value) { m_unprocessedJobs.push_back(value); return *this; } /** *

A list of unprocessed simulation job Amazon Resource Names (ARNs).

*/ inline BatchDescribeSimulationJobResult& AddUnprocessedJobs(Aws::String&& value) { m_unprocessedJobs.push_back(std::move(value)); return *this; } /** *

A list of unprocessed simulation job Amazon Resource Names (ARNs).

*/ inline BatchDescribeSimulationJobResult& AddUnprocessedJobs(const char* value) { m_unprocessedJobs.push_back(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 BatchDescribeSimulationJobResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline BatchDescribeSimulationJobResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline BatchDescribeSimulationJobResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_jobs; Aws::Vector m_unprocessedJobs; Aws::String m_requestId; }; } // namespace Model } // namespace RoboMaker } // namespace Aws