70 lines
1.8 KiB
C
70 lines
1.8 KiB
C
|
|
/**
|
|||
|
|
* 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/AWSStreamFwd.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Xml
|
|||
|
|
{
|
|||
|
|
class XmlNode;
|
|||
|
|
} // namespace Xml
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace SQS
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
class AWS_SQS_API ResponseMetadata
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
ResponseMetadata();
|
|||
|
|
ResponseMetadata(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|||
|
|
ResponseMetadata& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|||
|
|
|
|||
|
|
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
|
|||
|
|
void OutputToStream(Aws::OStream& oStream, const char* location) const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline const Aws::String& GetRequestId() const{ return m_requestId; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline bool RequestIdHasBeenSet() const { return m_requestIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline void SetRequestId(const Aws::String& value) { m_requestIdHasBeenSet = true; m_requestId = value; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline void SetRequestId(Aws::String&& value) { m_requestIdHasBeenSet = true; m_requestId = std::move(value); }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline void SetRequestId(const char* value) { m_requestIdHasBeenSet = true; m_requestId.assign(value); }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline ResponseMetadata& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline ResponseMetadata& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline ResponseMetadata& WithRequestId(const char* value) { SetRequestId(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_requestId;
|
|||
|
|
bool m_requestIdHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace SQS
|
|||
|
|
} // namespace Aws
|