AWS SDK for C++

AWS SDK for C++ Version 1.11.867

Loading...
Searching...
No Matches
ExportEncryptionConfiguration.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/glue/Glue_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace Glue {
20namespace Model {
21
29 public:
30 AWS_GLUE_API ExportEncryptionConfiguration() = default;
34
36
40 inline const Aws::String& GetSseAlgorithm() const { return m_sseAlgorithm; }
41 inline bool SseAlgorithmHasBeenSet() const { return m_sseAlgorithmHasBeenSet; }
42 template <typename SseAlgorithmT = Aws::String>
43 void SetSseAlgorithm(SseAlgorithmT&& value) {
44 m_sseAlgorithmHasBeenSet = true;
45 m_sseAlgorithm = std::forward<SseAlgorithmT>(value);
46 }
47 template <typename SseAlgorithmT = Aws::String>
49 SetSseAlgorithm(std::forward<SseAlgorithmT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetKmsKeyArn() const { return m_kmsKeyArn; }
59 inline bool KmsKeyArnHasBeenSet() const { return m_kmsKeyArnHasBeenSet; }
60 template <typename KmsKeyArnT = Aws::String>
61 void SetKmsKeyArn(KmsKeyArnT&& value) {
62 m_kmsKeyArnHasBeenSet = true;
63 m_kmsKeyArn = std::forward<KmsKeyArnT>(value);
64 }
65 template <typename KmsKeyArnT = Aws::String>
67 SetKmsKeyArn(std::forward<KmsKeyArnT>(value));
68 return *this;
69 }
71 private:
72 Aws::String m_sseAlgorithm;
73
74 Aws::String m_kmsKeyArn;
75 bool m_sseAlgorithmHasBeenSet = false;
76 bool m_kmsKeyArnHasBeenSet = false;
77};
78
79} // namespace Model
80} // namespace Glue
81} // namespace Aws
ExportEncryptionConfiguration & WithKmsKeyArn(KmsKeyArnT &&value)
AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_GLUE_API ExportEncryptionConfiguration(Aws::Utils::Json::JsonView jsonValue)
AWS_GLUE_API ExportEncryptionConfiguration()=default
ExportEncryptionConfiguration & WithSseAlgorithm(SseAlgorithmT &&value)
AWS_GLUE_API ExportEncryptionConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue