blob: 893178339db018295d37888bbd7d95d598756929 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/sqs/SQS_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
namespace Aws
{
namespace SQS
{
namespace Model
{
enum class MessageSystemAttributeNameForSends
{
NOT_SET,
AWSTraceHeader
};
namespace MessageSystemAttributeNameForSendsMapper
{
AWS_SQS_API MessageSystemAttributeNameForSends GetMessageSystemAttributeNameForSendsForName(const Aws::String& name);
AWS_SQS_API Aws::String GetNameForMessageSystemAttributeNameForSends(MessageSystemAttributeNameForSends value);
} // namespace MessageSystemAttributeNameForSendsMapper
} // namespace Model
} // namespace SQS
} // namespace Aws
|