AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
EncryptionConfig.h
1
6#pragma once
7#include <aws/forecast/ForecastService_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 ForecastService
22{
23namespace Model
24{
25
35 {
36 public:
37 AWS_FORECASTSERVICE_API EncryptionConfig() = default;
38 AWS_FORECASTSERVICE_API EncryptionConfig(Aws::Utils::Json::JsonView jsonValue);
39 AWS_FORECASTSERVICE_API EncryptionConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
40 AWS_FORECASTSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
50 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
51 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
52 template<typename RoleArnT = Aws::String>
53 void SetRoleArn(RoleArnT&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::forward<RoleArnT>(value); }
54 template<typename RoleArnT = Aws::String>
55 EncryptionConfig& WithRoleArn(RoleArnT&& value) { SetRoleArn(std::forward<RoleArnT>(value)); return *this;}
57
59
62 inline const Aws::String& GetKMSKeyArn() const { return m_kMSKeyArn; }
63 inline bool KMSKeyArnHasBeenSet() const { return m_kMSKeyArnHasBeenSet; }
64 template<typename KMSKeyArnT = Aws::String>
65 void SetKMSKeyArn(KMSKeyArnT&& value) { m_kMSKeyArnHasBeenSet = true; m_kMSKeyArn = std::forward<KMSKeyArnT>(value); }
66 template<typename KMSKeyArnT = Aws::String>
67 EncryptionConfig& WithKMSKeyArn(KMSKeyArnT&& value) { SetKMSKeyArn(std::forward<KMSKeyArnT>(value)); return *this;}
69 private:
70
71 Aws::String m_roleArn;
72 bool m_roleArnHasBeenSet = false;
73
74 Aws::String m_kMSKeyArn;
75 bool m_kMSKeyArnHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace ForecastService
80} // namespace Aws
EncryptionConfig & WithRoleArn(RoleArnT &&value)
AWS_FORECASTSERVICE_API EncryptionConfig()=default
EncryptionConfig & WithKMSKeyArn(KMSKeyArnT &&value)
AWS_FORECASTSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_FORECASTSERVICE_API EncryptionConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_FORECASTSERVICE_API EncryptionConfig(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue