AWS SDK for C++

AWS SDK for C++ Version 1.11.844

Loading...
Searching...
No Matches
SnowflakePropertiesInput.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/datazone/DataZone_EXPORTS.h>
9#include <aws/datazone/model/ConnectivityProperties.h>
10#include <aws/datazone/model/IdentityMapping.h>
11#include <aws/datazone/model/LineageSyncInput.h>
12
13#include <utility>
14
15namespace Aws {
16namespace Utils {
17namespace Json {
18class JsonValue;
19class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace DataZone {
23namespace Model {
24
33 public:
34 AWS_DATAZONE_API SnowflakePropertiesInput() = default;
37 AWS_DATAZONE_API Aws::Utils::Json::JsonValue Jsonize() const;
38
40
43 inline const ConnectivityProperties& GetConnectivityProperties() const { return m_connectivityProperties; }
44 inline bool ConnectivityPropertiesHasBeenSet() const { return m_connectivityPropertiesHasBeenSet; }
45 template <typename ConnectivityPropertiesT = ConnectivityProperties>
46 void SetConnectivityProperties(ConnectivityPropertiesT&& value) {
47 m_connectivityPropertiesHasBeenSet = true;
48 m_connectivityProperties = std::forward<ConnectivityPropertiesT>(value);
49 }
50 template <typename ConnectivityPropertiesT = ConnectivityProperties>
51 SnowflakePropertiesInput& WithConnectivityProperties(ConnectivityPropertiesT&& value) {
52 SetConnectivityProperties(std::forward<ConnectivityPropertiesT>(value));
53 return *this;
54 }
56
58
61 inline const Aws::String& GetSnowflakeRole() const { return m_snowflakeRole; }
62 inline bool SnowflakeRoleHasBeenSet() const { return m_snowflakeRoleHasBeenSet; }
63 template <typename SnowflakeRoleT = Aws::String>
64 void SetSnowflakeRole(SnowflakeRoleT&& value) {
65 m_snowflakeRoleHasBeenSet = true;
66 m_snowflakeRole = std::forward<SnowflakeRoleT>(value);
67 }
68 template <typename SnowflakeRoleT = Aws::String>
70 SetSnowflakeRole(std::forward<SnowflakeRoleT>(value));
71 return *this;
72 }
74
76
79 inline const IdentityMapping& GetIdentityMapping() const { return m_identityMapping; }
80 inline bool IdentityMappingHasBeenSet() const { return m_identityMappingHasBeenSet; }
81 template <typename IdentityMappingT = IdentityMapping>
82 void SetIdentityMapping(IdentityMappingT&& value) {
83 m_identityMappingHasBeenSet = true;
84 m_identityMapping = std::forward<IdentityMappingT>(value);
85 }
86 template <typename IdentityMappingT = IdentityMapping>
87 SnowflakePropertiesInput& WithIdentityMapping(IdentityMappingT&& value) {
88 SetIdentityMapping(std::forward<IdentityMappingT>(value));
89 return *this;
90 }
92
94
97 inline const LineageSyncInput& GetLineageSync() const { return m_lineageSync; }
98 inline bool LineageSyncHasBeenSet() const { return m_lineageSyncHasBeenSet; }
99 template <typename LineageSyncT = LineageSyncInput>
100 void SetLineageSync(LineageSyncT&& value) {
101 m_lineageSyncHasBeenSet = true;
102 m_lineageSync = std::forward<LineageSyncT>(value);
103 }
104 template <typename LineageSyncT = LineageSyncInput>
106 SetLineageSync(std::forward<LineageSyncT>(value));
107 return *this;
108 }
110 private:
111 ConnectivityProperties m_connectivityProperties;
112
113 Aws::String m_snowflakeRole;
114
115 IdentityMapping m_identityMapping;
116
117 LineageSyncInput m_lineageSync;
118 bool m_connectivityPropertiesHasBeenSet = false;
119 bool m_snowflakeRoleHasBeenSet = false;
120 bool m_identityMappingHasBeenSet = false;
121 bool m_lineageSyncHasBeenSet = false;
122};
123
124} // namespace Model
125} // namespace DataZone
126} // namespace Aws
AWS_DATAZONE_API SnowflakePropertiesInput()=default
const ConnectivityProperties & GetConnectivityProperties() const
SnowflakePropertiesInput & WithSnowflakeRole(SnowflakeRoleT &&value)
SnowflakePropertiesInput & WithConnectivityProperties(ConnectivityPropertiesT &&value)
void SetConnectivityProperties(ConnectivityPropertiesT &&value)
SnowflakePropertiesInput & WithIdentityMapping(IdentityMappingT &&value)
AWS_DATAZONE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_DATAZONE_API SnowflakePropertiesInput & operator=(Aws::Utils::Json::JsonView jsonValue)
SnowflakePropertiesInput & WithLineageSync(LineageSyncT &&value)
AWS_DATAZONE_API SnowflakePropertiesInput(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue