AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetRecordsResult.h
1
6#pragma once
7#include <aws/dynamodbstreams/DynamoDBStreams_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/dynamodbstreams/model/Record.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23} // namespace Json
24} // namespace Utils
25namespace DynamoDBStreams
26{
27namespace Model
28{
36 {
37 public:
38 AWS_DYNAMODBSTREAMS_API GetRecordsResult();
41
42
44
48 inline const Aws::Vector<Record>& GetRecords() const{ return m_records; }
49 inline void SetRecords(const Aws::Vector<Record>& value) { m_records = value; }
50 inline void SetRecords(Aws::Vector<Record>&& value) { m_records = std::move(value); }
51 inline GetRecordsResult& WithRecords(const Aws::Vector<Record>& value) { SetRecords(value); return *this;}
52 inline GetRecordsResult& WithRecords(Aws::Vector<Record>&& value) { SetRecords(std::move(value)); return *this;}
53 inline GetRecordsResult& AddRecords(const Record& value) { m_records.push_back(value); return *this; }
54 inline GetRecordsResult& AddRecords(Record&& value) { m_records.push_back(std::move(value)); return *this; }
56
58
63 inline const Aws::String& GetNextShardIterator() const{ return m_nextShardIterator; }
64 inline void SetNextShardIterator(const Aws::String& value) { m_nextShardIterator = value; }
65 inline void SetNextShardIterator(Aws::String&& value) { m_nextShardIterator = std::move(value); }
66 inline void SetNextShardIterator(const char* value) { m_nextShardIterator.assign(value); }
67 inline GetRecordsResult& WithNextShardIterator(const Aws::String& value) { SetNextShardIterator(value); return *this;}
68 inline GetRecordsResult& WithNextShardIterator(Aws::String&& value) { SetNextShardIterator(std::move(value)); return *this;}
69 inline GetRecordsResult& WithNextShardIterator(const char* value) { SetNextShardIterator(value); return *this;}
71
73
74 inline const Aws::String& GetRequestId() const{ return m_requestId; }
75 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
76 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
77 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
78 inline GetRecordsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
79 inline GetRecordsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
80 inline GetRecordsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
82 private:
83
84 Aws::Vector<Record> m_records;
85
86 Aws::String m_nextShardIterator;
87
88 Aws::String m_requestId;
89 };
90
91} // namespace Model
92} // namespace DynamoDBStreams
93} // namespace Aws
AWS_DYNAMODBSTREAMS_API GetRecordsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetRecordsResult & WithRequestId(Aws::String &&value)
GetRecordsResult & WithRequestId(const Aws::String &value)
void SetRequestId(const Aws::String &value)
AWS_DYNAMODBSTREAMS_API GetRecordsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_DYNAMODBSTREAMS_API GetRecordsResult()
GetRecordsResult & WithNextShardIterator(Aws::String &&value)
GetRecordsResult & WithNextShardIterator(const Aws::String &value)
GetRecordsResult & WithNextShardIterator(const char *value)
GetRecordsResult & WithRequestId(const char *value)
GetRecordsResult & WithRecords(const Aws::Vector< Record > &value)
const Aws::Vector< Record > & GetRecords() const
void SetNextShardIterator(const Aws::String &value)
void SetRecords(const Aws::Vector< Record > &value)
void SetRecords(Aws::Vector< Record > &&value)
const Aws::String & GetNextShardIterator() const
GetRecordsResult & AddRecords(Record &&value)
GetRecordsResult & WithRecords(Aws::Vector< Record > &&value)
GetRecordsResult & AddRecords(const Record &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue