AWS SDK for C++

AWS SDK for C++ Version 1.11.740

Loading...
Searching...
No Matches
KinesisStreamsOutput.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/kinesisanalytics/KinesisAnalytics_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace KinesisAnalytics {
20namespace Model {
21
31 public:
32 AWS_KINESISANALYTICS_API KinesisStreamsOutput() = default;
33 AWS_KINESISANALYTICS_API KinesisStreamsOutput(Aws::Utils::Json::JsonView jsonValue);
34 AWS_KINESISANALYTICS_API KinesisStreamsOutput& operator=(Aws::Utils::Json::JsonView jsonValue);
35 AWS_KINESISANALYTICS_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
41 inline const Aws::String& GetResourceARN() const { return m_resourceARN; }
42 inline bool ResourceARNHasBeenSet() const { return m_resourceARNHasBeenSet; }
43 template <typename ResourceARNT = Aws::String>
44 void SetResourceARN(ResourceARNT&& value) {
45 m_resourceARNHasBeenSet = true;
46 m_resourceARN = std::forward<ResourceARNT>(value);
47 }
48 template <typename ResourceARNT = Aws::String>
49 KinesisStreamsOutput& WithResourceARN(ResourceARNT&& value) {
50 SetResourceARN(std::forward<ResourceARNT>(value));
51 return *this;
52 }
54
56
61 inline const Aws::String& GetRoleARN() const { return m_roleARN; }
62 inline bool RoleARNHasBeenSet() const { return m_roleARNHasBeenSet; }
63 template <typename RoleARNT = Aws::String>
64 void SetRoleARN(RoleARNT&& value) {
65 m_roleARNHasBeenSet = true;
66 m_roleARN = std::forward<RoleARNT>(value);
67 }
68 template <typename RoleARNT = Aws::String>
69 KinesisStreamsOutput& WithRoleARN(RoleARNT&& value) {
70 SetRoleARN(std::forward<RoleARNT>(value));
71 return *this;
72 }
74 private:
75 Aws::String m_resourceARN;
76
77 Aws::String m_roleARN;
78 bool m_resourceARNHasBeenSet = false;
79 bool m_roleARNHasBeenSet = false;
80};
81
82} // namespace Model
83} // namespace KinesisAnalytics
84} // namespace Aws
AWS_KINESISANALYTICS_API KinesisStreamsOutput(Aws::Utils::Json::JsonView jsonValue)
KinesisStreamsOutput & WithRoleARN(RoleARNT &&value)
AWS_KINESISANALYTICS_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_KINESISANALYTICS_API KinesisStreamsOutput & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_KINESISANALYTICS_API KinesisStreamsOutput()=default
KinesisStreamsOutput & WithResourceARN(ResourceARNT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue