AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
KerberosAuthenticationSettings.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/dms/DatabaseMigrationService_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace DatabaseMigrationService {
20namespace Model {
21
29 public:
30 AWS_DATABASEMIGRATIONSERVICE_API KerberosAuthenticationSettings() = default;
31 AWS_DATABASEMIGRATIONSERVICE_API KerberosAuthenticationSettings(Aws::Utils::Json::JsonView jsonValue);
32 AWS_DATABASEMIGRATIONSERVICE_API KerberosAuthenticationSettings& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_DATABASEMIGRATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
40 inline const Aws::String& GetKeyCacheSecretId() const { return m_keyCacheSecretId; }
41 inline bool KeyCacheSecretIdHasBeenSet() const { return m_keyCacheSecretIdHasBeenSet; }
42 template <typename KeyCacheSecretIdT = Aws::String>
43 void SetKeyCacheSecretId(KeyCacheSecretIdT&& value) {
44 m_keyCacheSecretIdHasBeenSet = true;
45 m_keyCacheSecretId = std::forward<KeyCacheSecretIdT>(value);
46 }
47 template <typename KeyCacheSecretIdT = Aws::String>
49 SetKeyCacheSecretId(std::forward<KeyCacheSecretIdT>(value));
50 return *this;
51 }
53
55
60 inline const Aws::String& GetKeyCacheSecretIamArn() const { return m_keyCacheSecretIamArn; }
61 inline bool KeyCacheSecretIamArnHasBeenSet() const { return m_keyCacheSecretIamArnHasBeenSet; }
62 template <typename KeyCacheSecretIamArnT = Aws::String>
63 void SetKeyCacheSecretIamArn(KeyCacheSecretIamArnT&& value) {
64 m_keyCacheSecretIamArnHasBeenSet = true;
65 m_keyCacheSecretIamArn = std::forward<KeyCacheSecretIamArnT>(value);
66 }
67 template <typename KeyCacheSecretIamArnT = Aws::String>
69 SetKeyCacheSecretIamArn(std::forward<KeyCacheSecretIamArnT>(value));
70 return *this;
71 }
73
75
79 inline const Aws::String& GetKrb5FileContents() const { return m_krb5FileContents; }
80 inline bool Krb5FileContentsHasBeenSet() const { return m_krb5FileContentsHasBeenSet; }
81 template <typename Krb5FileContentsT = Aws::String>
82 void SetKrb5FileContents(Krb5FileContentsT&& value) {
83 m_krb5FileContentsHasBeenSet = true;
84 m_krb5FileContents = std::forward<Krb5FileContentsT>(value);
85 }
86 template <typename Krb5FileContentsT = Aws::String>
88 SetKrb5FileContents(std::forward<Krb5FileContentsT>(value));
89 return *this;
90 }
92 private:
93 Aws::String m_keyCacheSecretId;
94
95 Aws::String m_keyCacheSecretIamArn;
96
97 Aws::String m_krb5FileContents;
98 bool m_keyCacheSecretIdHasBeenSet = false;
99 bool m_keyCacheSecretIamArnHasBeenSet = false;
100 bool m_krb5FileContentsHasBeenSet = false;
101};
102
103} // namespace Model
104} // namespace DatabaseMigrationService
105} // namespace Aws
AWS_DATABASEMIGRATIONSERVICE_API KerberosAuthenticationSettings & operator=(Aws::Utils::Json::JsonView jsonValue)
KerberosAuthenticationSettings & WithKeyCacheSecretId(KeyCacheSecretIdT &&value)
AWS_DATABASEMIGRATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
KerberosAuthenticationSettings & WithKrb5FileContents(Krb5FileContentsT &&value)
AWS_DATABASEMIGRATIONSERVICE_API KerberosAuthenticationSettings()=default
AWS_DATABASEMIGRATIONSERVICE_API KerberosAuthenticationSettings(Aws::Utils::Json::JsonView jsonValue)
KerberosAuthenticationSettings & WithKeyCacheSecretIamArn(KeyCacheSecretIamArnT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue