AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ModifyRedshiftIdcApplicationRequest.h
1
6#pragma once
7#include <aws/redshift/Redshift_EXPORTS.h>
8#include <aws/redshift/RedshiftRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/redshift/model/AuthorizedTokenIssuer.h>
12#include <aws/redshift/model/ServiceIntegrationsUnion.h>
13#include <utility>
14
15namespace Aws
16{
17namespace Redshift
18{
19namespace Model
20{
21
25 {
26 public:
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "ModifyRedshiftIdcApplication"; }
34
35 AWS_REDSHIFT_API Aws::String SerializePayload() const override;
36
37 protected:
38 AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
39
40 public:
41
43
47 inline const Aws::String& GetRedshiftIdcApplicationArn() const{ return m_redshiftIdcApplicationArn; }
48 inline bool RedshiftIdcApplicationArnHasBeenSet() const { return m_redshiftIdcApplicationArnHasBeenSet; }
49 inline void SetRedshiftIdcApplicationArn(const Aws::String& value) { m_redshiftIdcApplicationArnHasBeenSet = true; m_redshiftIdcApplicationArn = value; }
50 inline void SetRedshiftIdcApplicationArn(Aws::String&& value) { m_redshiftIdcApplicationArnHasBeenSet = true; m_redshiftIdcApplicationArn = std::move(value); }
51 inline void SetRedshiftIdcApplicationArn(const char* value) { m_redshiftIdcApplicationArnHasBeenSet = true; m_redshiftIdcApplicationArn.assign(value); }
56
58
63 inline const Aws::String& GetIdentityNamespace() const{ return m_identityNamespace; }
64 inline bool IdentityNamespaceHasBeenSet() const { return m_identityNamespaceHasBeenSet; }
65 inline void SetIdentityNamespace(const Aws::String& value) { m_identityNamespaceHasBeenSet = true; m_identityNamespace = value; }
66 inline void SetIdentityNamespace(Aws::String&& value) { m_identityNamespaceHasBeenSet = true; m_identityNamespace = std::move(value); }
67 inline void SetIdentityNamespace(const char* value) { m_identityNamespaceHasBeenSet = true; m_identityNamespace.assign(value); }
70 inline ModifyRedshiftIdcApplicationRequest& WithIdentityNamespace(const char* value) { SetIdentityNamespace(value); return *this;}
72
74
79 inline const Aws::String& GetIamRoleArn() const{ return m_iamRoleArn; }
80 inline bool IamRoleArnHasBeenSet() const { return m_iamRoleArnHasBeenSet; }
81 inline void SetIamRoleArn(const Aws::String& value) { m_iamRoleArnHasBeenSet = true; m_iamRoleArn = value; }
82 inline void SetIamRoleArn(Aws::String&& value) { m_iamRoleArnHasBeenSet = true; m_iamRoleArn = std::move(value); }
83 inline void SetIamRoleArn(const char* value) { m_iamRoleArnHasBeenSet = true; m_iamRoleArn.assign(value); }
84 inline ModifyRedshiftIdcApplicationRequest& WithIamRoleArn(const Aws::String& value) { SetIamRoleArn(value); return *this;}
85 inline ModifyRedshiftIdcApplicationRequest& WithIamRoleArn(Aws::String&& value) { SetIamRoleArn(std::move(value)); return *this;}
86 inline ModifyRedshiftIdcApplicationRequest& WithIamRoleArn(const char* value) { SetIamRoleArn(value); return *this;}
88
90
94 inline const Aws::String& GetIdcDisplayName() const{ return m_idcDisplayName; }
95 inline bool IdcDisplayNameHasBeenSet() const { return m_idcDisplayNameHasBeenSet; }
96 inline void SetIdcDisplayName(const Aws::String& value) { m_idcDisplayNameHasBeenSet = true; m_idcDisplayName = value; }
97 inline void SetIdcDisplayName(Aws::String&& value) { m_idcDisplayNameHasBeenSet = true; m_idcDisplayName = std::move(value); }
98 inline void SetIdcDisplayName(const char* value) { m_idcDisplayNameHasBeenSet = true; m_idcDisplayName.assign(value); }
100 inline ModifyRedshiftIdcApplicationRequest& WithIdcDisplayName(Aws::String&& value) { SetIdcDisplayName(std::move(value)); return *this;}
101 inline ModifyRedshiftIdcApplicationRequest& WithIdcDisplayName(const char* value) { SetIdcDisplayName(value); return *this;}
103
105
109 inline const Aws::Vector<AuthorizedTokenIssuer>& GetAuthorizedTokenIssuerList() const{ return m_authorizedTokenIssuerList; }
110 inline bool AuthorizedTokenIssuerListHasBeenSet() const { return m_authorizedTokenIssuerListHasBeenSet; }
111 inline void SetAuthorizedTokenIssuerList(const Aws::Vector<AuthorizedTokenIssuer>& value) { m_authorizedTokenIssuerListHasBeenSet = true; m_authorizedTokenIssuerList = value; }
112 inline void SetAuthorizedTokenIssuerList(Aws::Vector<AuthorizedTokenIssuer>&& value) { m_authorizedTokenIssuerListHasBeenSet = true; m_authorizedTokenIssuerList = std::move(value); }
115 inline ModifyRedshiftIdcApplicationRequest& AddAuthorizedTokenIssuerList(const AuthorizedTokenIssuer& value) { m_authorizedTokenIssuerListHasBeenSet = true; m_authorizedTokenIssuerList.push_back(value); return *this; }
116 inline ModifyRedshiftIdcApplicationRequest& AddAuthorizedTokenIssuerList(AuthorizedTokenIssuer&& value) { m_authorizedTokenIssuerListHasBeenSet = true; m_authorizedTokenIssuerList.push_back(std::move(value)); return *this; }
118
120
123 inline const Aws::Vector<ServiceIntegrationsUnion>& GetServiceIntegrations() const{ return m_serviceIntegrations; }
124 inline bool ServiceIntegrationsHasBeenSet() const { return m_serviceIntegrationsHasBeenSet; }
125 inline void SetServiceIntegrations(const Aws::Vector<ServiceIntegrationsUnion>& value) { m_serviceIntegrationsHasBeenSet = true; m_serviceIntegrations = value; }
126 inline void SetServiceIntegrations(Aws::Vector<ServiceIntegrationsUnion>&& value) { m_serviceIntegrationsHasBeenSet = true; m_serviceIntegrations = std::move(value); }
129 inline ModifyRedshiftIdcApplicationRequest& AddServiceIntegrations(const ServiceIntegrationsUnion& value) { m_serviceIntegrationsHasBeenSet = true; m_serviceIntegrations.push_back(value); return *this; }
130 inline ModifyRedshiftIdcApplicationRequest& AddServiceIntegrations(ServiceIntegrationsUnion&& value) { m_serviceIntegrationsHasBeenSet = true; m_serviceIntegrations.push_back(std::move(value)); return *this; }
132 private:
133
134 Aws::String m_redshiftIdcApplicationArn;
135 bool m_redshiftIdcApplicationArnHasBeenSet = false;
136
137 Aws::String m_identityNamespace;
138 bool m_identityNamespaceHasBeenSet = false;
139
140 Aws::String m_iamRoleArn;
141 bool m_iamRoleArnHasBeenSet = false;
142
143 Aws::String m_idcDisplayName;
144 bool m_idcDisplayNameHasBeenSet = false;
145
146 Aws::Vector<AuthorizedTokenIssuer> m_authorizedTokenIssuerList;
147 bool m_authorizedTokenIssuerListHasBeenSet = false;
148
149 Aws::Vector<ServiceIntegrationsUnion> m_serviceIntegrations;
150 bool m_serviceIntegrationsHasBeenSet = false;
151 };
152
153} // namespace Model
154} // namespace Redshift
155} // namespace Aws
void SetAuthorizedTokenIssuerList(Aws::Vector< AuthorizedTokenIssuer > &&value)
ModifyRedshiftIdcApplicationRequest & WithAuthorizedTokenIssuerList(const Aws::Vector< AuthorizedTokenIssuer > &value)
ModifyRedshiftIdcApplicationRequest & WithRedshiftIdcApplicationArn(const Aws::String &value)
ModifyRedshiftIdcApplicationRequest & WithRedshiftIdcApplicationArn(const char *value)
ModifyRedshiftIdcApplicationRequest & WithServiceIntegrations(const Aws::Vector< ServiceIntegrationsUnion > &value)
ModifyRedshiftIdcApplicationRequest & WithIdentityNamespace(const Aws::String &value)
ModifyRedshiftIdcApplicationRequest & WithIamRoleArn(Aws::String &&value)
ModifyRedshiftIdcApplicationRequest & WithIdcDisplayName(Aws::String &&value)
ModifyRedshiftIdcApplicationRequest & WithIdentityNamespace(const char *value)
ModifyRedshiftIdcApplicationRequest & AddAuthorizedTokenIssuerList(AuthorizedTokenIssuer &&value)
const Aws::Vector< AuthorizedTokenIssuer > & GetAuthorizedTokenIssuerList() const
ModifyRedshiftIdcApplicationRequest & WithAuthorizedTokenIssuerList(Aws::Vector< AuthorizedTokenIssuer > &&value)
ModifyRedshiftIdcApplicationRequest & WithServiceIntegrations(Aws::Vector< ServiceIntegrationsUnion > &&value)
ModifyRedshiftIdcApplicationRequest & WithIdcDisplayName(const char *value)
void SetServiceIntegrations(const Aws::Vector< ServiceIntegrationsUnion > &value)
ModifyRedshiftIdcApplicationRequest & WithRedshiftIdcApplicationArn(Aws::String &&value)
ModifyRedshiftIdcApplicationRequest & WithIamRoleArn(const Aws::String &value)
ModifyRedshiftIdcApplicationRequest & AddServiceIntegrations(ServiceIntegrationsUnion &&value)
ModifyRedshiftIdcApplicationRequest & WithIdcDisplayName(const Aws::String &value)
ModifyRedshiftIdcApplicationRequest & WithIdentityNamespace(Aws::String &&value)
const Aws::Vector< ServiceIntegrationsUnion > & GetServiceIntegrations() const
ModifyRedshiftIdcApplicationRequest & AddServiceIntegrations(const ServiceIntegrationsUnion &value)
ModifyRedshiftIdcApplicationRequest & WithIamRoleArn(const char *value)
void SetServiceIntegrations(Aws::Vector< ServiceIntegrationsUnion > &&value)
AWS_REDSHIFT_API Aws::String SerializePayload() const override
AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
ModifyRedshiftIdcApplicationRequest & AddAuthorizedTokenIssuerList(const AuthorizedTokenIssuer &value)
void SetAuthorizedTokenIssuerList(const Aws::Vector< AuthorizedTokenIssuer > &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector