/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A list of returned queue attributes.See Also:
AWS
* API Reference
A map of attributes to their respective values.
*/ inline const Aws::MapA map of attributes to their respective values.
*/ inline void SetAttributes(const Aws::MapA map of attributes to their respective values.
*/ inline void SetAttributes(Aws::MapA map of attributes to their respective values.
*/ inline GetQueueAttributesResult& WithAttributes(const Aws::MapA map of attributes to their respective values.
*/ inline GetQueueAttributesResult& WithAttributes(Aws::MapA map of attributes to their respective values.
*/ inline GetQueueAttributesResult& AddAttributes(const QueueAttributeName& key, const Aws::String& value) { m_attributes.emplace(key, value); return *this; } /** *A map of attributes to their respective values.
*/ inline GetQueueAttributesResult& AddAttributes(QueueAttributeName&& key, const Aws::String& value) { m_attributes.emplace(std::move(key), value); return *this; } /** *A map of attributes to their respective values.
*/ inline GetQueueAttributesResult& AddAttributes(const QueueAttributeName& key, Aws::String&& value) { m_attributes.emplace(key, std::move(value)); return *this; } /** *A map of attributes to their respective values.
*/ inline GetQueueAttributesResult& AddAttributes(QueueAttributeName&& key, Aws::String&& value) { m_attributes.emplace(std::move(key), std::move(value)); return *this; } /** *A map of attributes to their respective values.
*/ inline GetQueueAttributesResult& AddAttributes(QueueAttributeName&& key, const char* value) { m_attributes.emplace(std::move(key), value); return *this; } /** *A map of attributes to their respective values.
*/ inline GetQueueAttributesResult& AddAttributes(const QueueAttributeName& key, const char* value) { m_attributes.emplace(key, value); return *this; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetQueueAttributesResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetQueueAttributesResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetQueueAttributesResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline GetQueueAttributesResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline GetQueueAttributesResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::Map