32 lines
672 B
C++
32 lines
672 B
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/eventbridge/EventBridge_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace EventBridge
|
|
{
|
|
namespace Model
|
|
{
|
|
enum class AssignPublicIp
|
|
{
|
|
NOT_SET,
|
|
ENABLED,
|
|
DISABLED
|
|
};
|
|
|
|
namespace AssignPublicIpMapper
|
|
{
|
|
AWS_EVENTBRIDGE_API AssignPublicIp GetAssignPublicIpForName(const Aws::String& name);
|
|
|
|
AWS_EVENTBRIDGE_API Aws::String GetNameForAssignPublicIp(AssignPublicIp value);
|
|
} // namespace AssignPublicIpMapper
|
|
} // namespace Model
|
|
} // namespace EventBridge
|
|
} // namespace Aws
|