32 lines
665 B
C++
32 lines
665 B
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/AWSString.h>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace ECS
|
|
{
|
|
namespace Model
|
|
{
|
|
enum class TaskDefinitionStatus
|
|
{
|
|
NOT_SET,
|
|
ACTIVE,
|
|
INACTIVE
|
|
};
|
|
|
|
namespace TaskDefinitionStatusMapper
|
|
{
|
|
AWS_ECS_API TaskDefinitionStatus GetTaskDefinitionStatusForName(const Aws::String& name);
|
|
|
|
AWS_ECS_API Aws::String GetNameForTaskDefinitionStatus(TaskDefinitionStatus value);
|
|
} // namespace TaskDefinitionStatusMapper
|
|
} // namespace Model
|
|
} // namespace ECS
|
|
} // namespace Aws
|