AWS SDK for C++

AWS SDK for C++ Version 1.11.756

Loading...
Searching...
No Matches
DescribeKinesisStreamingDestinationResult.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/dynamodb/DynamoDB_EXPORTS.h>
10#include <aws/dynamodb/model/KinesisDataStreamDestination.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 DescribeKinesisStreamingDestinationResult() = 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
54 return m_kinesisDataStreamDestinations;
55 }
56 template <typename KinesisDataStreamDestinationsT = Aws::Vector<KinesisDataStreamDestination>>
57 void SetKinesisDataStreamDestinations(KinesisDataStreamDestinationsT&& value) {
58 m_kinesisDataStreamDestinationsHasBeenSet = true;
59 m_kinesisDataStreamDestinations = std::forward<KinesisDataStreamDestinationsT>(value);
60 }
61 template <typename KinesisDataStreamDestinationsT = Aws::Vector<KinesisDataStreamDestination>>
63 SetKinesisDataStreamDestinations(std::forward<KinesisDataStreamDestinationsT>(value));
64 return *this;
65 }
66 template <typename KinesisDataStreamDestinationsT = KinesisDataStreamDestination>
68 m_kinesisDataStreamDestinationsHasBeenSet = true;
69 m_kinesisDataStreamDestinations.emplace_back(std::forward<KinesisDataStreamDestinationsT>(value));
70 return *this;
71 }
73
75
76 inline const Aws::String& GetRequestId() const { return m_requestId; }
77 template <typename RequestIdT = Aws::String>
78 void SetRequestId(RequestIdT&& value) {
79 m_requestIdHasBeenSet = true;
80 m_requestId = std::forward<RequestIdT>(value);
81 }
82 template <typename RequestIdT = Aws::String>
84 SetRequestId(std::forward<RequestIdT>(value));
85 return *this;
86 }
88 private:
89 Aws::String m_tableName;
90
91 Aws::Vector<KinesisDataStreamDestination> m_kinesisDataStreamDestinations;
92
93 Aws::String m_requestId;
94 bool m_tableNameHasBeenSet = false;
95 bool m_kinesisDataStreamDestinationsHasBeenSet = false;
96 bool m_requestIdHasBeenSet = false;
97};
98
99} // namespace Model
100} // namespace DynamoDB
101} // namespace Aws
AWS_DYNAMODB_API DescribeKinesisStreamingDestinationResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeKinesisStreamingDestinationResult & AddKinesisDataStreamDestinations(KinesisDataStreamDestinationsT &&value)
DescribeKinesisStreamingDestinationResult & WithKinesisDataStreamDestinations(KinesisDataStreamDestinationsT &&value)
DescribeKinesisStreamingDestinationResult & WithTableName(TableNameT &&value)
const Aws::Vector< KinesisDataStreamDestination > & GetKinesisDataStreamDestinations() const
DescribeKinesisStreamingDestinationResult & WithRequestId(RequestIdT &&value)
AWS_DYNAMODB_API DescribeKinesisStreamingDestinationResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue