AWS SDK for C++

AWS SDK for C++ Version 1.11.748

Loading...
Searching...
No Matches
DisableKinesisStreamingDestinationRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/dynamodb/DynamoDBRequest.h>
9#include <aws/dynamodb/DynamoDB_EXPORTS.h>
10#include <aws/dynamodb/model/EnableKinesisStreamingConfiguration.h>
11
12#include <utility>
13
14namespace Aws {
15namespace DynamoDB {
16namespace Model {
17
21 public:
22 AWS_DYNAMODB_API DisableKinesisStreamingDestinationRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "DisableKinesisStreamingDestination"; }
29
30 AWS_DYNAMODB_API Aws::String SerializePayload() const override;
31
33
37 AWS_DYNAMODB_API EndpointParameters GetEndpointContextParams() const override;
38
40
44 inline const Aws::String& GetTableName() const { return m_tableName; }
45 inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; }
46 template <typename TableNameT = Aws::String>
47 void SetTableName(TableNameT&& value) {
48 m_tableNameHasBeenSet = true;
49 m_tableName = std::forward<TableNameT>(value);
50 }
51 template <typename TableNameT = Aws::String>
53 SetTableName(std::forward<TableNameT>(value));
54 return *this;
55 }
57
59
62 inline const Aws::String& GetStreamArn() const { return m_streamArn; }
63 inline bool StreamArnHasBeenSet() const { return m_streamArnHasBeenSet; }
64 template <typename StreamArnT = Aws::String>
65 void SetStreamArn(StreamArnT&& value) {
66 m_streamArnHasBeenSet = true;
67 m_streamArn = std::forward<StreamArnT>(value);
68 }
69 template <typename StreamArnT = Aws::String>
71 SetStreamArn(std::forward<StreamArnT>(value));
72 return *this;
73 }
75
77
81 return m_enableKinesisStreamingConfiguration;
82 }
83 inline bool EnableKinesisStreamingConfigurationHasBeenSet() const { return m_enableKinesisStreamingConfigurationHasBeenSet; }
84 template <typename EnableKinesisStreamingConfigurationT = EnableKinesisStreamingConfiguration>
85 void SetEnableKinesisStreamingConfiguration(EnableKinesisStreamingConfigurationT&& value) {
86 m_enableKinesisStreamingConfigurationHasBeenSet = true;
87 m_enableKinesisStreamingConfiguration = std::forward<EnableKinesisStreamingConfigurationT>(value);
88 }
89 template <typename EnableKinesisStreamingConfigurationT = EnableKinesisStreamingConfiguration>
91 SetEnableKinesisStreamingConfiguration(std::forward<EnableKinesisStreamingConfigurationT>(value));
92 return *this;
93 }
95 private:
96 Aws::String m_tableName;
97
98 Aws::String m_streamArn;
99
100 EnableKinesisStreamingConfiguration m_enableKinesisStreamingConfiguration;
101 bool m_tableNameHasBeenSet = false;
102 bool m_streamArnHasBeenSet = false;
103 bool m_enableKinesisStreamingConfigurationHasBeenSet = false;
104};
105
106} // namespace Model
107} // namespace DynamoDB
108} // namespace Aws
Aws::Endpoint::EndpointParameters EndpointParameters
AWS_DYNAMODB_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
void SetEnableKinesisStreamingConfiguration(EnableKinesisStreamingConfigurationT &&value)
DisableKinesisStreamingDestinationRequest & WithTableName(TableNameT &&value)
DisableKinesisStreamingDestinationRequest & WithEnableKinesisStreamingConfiguration(EnableKinesisStreamingConfigurationT &&value)
AWS_DYNAMODB_API Aws::String SerializePayload() const override
const EnableKinesisStreamingConfiguration & GetEnableKinesisStreamingConfiguration() const
AWS_DYNAMODB_API EndpointParameters GetEndpointContextParams() const override
DisableKinesisStreamingDestinationRequest & WithStreamArn(StreamArnT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String