36 lines
766 B
C++
36 lines
766 B
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/greengrass/Greengrass_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Greengrass
|
|
{
|
|
namespace Model
|
|
{
|
|
enum class BulkDeploymentStatus
|
|
{
|
|
NOT_SET,
|
|
Initializing,
|
|
Running,
|
|
Completed,
|
|
Stopping,
|
|
Stopped,
|
|
Failed
|
|
};
|
|
|
|
namespace BulkDeploymentStatusMapper
|
|
{
|
|
AWS_GREENGRASS_API BulkDeploymentStatus GetBulkDeploymentStatusForName(const Aws::String& name);
|
|
|
|
AWS_GREENGRASS_API Aws::String GetNameForBulkDeploymentStatus(BulkDeploymentStatus value);
|
|
} // namespace BulkDeploymentStatusMapper
|
|
} // namespace Model
|
|
} // namespace Greengrass
|
|
} // namespace Aws
|