/** * 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 AWS_ROBOMAKER_API BatchDescribeSimulationJobResult { public: BatchDescribeSimulationJobResult(); BatchDescribeSimulationJobResult(const Aws::AmazonWebServiceResult& result); 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; } private: Aws::Vector m_jobs; Aws::Vector m_unprocessedJobs; }; } // namespace Model } // namespace RoboMaker } // namespace Aws