38 lines
812 B
C++
38 lines
812 B
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/iot-jobs-data/IoTJobsDataPlane_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace IoTJobsDataPlane
|
|
{
|
|
namespace Model
|
|
{
|
|
enum class JobExecutionStatus
|
|
{
|
|
NOT_SET,
|
|
QUEUED,
|
|
IN_PROGRESS,
|
|
SUCCEEDED,
|
|
FAILED,
|
|
TIMED_OUT,
|
|
REJECTED,
|
|
REMOVED,
|
|
CANCELED
|
|
};
|
|
|
|
namespace JobExecutionStatusMapper
|
|
{
|
|
AWS_IOTJOBSDATAPLANE_API JobExecutionStatus GetJobExecutionStatusForName(const Aws::String& name);
|
|
|
|
AWS_IOTJOBSDATAPLANE_API Aws::String GetNameForJobExecutionStatus(JobExecutionStatus value);
|
|
} // namespace JobExecutionStatusMapper
|
|
} // namespace Model
|
|
} // namespace IoTJobsDataPlane
|
|
} // namespace Aws
|