32 lines
646 B
C
32 lines
646 B
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/ivs/IVS_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace IVS
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
enum class ChannelLatencyMode
|
|||
|
|
{
|
|||
|
|
NOT_SET,
|
|||
|
|
NORMAL,
|
|||
|
|
LOW
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
namespace ChannelLatencyModeMapper
|
|||
|
|
{
|
|||
|
|
AWS_IVS_API ChannelLatencyMode GetChannelLatencyModeForName(const Aws::String& name);
|
|||
|
|
|
|||
|
|
AWS_IVS_API Aws::String GetNameForChannelLatencyMode(ChannelLatencyMode value);
|
|||
|
|
} // namespace ChannelLatencyModeMapper
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace IVS
|
|||
|
|
} // namespace Aws
|