AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ChangeMessageVisibilityBatchRequest.h
1
6#pragma once
7#include <aws/sqs/SQS_EXPORTS.h>
8#include <aws/sqs/SQSRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/sqs/model/ChangeMessageVisibilityBatchRequestEntry.h>
12#include <utility>
13
14namespace Aws
15{
16namespace SQS
17{
18namespace Model
19{
20
27 {
28 public:
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "ChangeMessageVisibilityBatch"; }
36
37 AWS_SQS_API Aws::String SerializePayload() const override;
38
40
41
43
47 inline const Aws::String& GetQueueUrl() const{ return m_queueUrl; }
48 inline bool QueueUrlHasBeenSet() const { return m_queueUrlHasBeenSet; }
49 inline void SetQueueUrl(const Aws::String& value) { m_queueUrlHasBeenSet = true; m_queueUrl = value; }
50 inline void SetQueueUrl(Aws::String&& value) { m_queueUrlHasBeenSet = true; m_queueUrl = std::move(value); }
51 inline void SetQueueUrl(const char* value) { m_queueUrlHasBeenSet = true; m_queueUrl.assign(value); }
52 inline ChangeMessageVisibilityBatchRequest& WithQueueUrl(const Aws::String& value) { SetQueueUrl(value); return *this;}
53 inline ChangeMessageVisibilityBatchRequest& WithQueueUrl(Aws::String&& value) { SetQueueUrl(std::move(value)); return *this;}
54 inline ChangeMessageVisibilityBatchRequest& WithQueueUrl(const char* value) { SetQueueUrl(value); return *this;}
56
58
62 inline const Aws::Vector<ChangeMessageVisibilityBatchRequestEntry>& GetEntries() const{ return m_entries; }
63 inline bool EntriesHasBeenSet() const { return m_entriesHasBeenSet; }
64 inline void SetEntries(const Aws::Vector<ChangeMessageVisibilityBatchRequestEntry>& value) { m_entriesHasBeenSet = true; m_entries = value; }
65 inline void SetEntries(Aws::Vector<ChangeMessageVisibilityBatchRequestEntry>&& value) { m_entriesHasBeenSet = true; m_entries = std::move(value); }
68 inline ChangeMessageVisibilityBatchRequest& AddEntries(const ChangeMessageVisibilityBatchRequestEntry& value) { m_entriesHasBeenSet = true; m_entries.push_back(value); return *this; }
69 inline ChangeMessageVisibilityBatchRequest& AddEntries(ChangeMessageVisibilityBatchRequestEntry&& value) { m_entriesHasBeenSet = true; m_entries.push_back(std::move(value)); return *this; }
71 private:
72
73 Aws::String m_queueUrl;
74 bool m_queueUrlHasBeenSet = false;
75
77 bool m_entriesHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace SQS
82} // namespace Aws
void SetEntries(const Aws::Vector< ChangeMessageVisibilityBatchRequestEntry > &value)
ChangeMessageVisibilityBatchRequest & AddEntries(const ChangeMessageVisibilityBatchRequestEntry &value)
ChangeMessageVisibilityBatchRequest & WithQueueUrl(const Aws::String &value)
ChangeMessageVisibilityBatchRequest & WithQueueUrl(const char *value)
AWS_SQS_API Aws::String SerializePayload() const override
const Aws::Vector< ChangeMessageVisibilityBatchRequestEntry > & GetEntries() const
AWS_SQS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ChangeMessageVisibilityBatchRequest & AddEntries(ChangeMessageVisibilityBatchRequestEntry &&value)
void SetEntries(Aws::Vector< ChangeMessageVisibilityBatchRequestEntry > &&value)
ChangeMessageVisibilityBatchRequest & WithQueueUrl(Aws::String &&value)
ChangeMessageVisibilityBatchRequest & WithEntries(Aws::Vector< ChangeMessageVisibilityBatchRequestEntry > &&value)
ChangeMessageVisibilityBatchRequest & WithEntries(const Aws::Vector< ChangeMessageVisibilityBatchRequestEntry > &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector