32 lines
731 B
C++
32 lines
731 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 AppLaunchConfigurationStatus
|
|
{
|
|
NOT_SET,
|
|
NOT_CONFIGURED,
|
|
CONFIGURED
|
|
};
|
|
|
|
namespace AppLaunchConfigurationStatusMapper
|
|
{
|
|
AWS_SMS_API AppLaunchConfigurationStatus GetAppLaunchConfigurationStatusForName(const Aws::String& name);
|
|
|
|
AWS_SMS_API Aws::String GetNameForAppLaunchConfigurationStatus(AppLaunchConfigurationStatus value);
|
|
} // namespace AppLaunchConfigurationStatusMapper
|
|
} // namespace Model
|
|
} // namespace SMS
|
|
} // namespace Aws
|