37 lines
648 B
C++
37 lines
648 B
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/mq/MQ_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace MQ
|
|
{
|
|
namespace Model
|
|
{
|
|
enum class DayOfWeek
|
|
{
|
|
NOT_SET,
|
|
MONDAY,
|
|
TUESDAY,
|
|
WEDNESDAY,
|
|
THURSDAY,
|
|
FRIDAY,
|
|
SATURDAY,
|
|
SUNDAY
|
|
};
|
|
|
|
namespace DayOfWeekMapper
|
|
{
|
|
AWS_MQ_API DayOfWeek GetDayOfWeekForName(const Aws::String& name);
|
|
|
|
AWS_MQ_API Aws::String GetNameForDayOfWeek(DayOfWeek value);
|
|
} // namespace DayOfWeekMapper
|
|
} // namespace Model
|
|
} // namespace MQ
|
|
} // namespace Aws
|