36 lines
844 B
C
36 lines
844 B
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/elasticloadbalancingv2/ElasticLoadBalancingv2_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace ElasticLoadBalancingv2
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
enum class TargetHealthStateEnum
|
|||
|
|
{
|
|||
|
|
NOT_SET,
|
|||
|
|
initial,
|
|||
|
|
healthy,
|
|||
|
|
unhealthy,
|
|||
|
|
unused,
|
|||
|
|
draining,
|
|||
|
|
unavailable
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
namespace TargetHealthStateEnumMapper
|
|||
|
|
{
|
|||
|
|
AWS_ELASTICLOADBALANCINGV2_API TargetHealthStateEnum GetTargetHealthStateEnumForName(const Aws::String& name);
|
|||
|
|
|
|||
|
|
AWS_ELASTICLOADBALANCINGV2_API Aws::String GetNameForTargetHealthStateEnum(TargetHealthStateEnum value);
|
|||
|
|
} // namespace TargetHealthStateEnumMapper
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace ElasticLoadBalancingv2
|
|||
|
|
} // namespace Aws
|