AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
IngressPointAuthConfiguration.h
1
6#pragma once
7#include <aws/mailmanager/MailManager_EXPORTS.h>
8#include <aws/mailmanager/model/IngressPointPasswordConfiguration.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace MailManager
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_MAILMANAGER_API IngressPointAuthConfiguration();
39 AWS_MAILMANAGER_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const IngressPointPasswordConfiguration& GetIngressPointPasswordConfiguration() const{ return m_ingressPointPasswordConfiguration; }
48 inline bool IngressPointPasswordConfigurationHasBeenSet() const { return m_ingressPointPasswordConfigurationHasBeenSet; }
49 inline void SetIngressPointPasswordConfiguration(const IngressPointPasswordConfiguration& value) { m_ingressPointPasswordConfigurationHasBeenSet = true; m_ingressPointPasswordConfiguration = value; }
50 inline void SetIngressPointPasswordConfiguration(IngressPointPasswordConfiguration&& value) { m_ingressPointPasswordConfigurationHasBeenSet = true; m_ingressPointPasswordConfiguration = std::move(value); }
54
56
60 inline const Aws::String& GetSecretArn() const{ return m_secretArn; }
61 inline bool SecretArnHasBeenSet() const { return m_secretArnHasBeenSet; }
62 inline void SetSecretArn(const Aws::String& value) { m_secretArnHasBeenSet = true; m_secretArn = value; }
63 inline void SetSecretArn(Aws::String&& value) { m_secretArnHasBeenSet = true; m_secretArn = std::move(value); }
64 inline void SetSecretArn(const char* value) { m_secretArnHasBeenSet = true; m_secretArn.assign(value); }
65 inline IngressPointAuthConfiguration& WithSecretArn(const Aws::String& value) { SetSecretArn(value); return *this;}
66 inline IngressPointAuthConfiguration& WithSecretArn(Aws::String&& value) { SetSecretArn(std::move(value)); return *this;}
67 inline IngressPointAuthConfiguration& WithSecretArn(const char* value) { SetSecretArn(value); return *this;}
69 private:
70
71 IngressPointPasswordConfiguration m_ingressPointPasswordConfiguration;
72 bool m_ingressPointPasswordConfigurationHasBeenSet = false;
73
74 Aws::String m_secretArn;
75 bool m_secretArnHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace MailManager
80} // namespace Aws
void SetIngressPointPasswordConfiguration(const IngressPointPasswordConfiguration &value)
AWS_MAILMANAGER_API IngressPointAuthConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_MAILMANAGER_API IngressPointAuthConfiguration(Aws::Utils::Json::JsonView jsonValue)
IngressPointAuthConfiguration & WithSecretArn(const Aws::String &value)
AWS_MAILMANAGER_API Aws::Utils::Json::JsonValue Jsonize() const
void SetIngressPointPasswordConfiguration(IngressPointPasswordConfiguration &&value)
IngressPointAuthConfiguration & WithSecretArn(Aws::String &&value)
IngressPointAuthConfiguration & WithIngressPointPasswordConfiguration(const IngressPointPasswordConfiguration &value)
IngressPointAuthConfiguration & WithIngressPointPasswordConfiguration(IngressPointPasswordConfiguration &&value)
IngressPointAuthConfiguration & WithSecretArn(const char *value)
const IngressPointPasswordConfiguration & GetIngressPointPasswordConfiguration() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue