This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-ecs/include/aws/ecs/model/StartTaskResult.h

125 lines
3.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ecs/ECS_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/ecs/model/Task.h>
#include <aws/ecs/model/Failure.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace ECS
{
namespace Model
{
class AWS_ECS_API StartTaskResult
{
public:
StartTaskResult();
StartTaskResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
StartTaskResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>A full description of the tasks that were started. Each task that was
* successfully placed on your container instances is described.</p>
*/
inline const Aws::Vector<Task>& GetTasks() const{ return m_tasks; }
/**
* <p>A full description of the tasks that were started. Each task that was
* successfully placed on your container instances is described.</p>
*/
inline void SetTasks(const Aws::Vector<Task>& value) { m_tasks = value; }
/**
* <p>A full description of the tasks that were started. Each task that was
* successfully placed on your container instances is described.</p>
*/
inline void SetTasks(Aws::Vector<Task>&& value) { m_tasks = std::move(value); }
/**
* <p>A full description of the tasks that were started. Each task that was
* successfully placed on your container instances is described.</p>
*/
inline StartTaskResult& WithTasks(const Aws::Vector<Task>& value) { SetTasks(value); return *this;}
/**
* <p>A full description of the tasks that were started. Each task that was
* successfully placed on your container instances is described.</p>
*/
inline StartTaskResult& WithTasks(Aws::Vector<Task>&& value) { SetTasks(std::move(value)); return *this;}
/**
* <p>A full description of the tasks that were started. Each task that was
* successfully placed on your container instances is described.</p>
*/
inline StartTaskResult& AddTasks(const Task& value) { m_tasks.push_back(value); return *this; }
/**
* <p>A full description of the tasks that were started. Each task that was
* successfully placed on your container instances is described.</p>
*/
inline StartTaskResult& AddTasks(Task&& value) { m_tasks.push_back(std::move(value)); return *this; }
/**
* <p>Any failures associated with the call.</p>
*/
inline const Aws::Vector<Failure>& GetFailures() const{ return m_failures; }
/**
* <p>Any failures associated with the call.</p>
*/
inline void SetFailures(const Aws::Vector<Failure>& value) { m_failures = value; }
/**
* <p>Any failures associated with the call.</p>
*/
inline void SetFailures(Aws::Vector<Failure>&& value) { m_failures = std::move(value); }
/**
* <p>Any failures associated with the call.</p>
*/
inline StartTaskResult& WithFailures(const Aws::Vector<Failure>& value) { SetFailures(value); return *this;}
/**
* <p>Any failures associated with the call.</p>
*/
inline StartTaskResult& WithFailures(Aws::Vector<Failure>&& value) { SetFailures(std::move(value)); return *this;}
/**
* <p>Any failures associated with the call.</p>
*/
inline StartTaskResult& AddFailures(const Failure& value) { m_failures.push_back(value); return *this; }
/**
* <p>Any failures associated with the call.</p>
*/
inline StartTaskResult& AddFailures(Failure&& value) { m_failures.push_back(std::move(value)); return *this; }
private:
Aws::Vector<Task> m_tasks;
Aws::Vector<Failure> m_failures;
};
} // namespace Model
} // namespace ECS
} // namespace Aws