34 lines
705 B
C++
34 lines
705 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 TreatMissingData
|
|
{
|
|
NOT_SET,
|
|
breaching,
|
|
notBreaching,
|
|
ignore,
|
|
missing
|
|
};
|
|
|
|
namespace TreatMissingDataMapper
|
|
{
|
|
AWS_LIGHTSAIL_API TreatMissingData GetTreatMissingDataForName(const Aws::String& name);
|
|
|
|
AWS_LIGHTSAIL_API Aws::String GetNameForTreatMissingData(TreatMissingData value);
|
|
} // namespace TreatMissingDataMapper
|
|
} // namespace Model
|
|
} // namespace Lightsail
|
|
} // namespace Aws
|