AWS SDK for C++

AWS SDK for C++ Version 1.11.637

Loading...
Searching...
No Matches
ApplicationEncryptionConfiguration.h
1
6#pragma once
7#include <aws/kinesisanalyticsv2/KinesisAnalyticsV2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/kinesisanalyticsv2/model/KeyType.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 KinesisAnalyticsV2
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_KINESISANALYTICSV2_API ApplicationEncryptionConfiguration() = default;
39 AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::String& GetKeyId() const { return m_keyId; }
48 inline bool KeyIdHasBeenSet() const { return m_keyIdHasBeenSet; }
49 template<typename KeyIdT = Aws::String>
50 void SetKeyId(KeyIdT&& value) { m_keyIdHasBeenSet = true; m_keyId = std::forward<KeyIdT>(value); }
51 template<typename KeyIdT = Aws::String>
52 ApplicationEncryptionConfiguration& WithKeyId(KeyIdT&& value) { SetKeyId(std::forward<KeyIdT>(value)); return *this;}
54
56
59 inline KeyType GetKeyType() const { return m_keyType; }
60 inline bool KeyTypeHasBeenSet() const { return m_keyTypeHasBeenSet; }
61 inline void SetKeyType(KeyType value) { m_keyTypeHasBeenSet = true; m_keyType = value; }
62 inline ApplicationEncryptionConfiguration& WithKeyType(KeyType value) { SetKeyType(value); return *this;}
64 private:
65
66 Aws::String m_keyId;
67 bool m_keyIdHasBeenSet = false;
68
69 KeyType m_keyType{KeyType::NOT_SET};
70 bool m_keyTypeHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace KinesisAnalyticsV2
75} // namespace Aws
AWS_KINESISANALYTICSV2_API ApplicationEncryptionConfiguration()=default
AWS_KINESISANALYTICSV2_API ApplicationEncryptionConfiguration(Aws::Utils::Json::JsonView jsonValue)
AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_KINESISANALYTICSV2_API ApplicationEncryptionConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue