AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GeneratedManifestEncryption.h
1
6#pragma once
7#include <aws/s3control/S3Control_EXPORTS.h>
8#include <aws/s3control/model/SSES3Encryption.h>
9#include <aws/s3control/model/SSEKMSEncryption.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Xml
17{
18 class XmlNode;
19} // namespace Xml
20} // namespace Utils
21namespace S3Control
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_S3CONTROL_API GeneratedManifestEncryption();
36 AWS_S3CONTROL_API GeneratedManifestEncryption(const Aws::Utils::Xml::XmlNode& xmlNode);
38
39 AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
40
41
43
46 inline const SSES3Encryption& GetSSES3() const{ return m_sSES3; }
47 inline bool SSES3HasBeenSet() const { return m_sSES3HasBeenSet; }
48 inline void SetSSES3(const SSES3Encryption& value) { m_sSES3HasBeenSet = true; m_sSES3 = value; }
49 inline void SetSSES3(SSES3Encryption&& value) { m_sSES3HasBeenSet = true; m_sSES3 = std::move(value); }
50 inline GeneratedManifestEncryption& WithSSES3(const SSES3Encryption& value) { SetSSES3(value); return *this;}
51 inline GeneratedManifestEncryption& WithSSES3(SSES3Encryption&& value) { SetSSES3(std::move(value)); return *this;}
53
55
59 inline const SSEKMSEncryption& GetSSEKMS() const{ return m_sSEKMS; }
60 inline bool SSEKMSHasBeenSet() const { return m_sSEKMSHasBeenSet; }
61 inline void SetSSEKMS(const SSEKMSEncryption& value) { m_sSEKMSHasBeenSet = true; m_sSEKMS = value; }
62 inline void SetSSEKMS(SSEKMSEncryption&& value) { m_sSEKMSHasBeenSet = true; m_sSEKMS = std::move(value); }
63 inline GeneratedManifestEncryption& WithSSEKMS(const SSEKMSEncryption& value) { SetSSEKMS(value); return *this;}
64 inline GeneratedManifestEncryption& WithSSEKMS(SSEKMSEncryption&& value) { SetSSEKMS(std::move(value)); return *this;}
66 private:
67
68 SSES3Encryption m_sSES3;
69 bool m_sSES3HasBeenSet = false;
70
71 SSEKMSEncryption m_sSEKMS;
72 bool m_sSEKMSHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace S3Control
77} // 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(SSEKMSEncryption &&value)
AWS_S3CONTROL_API GeneratedManifestEncryption(const Aws::Utils::Xml::XmlNode &xmlNode)
GeneratedManifestEncryption & WithSSEKMS(const SSEKMSEncryption &value)
GeneratedManifestEncryption & WithSSES3(const SSES3Encryption &value)
GeneratedManifestEncryption & WithSSES3(SSES3Encryption &&value)