AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
S3Object.h
1
6#pragma once
7#include <aws/groundstation/GroundStation_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace GroundStation
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_GROUNDSTATION_API S3Object();
35 AWS_GROUNDSTATION_API S3Object(Aws::Utils::Json::JsonView jsonValue);
36 AWS_GROUNDSTATION_API S3Object& operator=(Aws::Utils::Json::JsonView jsonValue);
37 AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline const Aws::String& GetBucket() const{ return m_bucket; }
45 inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; }
46 inline void SetBucket(const Aws::String& value) { m_bucketHasBeenSet = true; m_bucket = value; }
47 inline void SetBucket(Aws::String&& value) { m_bucketHasBeenSet = true; m_bucket = std::move(value); }
48 inline void SetBucket(const char* value) { m_bucketHasBeenSet = true; m_bucket.assign(value); }
49 inline S3Object& WithBucket(const Aws::String& value) { SetBucket(value); return *this;}
50 inline S3Object& WithBucket(Aws::String&& value) { SetBucket(std::move(value)); return *this;}
51 inline S3Object& WithBucket(const char* value) { SetBucket(value); return *this;}
53
55
58 inline const Aws::String& GetKey() const{ return m_key; }
59 inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }
60 inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; }
61 inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); }
62 inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); }
63 inline S3Object& WithKey(const Aws::String& value) { SetKey(value); return *this;}
64 inline S3Object& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;}
65 inline S3Object& WithKey(const char* value) { SetKey(value); return *this;}
67
69
72 inline const Aws::String& GetVersion() const{ return m_version; }
73 inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; }
74 inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; }
75 inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); }
76 inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); }
77 inline S3Object& WithVersion(const Aws::String& value) { SetVersion(value); return *this;}
78 inline S3Object& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;}
79 inline S3Object& WithVersion(const char* value) { SetVersion(value); return *this;}
81 private:
82
83 Aws::String m_bucket;
84 bool m_bucketHasBeenSet = false;
85
86 Aws::String m_key;
87 bool m_keyHasBeenSet = false;
88
89 Aws::String m_version;
90 bool m_versionHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace GroundStation
95} // namespace Aws
AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const
void SetVersion(const char *value)
Definition S3Object.h:76
AWS_GROUNDSTATION_API S3Object & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetVersion(const Aws::String &value)
Definition S3Object.h:74
S3Object & WithKey(const char *value)
Definition S3Object.h:65
void SetKey(Aws::String &&value)
Definition S3Object.h:61
const Aws::String & GetVersion() const
Definition S3Object.h:72
S3Object & WithBucket(const char *value)
Definition S3Object.h:51
void SetBucket(const char *value)
Definition S3Object.h:48
S3Object & WithVersion(const Aws::String &value)
Definition S3Object.h:77
void SetKey(const Aws::String &value)
Definition S3Object.h:60
S3Object & WithKey(const Aws::String &value)
Definition S3Object.h:63
S3Object & WithBucket(const Aws::String &value)
Definition S3Object.h:49
S3Object & WithVersion(const char *value)
Definition S3Object.h:79
void SetBucket(Aws::String &&value)
Definition S3Object.h:47
S3Object & WithVersion(Aws::String &&value)
Definition S3Object.h:78
const Aws::String & GetBucket() const
Definition S3Object.h:44
S3Object & WithBucket(Aws::String &&value)
Definition S3Object.h:50
AWS_GROUNDSTATION_API S3Object()
void SetKey(const char *value)
Definition S3Object.h:62
S3Object & WithKey(Aws::String &&value)
Definition S3Object.h:64
void SetVersion(Aws::String &&value)
Definition S3Object.h:75
const Aws::String & GetKey() const
Definition S3Object.h:58
AWS_GROUNDSTATION_API S3Object(Aws::Utils::Json::JsonView jsonValue)
void SetBucket(const Aws::String &value)
Definition S3Object.h:46
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue