AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
KerberosAuthenticationSettings.h
1
6#pragma once
7#include <aws/dms/DatabaseMigrationService_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace DatabaseMigrationService
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_DATABASEMIGRATIONSERVICE_API KerberosAuthenticationSettings() = default;
36 AWS_DATABASEMIGRATIONSERVICE_API KerberosAuthenticationSettings(Aws::Utils::Json::JsonView jsonValue);
37 AWS_DATABASEMIGRATIONSERVICE_API KerberosAuthenticationSettings& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_DATABASEMIGRATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline const Aws::String& GetKeyCacheSecretId() const { return m_keyCacheSecretId; }
47 inline bool KeyCacheSecretIdHasBeenSet() const { return m_keyCacheSecretIdHasBeenSet; }
48 template<typename KeyCacheSecretIdT = Aws::String>
49 void SetKeyCacheSecretId(KeyCacheSecretIdT&& value) { m_keyCacheSecretIdHasBeenSet = true; m_keyCacheSecretId = std::forward<KeyCacheSecretIdT>(value); }
50 template<typename KeyCacheSecretIdT = Aws::String>
51 KerberosAuthenticationSettings& WithKeyCacheSecretId(KeyCacheSecretIdT&& value) { SetKeyCacheSecretId(std::forward<KeyCacheSecretIdT>(value)); return *this;}
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) { m_keyCacheSecretIamArnHasBeenSet = true; m_keyCacheSecretIamArn = std::forward<KeyCacheSecretIamArnT>(value); }
64 template<typename KeyCacheSecretIamArnT = Aws::String>
65 KerberosAuthenticationSettings& WithKeyCacheSecretIamArn(KeyCacheSecretIamArnT&& value) { SetKeyCacheSecretIamArn(std::forward<KeyCacheSecretIamArnT>(value)); return *this;}
67
69
73 inline const Aws::String& GetKrb5FileContents() const { return m_krb5FileContents; }
74 inline bool Krb5FileContentsHasBeenSet() const { return m_krb5FileContentsHasBeenSet; }
75 template<typename Krb5FileContentsT = Aws::String>
76 void SetKrb5FileContents(Krb5FileContentsT&& value) { m_krb5FileContentsHasBeenSet = true; m_krb5FileContents = std::forward<Krb5FileContentsT>(value); }
77 template<typename Krb5FileContentsT = Aws::String>
78 KerberosAuthenticationSettings& WithKrb5FileContents(Krb5FileContentsT&& value) { SetKrb5FileContents(std::forward<Krb5FileContentsT>(value)); return *this;}
80 private:
81
82 Aws::String m_keyCacheSecretId;
83 bool m_keyCacheSecretIdHasBeenSet = false;
84
85 Aws::String m_keyCacheSecretIamArn;
86 bool m_keyCacheSecretIamArnHasBeenSet = false;
87
88 Aws::String m_krb5FileContents;
89 bool m_krb5FileContentsHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace DatabaseMigrationService
94} // 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