33 lines
717 B
C++
33 lines
717 B
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/lightsail/Lightsail_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Lightsail
|
|
{
|
|
namespace Model
|
|
{
|
|
enum class ContactMethodStatus
|
|
{
|
|
NOT_SET,
|
|
PendingVerification,
|
|
Valid,
|
|
Invalid
|
|
};
|
|
|
|
namespace ContactMethodStatusMapper
|
|
{
|
|
AWS_LIGHTSAIL_API ContactMethodStatus GetContactMethodStatusForName(const Aws::String& name);
|
|
|
|
AWS_LIGHTSAIL_API Aws::String GetNameForContactMethodStatus(ContactMethodStatus value);
|
|
} // namespace ContactMethodStatusMapper
|
|
} // namespace Model
|
|
} // namespace Lightsail
|
|
} // namespace Aws
|