AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeStreamResult.h
1
6#pragma once
7#include <aws/dynamodbstreams/DynamoDBStreams_EXPORTS.h>
8#include <aws/dynamodbstreams/model/StreamDescription.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14template<typename RESULT_TYPE>
15class AmazonWebServiceResult;
16
17namespace Utils
18{
19namespace Json
20{
21 class JsonValue;
22} // namespace Json
23} // namespace Utils
24namespace DynamoDBStreams
25{
26namespace Model
27{
35 {
36 public:
37 AWS_DYNAMODBSTREAMS_API DescribeStreamResult();
40
41
43
49 inline const StreamDescription& GetStreamDescription() const{ return m_streamDescription; }
50 inline void SetStreamDescription(const StreamDescription& value) { m_streamDescription = value; }
51 inline void SetStreamDescription(StreamDescription&& value) { m_streamDescription = std::move(value); }
53 inline DescribeStreamResult& WithStreamDescription(StreamDescription&& value) { SetStreamDescription(std::move(value)); return *this;}
55
57
58 inline const Aws::String& GetRequestId() const{ return m_requestId; }
59 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
60 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
61 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
62 inline DescribeStreamResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
63 inline DescribeStreamResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
64 inline DescribeStreamResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
66 private:
67
68 StreamDescription m_streamDescription;
69
70 Aws::String m_requestId;
71 };
72
73} // namespace Model
74} // namespace DynamoDBStreams
75} // namespace Aws
DescribeStreamResult & WithRequestId(const char *value)
void SetStreamDescription(const StreamDescription &value)
DescribeStreamResult & WithStreamDescription(const StreamDescription &value)
const StreamDescription & GetStreamDescription() const
AWS_DYNAMODBSTREAMS_API DescribeStreamResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeStreamResult & WithStreamDescription(StreamDescription &&value)
DescribeStreamResult & WithRequestId(const Aws::String &value)
AWS_DYNAMODBSTREAMS_API DescribeStreamResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeStreamResult & WithRequestId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue