AWS SDK for C++

AWS SDK for C++ Version 1.11.754

Loading...
Searching...
No Matches
DisableKinesisStreamingDestinationResult.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/dynamodb/DynamoDB_EXPORTS.h>
9#include <aws/dynamodb/model/DestinationStatus.h>
10#include <aws/dynamodb/model/EnableKinesisStreamingConfiguration.h>
11
12#include <utility>
13
14namespace Aws {
15template <typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils {
19namespace Json {
20class JsonValue;
21} // namespace Json
22} // namespace Utils
23namespace DynamoDB {
24namespace Model {
26 public:
27 AWS_DYNAMODB_API DisableKinesisStreamingDestinationResult() = default;
31
33
36 inline const Aws::String& GetTableName() const { return m_tableName; }
37 template <typename TableNameT = Aws::String>
38 void SetTableName(TableNameT&& value) {
39 m_tableNameHasBeenSet = true;
40 m_tableName = std::forward<TableNameT>(value);
41 }
42 template <typename TableNameT = Aws::String>
44 SetTableName(std::forward<TableNameT>(value));
45 return *this;
46 }
48
50
53 inline const Aws::String& GetStreamArn() const { return m_streamArn; }
54 template <typename StreamArnT = Aws::String>
55 void SetStreamArn(StreamArnT&& value) {
56 m_streamArnHasBeenSet = true;
57 m_streamArn = std::forward<StreamArnT>(value);
58 }
59 template <typename StreamArnT = Aws::String>
61 SetStreamArn(std::forward<StreamArnT>(value));
62 return *this;
63 }
65
67
70 inline DestinationStatus GetDestinationStatus() const { return m_destinationStatus; }
72 m_destinationStatusHasBeenSet = true;
73 m_destinationStatus = value;
74 }
77 return *this;
78 }
80
82
87 return m_enableKinesisStreamingConfiguration;
88 }
89 template <typename EnableKinesisStreamingConfigurationT = EnableKinesisStreamingConfiguration>
90 void SetEnableKinesisStreamingConfiguration(EnableKinesisStreamingConfigurationT&& value) {
91 m_enableKinesisStreamingConfigurationHasBeenSet = true;
92 m_enableKinesisStreamingConfiguration = std::forward<EnableKinesisStreamingConfigurationT>(value);
93 }
94 template <typename EnableKinesisStreamingConfigurationT = EnableKinesisStreamingConfiguration>
96 SetEnableKinesisStreamingConfiguration(std::forward<EnableKinesisStreamingConfigurationT>(value));
97 return *this;
98 }
100
102
103 inline const Aws::String& GetRequestId() const { return m_requestId; }
104 template <typename RequestIdT = Aws::String>
105 void SetRequestId(RequestIdT&& value) {
106 m_requestIdHasBeenSet = true;
107 m_requestId = std::forward<RequestIdT>(value);
108 }
109 template <typename RequestIdT = Aws::String>
111 SetRequestId(std::forward<RequestIdT>(value));
112 return *this;
113 }
115 private:
116 Aws::String m_tableName;
117
118 Aws::String m_streamArn;
119
121
122 EnableKinesisStreamingConfiguration m_enableKinesisStreamingConfiguration;
123
124 Aws::String m_requestId;
125 bool m_tableNameHasBeenSet = false;
126 bool m_streamArnHasBeenSet = false;
127 bool m_destinationStatusHasBeenSet = false;
128 bool m_enableKinesisStreamingConfigurationHasBeenSet = false;
129 bool m_requestIdHasBeenSet = false;
130};
131
132} // namespace Model
133} // namespace DynamoDB
134} // namespace Aws
AWS_DYNAMODB_API DisableKinesisStreamingDestinationResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DisableKinesisStreamingDestinationResult & WithDestinationStatus(DestinationStatus value)
void SetEnableKinesisStreamingConfiguration(EnableKinesisStreamingConfigurationT &&value)
DisableKinesisStreamingDestinationResult & WithEnableKinesisStreamingConfiguration(EnableKinesisStreamingConfigurationT &&value)
DisableKinesisStreamingDestinationResult & WithTableName(TableNameT &&value)
DisableKinesisStreamingDestinationResult & WithStreamArn(StreamArnT &&value)
DisableKinesisStreamingDestinationResult & WithRequestId(RequestIdT &&value)
const EnableKinesisStreamingConfiguration & GetEnableKinesisStreamingConfiguration() const
AWS_DYNAMODB_API DisableKinesisStreamingDestinationResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue