/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
The URL of the Amazon SQS queue whose messages' visibility is changed.
*Queue URLs and names are case-sensitive.
*/ inline const Aws::String& GetQueueUrl() const{ return m_queueUrl; } /** *The URL of the Amazon SQS queue whose messages' visibility is changed.
*Queue URLs and names are case-sensitive.
*/ inline bool QueueUrlHasBeenSet() const { return m_queueUrlHasBeenSet; } /** *The URL of the Amazon SQS queue whose messages' visibility is changed.
*Queue URLs and names are case-sensitive.
*/ inline void SetQueueUrl(const Aws::String& value) { m_queueUrlHasBeenSet = true; m_queueUrl = value; } /** *The URL of the Amazon SQS queue whose messages' visibility is changed.
*Queue URLs and names are case-sensitive.
*/ inline void SetQueueUrl(Aws::String&& value) { m_queueUrlHasBeenSet = true; m_queueUrl = std::move(value); } /** *The URL of the Amazon SQS queue whose messages' visibility is changed.
*Queue URLs and names are case-sensitive.
*/ inline void SetQueueUrl(const char* value) { m_queueUrlHasBeenSet = true; m_queueUrl.assign(value); } /** *The URL of the Amazon SQS queue whose messages' visibility is changed.
*Queue URLs and names are case-sensitive.
*/ inline ChangeMessageVisibilityBatchRequest& WithQueueUrl(const Aws::String& value) { SetQueueUrl(value); return *this;} /** *The URL of the Amazon SQS queue whose messages' visibility is changed.
*Queue URLs and names are case-sensitive.
*/ inline ChangeMessageVisibilityBatchRequest& WithQueueUrl(Aws::String&& value) { SetQueueUrl(std::move(value)); return *this;} /** *The URL of the Amazon SQS queue whose messages' visibility is changed.
*Queue URLs and names are case-sensitive.
*/ inline ChangeMessageVisibilityBatchRequest& WithQueueUrl(const char* value) { SetQueueUrl(value); return *this;} /** *Lists the receipt handles of the messages for which the visibility timeout * must be changed.
*/ inline const Aws::VectorLists the receipt handles of the messages for which the visibility timeout * must be changed.
*/ inline bool EntriesHasBeenSet() const { return m_entriesHasBeenSet; } /** *Lists the receipt handles of the messages for which the visibility timeout * must be changed.
*/ inline void SetEntries(const Aws::VectorLists the receipt handles of the messages for which the visibility timeout * must be changed.
*/ inline void SetEntries(Aws::VectorLists the receipt handles of the messages for which the visibility timeout * must be changed.
*/ inline ChangeMessageVisibilityBatchRequest& WithEntries(const Aws::VectorLists the receipt handles of the messages for which the visibility timeout * must be changed.
*/ inline ChangeMessageVisibilityBatchRequest& WithEntries(Aws::VectorLists the receipt handles of the messages for which the visibility timeout * must be changed.
*/ inline ChangeMessageVisibilityBatchRequest& AddEntries(const ChangeMessageVisibilityBatchRequestEntry& value) { m_entriesHasBeenSet = true; m_entries.push_back(value); return *this; } /** *Lists the receipt handles of the messages for which the visibility timeout * must be changed.
*/ inline ChangeMessageVisibilityBatchRequest& AddEntries(ChangeMessageVisibilityBatchRequestEntry&& value) { m_entriesHasBeenSet = true; m_entries.push_back(std::move(value)); return *this; } private: Aws::String m_queueUrl; bool m_queueUrlHasBeenSet = false; Aws::Vector