98 lines
4.0 KiB
C
98 lines
4.0 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/ecs/model/Service.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 CreateServiceResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
CreateServiceResult();
|
|||
|
|
CreateServiceResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
CreateServiceResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The full description of your service following the create call.</p> <p>If a
|
|||
|
|
* service is using the <code>ECS</code> deployment controller, the
|
|||
|
|
* <code>deploymentController</code> and <code>taskSets</code> parameters will not
|
|||
|
|
* be returned.</p> <p>If the service is using the <code>CODE_DEPLOY</code>
|
|||
|
|
* deployment controller, the <code>deploymentController</code>,
|
|||
|
|
* <code>taskSets</code> and <code>deployments</code> parameters will be returned,
|
|||
|
|
* however the <code>deployments</code> parameter will be an empty list.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Service& GetService() const{ return m_service; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The full description of your service following the create call.</p> <p>If a
|
|||
|
|
* service is using the <code>ECS</code> deployment controller, the
|
|||
|
|
* <code>deploymentController</code> and <code>taskSets</code> parameters will not
|
|||
|
|
* be returned.</p> <p>If the service is using the <code>CODE_DEPLOY</code>
|
|||
|
|
* deployment controller, the <code>deploymentController</code>,
|
|||
|
|
* <code>taskSets</code> and <code>deployments</code> parameters will be returned,
|
|||
|
|
* however the <code>deployments</code> parameter will be an empty list.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetService(const Service& value) { m_service = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The full description of your service following the create call.</p> <p>If a
|
|||
|
|
* service is using the <code>ECS</code> deployment controller, the
|
|||
|
|
* <code>deploymentController</code> and <code>taskSets</code> parameters will not
|
|||
|
|
* be returned.</p> <p>If the service is using the <code>CODE_DEPLOY</code>
|
|||
|
|
* deployment controller, the <code>deploymentController</code>,
|
|||
|
|
* <code>taskSets</code> and <code>deployments</code> parameters will be returned,
|
|||
|
|
* however the <code>deployments</code> parameter will be an empty list.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetService(Service&& value) { m_service = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The full description of your service following the create call.</p> <p>If a
|
|||
|
|
* service is using the <code>ECS</code> deployment controller, the
|
|||
|
|
* <code>deploymentController</code> and <code>taskSets</code> parameters will not
|
|||
|
|
* be returned.</p> <p>If the service is using the <code>CODE_DEPLOY</code>
|
|||
|
|
* deployment controller, the <code>deploymentController</code>,
|
|||
|
|
* <code>taskSets</code> and <code>deployments</code> parameters will be returned,
|
|||
|
|
* however the <code>deployments</code> parameter will be an empty list.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateServiceResult& WithService(const Service& value) { SetService(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The full description of your service following the create call.</p> <p>If a
|
|||
|
|
* service is using the <code>ECS</code> deployment controller, the
|
|||
|
|
* <code>deploymentController</code> and <code>taskSets</code> parameters will not
|
|||
|
|
* be returned.</p> <p>If the service is using the <code>CODE_DEPLOY</code>
|
|||
|
|
* deployment controller, the <code>deploymentController</code>,
|
|||
|
|
* <code>taskSets</code> and <code>deployments</code> parameters will be returned,
|
|||
|
|
* however the <code>deployments</code> parameter will be an empty list.</p>
|
|||
|
|
*/
|
|||
|
|
inline CreateServiceResult& WithService(Service&& value) { SetService(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Service m_service;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace ECS
|
|||
|
|
} // namespace Aws
|