AWS SDK for C++

AWS SDK for C++ Version 1.11.718

Loading...
Searching...
No Matches
GeneratedManifestEncryption.h
1
6#pragma once
7#include <aws/s3control/S3Control_EXPORTS.h>
8#include <aws/s3control/model/SSEKMSEncryption.h>
9#include <aws/s3control/model/SSES3Encryption.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Xml {
16class XmlNode;
17} // namespace Xml
18} // namespace Utils
19namespace S3Control {
20namespace Model {
21
29 public:
30 AWS_S3CONTROL_API GeneratedManifestEncryption() = default;
31 AWS_S3CONTROL_API GeneratedManifestEncryption(const Aws::Utils::Xml::XmlNode& xmlNode);
33
34 AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
35
37
40 inline const SSES3Encryption& GetSSES3() const { return m_sSES3; }
41 inline bool SSES3HasBeenSet() const { return m_sSES3HasBeenSet; }
42 template <typename SSES3T = SSES3Encryption>
43 void SetSSES3(SSES3T&& value) {
44 m_sSES3HasBeenSet = true;
45 m_sSES3 = std::forward<SSES3T>(value);
46 }
47 template <typename SSES3T = SSES3Encryption>
49 SetSSES3(std::forward<SSES3T>(value));
50 return *this;
51 }
53
55
59 inline const SSEKMSEncryption& GetSSEKMS() const { return m_sSEKMS; }
60 inline bool SSEKMSHasBeenSet() const { return m_sSEKMSHasBeenSet; }
61 template <typename SSEKMST = SSEKMSEncryption>
62 void SetSSEKMS(SSEKMST&& value) {
63 m_sSEKMSHasBeenSet = true;
64 m_sSEKMS = std::forward<SSEKMST>(value);
65 }
66 template <typename SSEKMST = SSEKMSEncryption>
68 SetSSEKMS(std::forward<SSEKMST>(value));
69 return *this;
70 }
72 private:
73 SSES3Encryption m_sSES3;
74
75 SSEKMSEncryption m_sSEKMS;
76 bool m_sSES3HasBeenSet = false;
77 bool m_sSEKMSHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace S3Control
82} // namespace Aws
AWS_S3CONTROL_API GeneratedManifestEncryption & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
GeneratedManifestEncryption & WithSSEKMS(SSEKMST &&value)
AWS_S3CONTROL_API GeneratedManifestEncryption(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_S3CONTROL_API GeneratedManifestEncryption()=default
GeneratedManifestEncryption & WithSSES3(SSES3T &&value)