This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-sms/include/aws/sms/model/AppLaunchStatus.h

45 lines
962 B
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/sms/SMS_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
namespace Aws
{
namespace SMS
{
namespace Model
{
enum class AppLaunchStatus
{
NOT_SET,
READY_FOR_CONFIGURATION,
CONFIGURATION_IN_PROGRESS,
CONFIGURATION_INVALID,
READY_FOR_LAUNCH,
VALIDATION_IN_PROGRESS,
LAUNCH_PENDING,
LAUNCH_IN_PROGRESS,
LAUNCHED,
PARTIALLY_LAUNCHED,
DELTA_LAUNCH_IN_PROGRESS,
DELTA_LAUNCH_FAILED,
LAUNCH_FAILED,
TERMINATE_IN_PROGRESS,
TERMINATE_FAILED,
TERMINATED
};
namespace AppLaunchStatusMapper
{
AWS_SMS_API AppLaunchStatus GetAppLaunchStatusForName(const Aws::String& name);
AWS_SMS_API Aws::String GetNameForAppLaunchStatus(AppLaunchStatus value);
} // namespace AppLaunchStatusMapper
} // namespace Model
} // namespace SMS
} // namespace Aws