/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace SQS { namespace Model { /** *

Encloses the Id of an entry in * ChangeMessageVisibilityBatch.

See Also:

AWS * API Reference

*/ class ChangeMessageVisibilityBatchResultEntry { public: AWS_SQS_API ChangeMessageVisibilityBatchResultEntry(); AWS_SQS_API ChangeMessageVisibilityBatchResultEntry(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_SQS_API ChangeMessageVisibilityBatchResultEntry& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_SQS_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_SQS_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

Represents a message whose visibility timeout has been changed * successfully.

*/ inline const Aws::String& GetId() const{ return m_id; } /** *

Represents a message whose visibility timeout has been changed * successfully.

*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *

Represents a message whose visibility timeout has been changed * successfully.

*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *

Represents a message whose visibility timeout has been changed * successfully.

*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *

Represents a message whose visibility timeout has been changed * successfully.

*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *

Represents a message whose visibility timeout has been changed * successfully.

*/ inline ChangeMessageVisibilityBatchResultEntry& WithId(const Aws::String& value) { SetId(value); return *this;} /** *

Represents a message whose visibility timeout has been changed * successfully.

*/ inline ChangeMessageVisibilityBatchResultEntry& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *

Represents a message whose visibility timeout has been changed * successfully.

*/ inline ChangeMessageVisibilityBatchResultEntry& WithId(const char* value) { SetId(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; }; } // namespace Model } // namespace SQS } // namespace Aws