AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
JobManifestLocation.h
1
6#pragma once
7#include <aws/s3control/S3Control_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Xml
16{
17 class XmlNode;
18} // namespace Xml
19} // namespace Utils
20namespace S3Control
21{
22namespace Model
23{
24
34 {
35 public:
36 AWS_S3CONTROL_API JobManifestLocation();
37 AWS_S3CONTROL_API JobManifestLocation(const Aws::Utils::Xml::XmlNode& xmlNode);
38 AWS_S3CONTROL_API JobManifestLocation& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
39
40 AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
41
42
44
53 inline const Aws::String& GetObjectArn() const{ return m_objectArn; }
54 inline bool ObjectArnHasBeenSet() const { return m_objectArnHasBeenSet; }
55 inline void SetObjectArn(const Aws::String& value) { m_objectArnHasBeenSet = true; m_objectArn = value; }
56 inline void SetObjectArn(Aws::String&& value) { m_objectArnHasBeenSet = true; m_objectArn = std::move(value); }
57 inline void SetObjectArn(const char* value) { m_objectArnHasBeenSet = true; m_objectArn.assign(value); }
58 inline JobManifestLocation& WithObjectArn(const Aws::String& value) { SetObjectArn(value); return *this;}
59 inline JobManifestLocation& WithObjectArn(Aws::String&& value) { SetObjectArn(std::move(value)); return *this;}
60 inline JobManifestLocation& WithObjectArn(const char* value) { SetObjectArn(value); return *this;}
62
64
68 inline const Aws::String& GetObjectVersionId() const{ return m_objectVersionId; }
69 inline bool ObjectVersionIdHasBeenSet() const { return m_objectVersionIdHasBeenSet; }
70 inline void SetObjectVersionId(const Aws::String& value) { m_objectVersionIdHasBeenSet = true; m_objectVersionId = value; }
71 inline void SetObjectVersionId(Aws::String&& value) { m_objectVersionIdHasBeenSet = true; m_objectVersionId = std::move(value); }
72 inline void SetObjectVersionId(const char* value) { m_objectVersionIdHasBeenSet = true; m_objectVersionId.assign(value); }
73 inline JobManifestLocation& WithObjectVersionId(const Aws::String& value) { SetObjectVersionId(value); return *this;}
74 inline JobManifestLocation& WithObjectVersionId(Aws::String&& value) { SetObjectVersionId(std::move(value)); return *this;}
75 inline JobManifestLocation& WithObjectVersionId(const char* value) { SetObjectVersionId(value); return *this;}
77
79
82 inline const Aws::String& GetETag() const{ return m_eTag; }
83 inline bool ETagHasBeenSet() const { return m_eTagHasBeenSet; }
84 inline void SetETag(const Aws::String& value) { m_eTagHasBeenSet = true; m_eTag = value; }
85 inline void SetETag(Aws::String&& value) { m_eTagHasBeenSet = true; m_eTag = std::move(value); }
86 inline void SetETag(const char* value) { m_eTagHasBeenSet = true; m_eTag.assign(value); }
87 inline JobManifestLocation& WithETag(const Aws::String& value) { SetETag(value); return *this;}
88 inline JobManifestLocation& WithETag(Aws::String&& value) { SetETag(std::move(value)); return *this;}
89 inline JobManifestLocation& WithETag(const char* value) { SetETag(value); return *this;}
91 private:
92
93 Aws::String m_objectArn;
94 bool m_objectArnHasBeenSet = false;
95
96 Aws::String m_objectVersionId;
97 bool m_objectVersionIdHasBeenSet = false;
98
99 Aws::String m_eTag;
100 bool m_eTagHasBeenSet = false;
101 };
102
103} // namespace Model
104} // namespace S3Control
105} // namespace Aws
AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
JobManifestLocation & WithObjectVersionId(const Aws::String &value)
JobManifestLocation & WithETag(const Aws::String &value)
JobManifestLocation & WithObjectArn(const char *value)
JobManifestLocation & WithObjectArn(Aws::String &&value)
AWS_S3CONTROL_API JobManifestLocation(const Aws::Utils::Xml::XmlNode &xmlNode)
JobManifestLocation & WithObjectVersionId(Aws::String &&value)
JobManifestLocation & WithETag(Aws::String &&value)
void SetObjectVersionId(const Aws::String &value)
JobManifestLocation & WithObjectArn(const Aws::String &value)
JobManifestLocation & WithObjectVersionId(const char *value)
JobManifestLocation & WithETag(const char *value)
AWS_S3CONTROL_API JobManifestLocation & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetObjectArn(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String