AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
S3GeneratedManifestDescriptor.h
1
6#pragma once
7#include <aws/s3control/S3Control_EXPORTS.h>
8#include <aws/s3control/model/GeneratedManifestFormat.h>
9#include <aws/s3control/model/JobManifestLocation.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
34 {
35 public:
36 AWS_S3CONTROL_API S3GeneratedManifestDescriptor() = default;
39
40 AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
41
42
44
47 inline GeneratedManifestFormat GetFormat() const { return m_format; }
48 inline bool FormatHasBeenSet() const { return m_formatHasBeenSet; }
49 inline void SetFormat(GeneratedManifestFormat value) { m_formatHasBeenSet = true; m_format = value; }
52
54
55 inline const JobManifestLocation& GetLocation() const { return m_location; }
56 inline bool LocationHasBeenSet() const { return m_locationHasBeenSet; }
57 template<typename LocationT = JobManifestLocation>
58 void SetLocation(LocationT&& value) { m_locationHasBeenSet = true; m_location = std::forward<LocationT>(value); }
59 template<typename LocationT = JobManifestLocation>
60 S3GeneratedManifestDescriptor& WithLocation(LocationT&& value) { SetLocation(std::forward<LocationT>(value)); return *this;}
62 private:
63
65 bool m_formatHasBeenSet = false;
66
67 JobManifestLocation m_location;
68 bool m_locationHasBeenSet = false;
69 };
70
71} // namespace Model
72} // namespace S3Control
73} // namespace Aws
AWS_S3CONTROL_API S3GeneratedManifestDescriptor & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_S3CONTROL_API S3GeneratedManifestDescriptor()=default
AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
S3GeneratedManifestDescriptor & WithLocation(LocationT &&value)
S3GeneratedManifestDescriptor & WithFormat(GeneratedManifestFormat value)
AWS_S3CONTROL_API S3GeneratedManifestDescriptor(const Aws::Utils::Xml::XmlNode &xmlNode)