AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
39
40 AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
41
42
44
47 inline const GeneratedManifestFormat& GetFormat() const{ return m_format; }
48 inline bool FormatHasBeenSet() const { return m_formatHasBeenSet; }
49 inline void SetFormat(const GeneratedManifestFormat& value) { m_formatHasBeenSet = true; m_format = value; }
50 inline void SetFormat(GeneratedManifestFormat&& value) { m_formatHasBeenSet = true; m_format = std::move(value); }
51 inline S3GeneratedManifestDescriptor& WithFormat(const GeneratedManifestFormat& value) { SetFormat(value); return *this;}
52 inline S3GeneratedManifestDescriptor& WithFormat(GeneratedManifestFormat&& value) { SetFormat(std::move(value)); return *this;}
54
56
57 inline const JobManifestLocation& GetLocation() const{ return m_location; }
58 inline bool LocationHasBeenSet() const { return m_locationHasBeenSet; }
59 inline void SetLocation(const JobManifestLocation& value) { m_locationHasBeenSet = true; m_location = value; }
60 inline void SetLocation(JobManifestLocation&& value) { m_locationHasBeenSet = true; m_location = std::move(value); }
61 inline S3GeneratedManifestDescriptor& WithLocation(const JobManifestLocation& value) { SetLocation(value); return *this;}
62 inline S3GeneratedManifestDescriptor& WithLocation(JobManifestLocation&& value) { SetLocation(std::move(value)); return *this;}
64 private:
65
67 bool m_formatHasBeenSet = false;
68
69 JobManifestLocation m_location;
70 bool m_locationHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace S3Control
75} // namespace Aws
AWS_S3CONTROL_API S3GeneratedManifestDescriptor & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
S3GeneratedManifestDescriptor & WithFormat(const GeneratedManifestFormat &value)
S3GeneratedManifestDescriptor & WithLocation(const JobManifestLocation &value)
AWS_S3CONTROL_API S3GeneratedManifestDescriptor(const Aws::Utils::Xml::XmlNode &xmlNode)
S3GeneratedManifestDescriptor & WithFormat(GeneratedManifestFormat &&value)
S3GeneratedManifestDescriptor & WithLocation(JobManifestLocation &&value)