AWS SDK for C++

AWS SDK for C++ Version 1.11.861

Loading...
Searching...
No Matches
ModifyQev2IdcApplicationRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/redshift/RedshiftRequest.h>
9#include <aws/redshift/Redshift_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Redshift {
15namespace Model {
16
20 public:
21 AWS_REDSHIFT_API ModifyQev2IdcApplicationRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "ModifyQev2IdcApplication"; }
28
29 AWS_REDSHIFT_API Aws::String SerializePayload() const override;
30
31 protected:
32 AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
33
34 public:
36
40 inline const Aws::String& GetQev2IdcApplicationArn() const { return m_qev2IdcApplicationArn; }
41 inline bool Qev2IdcApplicationArnHasBeenSet() const { return m_qev2IdcApplicationArnHasBeenSet; }
42 template <typename Qev2IdcApplicationArnT = Aws::String>
43 void SetQev2IdcApplicationArn(Qev2IdcApplicationArnT&& value) {
44 m_qev2IdcApplicationArnHasBeenSet = true;
45 m_qev2IdcApplicationArn = std::forward<Qev2IdcApplicationArnT>(value);
46 }
47 template <typename Qev2IdcApplicationArnT = Aws::String>
49 SetQev2IdcApplicationArn(std::forward<Qev2IdcApplicationArnT>(value));
50 return *this;
51 }
53
55
59 inline const Aws::String& GetIdcDisplayName() const { return m_idcDisplayName; }
60 inline bool IdcDisplayNameHasBeenSet() const { return m_idcDisplayNameHasBeenSet; }
61 template <typename IdcDisplayNameT = Aws::String>
62 void SetIdcDisplayName(IdcDisplayNameT&& value) {
63 m_idcDisplayNameHasBeenSet = true;
64 m_idcDisplayName = std::forward<IdcDisplayNameT>(value);
65 }
66 template <typename IdcDisplayNameT = Aws::String>
68 SetIdcDisplayName(std::forward<IdcDisplayNameT>(value));
69 return *this;
70 }
72 private:
73 Aws::String m_qev2IdcApplicationArn;
74
75 Aws::String m_idcDisplayName;
76 bool m_qev2IdcApplicationArnHasBeenSet = false;
77 bool m_idcDisplayNameHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace Redshift
82} // namespace Aws
AWS_REDSHIFT_API ModifyQev2IdcApplicationRequest()=default
AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_REDSHIFT_API Aws::String SerializePayload() const override
ModifyQev2IdcApplicationRequest & WithIdcDisplayName(IdcDisplayNameT &&value)
ModifyQev2IdcApplicationRequest & WithQev2IdcApplicationArn(Qev2IdcApplicationArnT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String