AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
UpdateDataSecurityConfig.h
1
6#pragma once
7#include <aws/comprehend/Comprehend_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/comprehend/model/VpcConfig.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 Comprehend
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_COMPREHEND_API UpdateDataSecurityConfig() = default;
38 AWS_COMPREHEND_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
50 inline const Aws::String& GetModelKmsKeyId() const { return m_modelKmsKeyId; }
51 inline bool ModelKmsKeyIdHasBeenSet() const { return m_modelKmsKeyIdHasBeenSet; }
52 template<typename ModelKmsKeyIdT = Aws::String>
53 void SetModelKmsKeyId(ModelKmsKeyIdT&& value) { m_modelKmsKeyIdHasBeenSet = true; m_modelKmsKeyId = std::forward<ModelKmsKeyIdT>(value); }
54 template<typename ModelKmsKeyIdT = Aws::String>
55 UpdateDataSecurityConfig& WithModelKmsKeyId(ModelKmsKeyIdT&& value) { SetModelKmsKeyId(std::forward<ModelKmsKeyIdT>(value)); return *this;}
57
59
62 inline const Aws::String& GetVolumeKmsKeyId() const { return m_volumeKmsKeyId; }
63 inline bool VolumeKmsKeyIdHasBeenSet() const { return m_volumeKmsKeyIdHasBeenSet; }
64 template<typename VolumeKmsKeyIdT = Aws::String>
65 void SetVolumeKmsKeyId(VolumeKmsKeyIdT&& value) { m_volumeKmsKeyIdHasBeenSet = true; m_volumeKmsKeyId = std::forward<VolumeKmsKeyIdT>(value); }
66 template<typename VolumeKmsKeyIdT = Aws::String>
67 UpdateDataSecurityConfig& WithVolumeKmsKeyId(VolumeKmsKeyIdT&& value) { SetVolumeKmsKeyId(std::forward<VolumeKmsKeyIdT>(value)); return *this;}
69
71
72 inline const VpcConfig& GetVpcConfig() const { return m_vpcConfig; }
73 inline bool VpcConfigHasBeenSet() const { return m_vpcConfigHasBeenSet; }
74 template<typename VpcConfigT = VpcConfig>
75 void SetVpcConfig(VpcConfigT&& value) { m_vpcConfigHasBeenSet = true; m_vpcConfig = std::forward<VpcConfigT>(value); }
76 template<typename VpcConfigT = VpcConfig>
77 UpdateDataSecurityConfig& WithVpcConfig(VpcConfigT&& value) { SetVpcConfig(std::forward<VpcConfigT>(value)); return *this;}
79 private:
80
81 Aws::String m_modelKmsKeyId;
82 bool m_modelKmsKeyIdHasBeenSet = false;
83
84 Aws::String m_volumeKmsKeyId;
85 bool m_volumeKmsKeyIdHasBeenSet = false;
86
87 VpcConfig m_vpcConfig;
88 bool m_vpcConfigHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace Comprehend
93} // namespace Aws
UpdateDataSecurityConfig & WithVolumeKmsKeyId(VolumeKmsKeyIdT &&value)
AWS_COMPREHEND_API UpdateDataSecurityConfig()=default
AWS_COMPREHEND_API UpdateDataSecurityConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
UpdateDataSecurityConfig & WithModelKmsKeyId(ModelKmsKeyIdT &&value)
UpdateDataSecurityConfig & WithVpcConfig(VpcConfigT &&value)
AWS_COMPREHEND_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_COMPREHEND_API UpdateDataSecurityConfig(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue