AWS SDK for C++

AWS SDK for C++ Version 1.11.861

Loading...
Searching...
No Matches
CreateQev2IdcApplicationRequest.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/redshift/RedshiftRequest.h>
10#include <aws/redshift/Redshift_EXPORTS.h>
11#include <aws/redshift/model/Tag.h>
12
13#include <utility>
14
15namespace Aws {
16namespace Redshift {
17namespace Model {
18
22 public:
23 AWS_REDSHIFT_API CreateQev2IdcApplicationRequest() = default;
24
25 // Service request name is the Operation name which will send this request out,
26 // each operation should has unique request name, so that we can get operation's name from this request.
27 // Note: this is not true for response, multiple operations may have the same response name,
28 // so we can not get operation's name from response.
29 inline virtual const char* GetServiceRequestName() const override { return "CreateQev2IdcApplication"; }
30
31 AWS_REDSHIFT_API Aws::String SerializePayload() const override;
32
33 protected:
34 AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
35
36 public:
38
42 inline const Aws::String& GetIdcInstanceArn() const { return m_idcInstanceArn; }
43 inline bool IdcInstanceArnHasBeenSet() const { return m_idcInstanceArnHasBeenSet; }
44 template <typename IdcInstanceArnT = Aws::String>
45 void SetIdcInstanceArn(IdcInstanceArnT&& value) {
46 m_idcInstanceArnHasBeenSet = true;
47 m_idcInstanceArn = std::forward<IdcInstanceArnT>(value);
48 }
49 template <typename IdcInstanceArnT = Aws::String>
51 SetIdcInstanceArn(std::forward<IdcInstanceArnT>(value));
52 return *this;
53 }
55
57
61 inline const Aws::String& GetQev2IdcApplicationName() const { return m_qev2IdcApplicationName; }
62 inline bool Qev2IdcApplicationNameHasBeenSet() const { return m_qev2IdcApplicationNameHasBeenSet; }
63 template <typename Qev2IdcApplicationNameT = Aws::String>
64 void SetQev2IdcApplicationName(Qev2IdcApplicationNameT&& value) {
65 m_qev2IdcApplicationNameHasBeenSet = true;
66 m_qev2IdcApplicationName = std::forward<Qev2IdcApplicationNameT>(value);
67 }
68 template <typename Qev2IdcApplicationNameT = Aws::String>
70 SetQev2IdcApplicationName(std::forward<Qev2IdcApplicationNameT>(value));
71 return *this;
72 }
74
76
80 inline const Aws::String& GetIdcDisplayName() const { return m_idcDisplayName; }
81 inline bool IdcDisplayNameHasBeenSet() const { return m_idcDisplayNameHasBeenSet; }
82 template <typename IdcDisplayNameT = Aws::String>
83 void SetIdcDisplayName(IdcDisplayNameT&& value) {
84 m_idcDisplayNameHasBeenSet = true;
85 m_idcDisplayName = std::forward<IdcDisplayNameT>(value);
86 }
87 template <typename IdcDisplayNameT = Aws::String>
89 SetIdcDisplayName(std::forward<IdcDisplayNameT>(value));
90 return *this;
91 }
93
95
99 inline const Aws::Vector<Tag>& GetTags() const { return m_tags; }
100 inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
101 template <typename TagsT = Aws::Vector<Tag>>
102 void SetTags(TagsT&& value) {
103 m_tagsHasBeenSet = true;
104 m_tags = std::forward<TagsT>(value);
105 }
106 template <typename TagsT = Aws::Vector<Tag>>
108 SetTags(std::forward<TagsT>(value));
109 return *this;
110 }
111 template <typename TagsT = Tag>
113 m_tagsHasBeenSet = true;
114 m_tags.emplace_back(std::forward<TagsT>(value));
115 return *this;
116 }
118 private:
119 Aws::String m_idcInstanceArn;
120
121 Aws::String m_qev2IdcApplicationName;
122
123 Aws::String m_idcDisplayName;
124
125 Aws::Vector<Tag> m_tags;
126 bool m_idcInstanceArnHasBeenSet = false;
127 bool m_qev2IdcApplicationNameHasBeenSet = false;
128 bool m_idcDisplayNameHasBeenSet = false;
129 bool m_tagsHasBeenSet = false;
130};
131
132} // namespace Model
133} // namespace Redshift
134} // namespace Aws
CreateQev2IdcApplicationRequest & WithTags(TagsT &&value)
AWS_REDSHIFT_API CreateQev2IdcApplicationRequest()=default
AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
CreateQev2IdcApplicationRequest & AddTags(TagsT &&value)
CreateQev2IdcApplicationRequest & WithIdcDisplayName(IdcDisplayNameT &&value)
CreateQev2IdcApplicationRequest & WithIdcInstanceArn(IdcInstanceArnT &&value)
CreateQev2IdcApplicationRequest & WithQev2IdcApplicationName(Qev2IdcApplicationNameT &&value)
AWS_REDSHIFT_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector