36 lines
646 B
C++
36 lines
646 B
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/batch/Batch_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Batch
|
|
{
|
|
namespace Model
|
|
{
|
|
enum class JQStatus
|
|
{
|
|
NOT_SET,
|
|
CREATING,
|
|
UPDATING,
|
|
DELETING,
|
|
DELETED,
|
|
VALID,
|
|
INVALID
|
|
};
|
|
|
|
namespace JQStatusMapper
|
|
{
|
|
AWS_BATCH_API JQStatus GetJQStatusForName(const Aws::String& name);
|
|
|
|
AWS_BATCH_API Aws::String GetNameForJQStatus(JQStatus value);
|
|
} // namespace JQStatusMapper
|
|
} // namespace Model
|
|
} // namespace Batch
|
|
} // namespace Aws
|