AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
S3ManifestOutputLocation.h
1
6#pragma once
7#include <aws/s3control/S3Control_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/s3control/model/GeneratedManifestEncryption.h>
10#include <aws/s3control/model/GeneratedManifestFormat.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Xml
18{
19 class XmlNode;
20} // namespace Xml
21} // namespace Utils
22namespace S3Control
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_S3CONTROL_API S3ManifestOutputLocation() = default;
37 AWS_S3CONTROL_API S3ManifestOutputLocation(const Aws::Utils::Xml::XmlNode& xmlNode);
39
40 AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
41
42
44
47 inline const Aws::String& GetExpectedManifestBucketOwner() const { return m_expectedManifestBucketOwner; }
48 inline bool ExpectedManifestBucketOwnerHasBeenSet() const { return m_expectedManifestBucketOwnerHasBeenSet; }
49 template<typename ExpectedManifestBucketOwnerT = Aws::String>
50 void SetExpectedManifestBucketOwner(ExpectedManifestBucketOwnerT&& value) { m_expectedManifestBucketOwnerHasBeenSet = true; m_expectedManifestBucketOwner = std::forward<ExpectedManifestBucketOwnerT>(value); }
51 template<typename ExpectedManifestBucketOwnerT = Aws::String>
52 S3ManifestOutputLocation& WithExpectedManifestBucketOwner(ExpectedManifestBucketOwnerT&& value) { SetExpectedManifestBucketOwner(std::forward<ExpectedManifestBucketOwnerT>(value)); return *this;}
54
56
61 inline const Aws::String& GetBucket() const { return m_bucket; }
62 inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; }
63 template<typename BucketT = Aws::String>
64 void SetBucket(BucketT&& value) { m_bucketHasBeenSet = true; m_bucket = std::forward<BucketT>(value); }
65 template<typename BucketT = Aws::String>
66 S3ManifestOutputLocation& WithBucket(BucketT&& value) { SetBucket(std::forward<BucketT>(value)); return *this;}
68
70
73 inline const Aws::String& GetManifestPrefix() const { return m_manifestPrefix; }
74 inline bool ManifestPrefixHasBeenSet() const { return m_manifestPrefixHasBeenSet; }
75 template<typename ManifestPrefixT = Aws::String>
76 void SetManifestPrefix(ManifestPrefixT&& value) { m_manifestPrefixHasBeenSet = true; m_manifestPrefix = std::forward<ManifestPrefixT>(value); }
77 template<typename ManifestPrefixT = Aws::String>
78 S3ManifestOutputLocation& WithManifestPrefix(ManifestPrefixT&& value) { SetManifestPrefix(std::forward<ManifestPrefixT>(value)); return *this;}
80
82
86 inline const GeneratedManifestEncryption& GetManifestEncryption() const { return m_manifestEncryption; }
87 inline bool ManifestEncryptionHasBeenSet() const { return m_manifestEncryptionHasBeenSet; }
88 template<typename ManifestEncryptionT = GeneratedManifestEncryption>
89 void SetManifestEncryption(ManifestEncryptionT&& value) { m_manifestEncryptionHasBeenSet = true; m_manifestEncryption = std::forward<ManifestEncryptionT>(value); }
90 template<typename ManifestEncryptionT = GeneratedManifestEncryption>
91 S3ManifestOutputLocation& WithManifestEncryption(ManifestEncryptionT&& value) { SetManifestEncryption(std::forward<ManifestEncryptionT>(value)); return *this;}
93
95
98 inline GeneratedManifestFormat GetManifestFormat() const { return m_manifestFormat; }
99 inline bool ManifestFormatHasBeenSet() const { return m_manifestFormatHasBeenSet; }
100 inline void SetManifestFormat(GeneratedManifestFormat value) { m_manifestFormatHasBeenSet = true; m_manifestFormat = value; }
103 private:
104
105 Aws::String m_expectedManifestBucketOwner;
106 bool m_expectedManifestBucketOwnerHasBeenSet = false;
107
108 Aws::String m_bucket;
109 bool m_bucketHasBeenSet = false;
110
111 Aws::String m_manifestPrefix;
112 bool m_manifestPrefixHasBeenSet = false;
113
114 GeneratedManifestEncryption m_manifestEncryption;
115 bool m_manifestEncryptionHasBeenSet = false;
116
118 bool m_manifestFormatHasBeenSet = false;
119 };
120
121} // namespace Model
122} // namespace S3Control
123} // namespace Aws
AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
const GeneratedManifestEncryption & GetManifestEncryption() const
S3ManifestOutputLocation & WithBucket(BucketT &&value)
S3ManifestOutputLocation & WithManifestEncryption(ManifestEncryptionT &&value)
AWS_S3CONTROL_API S3ManifestOutputLocation(const Aws::Utils::Xml::XmlNode &xmlNode)
S3ManifestOutputLocation & WithManifestFormat(GeneratedManifestFormat value)
AWS_S3CONTROL_API S3ManifestOutputLocation()=default
void SetManifestEncryption(ManifestEncryptionT &&value)
void SetExpectedManifestBucketOwner(ExpectedManifestBucketOwnerT &&value)
void SetManifestFormat(GeneratedManifestFormat value)
S3ManifestOutputLocation & WithExpectedManifestBucketOwner(ExpectedManifestBucketOwnerT &&value)
S3ManifestOutputLocation & WithManifestPrefix(ManifestPrefixT &&value)
AWS_S3CONTROL_API S3ManifestOutputLocation & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String