AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
S3Location.h
Go to the documentation of this file.
1
6#pragma once
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 Panorama
22{
23namespace Model
24{
25
32 {
33 public:
38
39
43 inline const Aws::String& GetBucketName() const{ return m_bucketName; }
44
48 inline bool BucketNameHasBeenSet() const { return m_bucketNameHasBeenSet; }
49
53 inline void SetBucketName(const Aws::String& value) { m_bucketNameHasBeenSet = true; m_bucketName = value; }
54
58 inline void SetBucketName(Aws::String&& value) { m_bucketNameHasBeenSet = true; m_bucketName = std::move(value); }
59
63 inline void SetBucketName(const char* value) { m_bucketNameHasBeenSet = true; m_bucketName.assign(value); }
64
68 inline S3Location& WithBucketName(const Aws::String& value) { SetBucketName(value); return *this;}
69
73 inline S3Location& WithBucketName(Aws::String&& value) { SetBucketName(std::move(value)); return *this;}
74
78 inline S3Location& WithBucketName(const char* value) { SetBucketName(value); return *this;}
79
80
84 inline const Aws::String& GetObjectKey() const{ return m_objectKey; }
85
89 inline bool ObjectKeyHasBeenSet() const { return m_objectKeyHasBeenSet; }
90
94 inline void SetObjectKey(const Aws::String& value) { m_objectKeyHasBeenSet = true; m_objectKey = value; }
95
99 inline void SetObjectKey(Aws::String&& value) { m_objectKeyHasBeenSet = true; m_objectKey = std::move(value); }
100
104 inline void SetObjectKey(const char* value) { m_objectKeyHasBeenSet = true; m_objectKey.assign(value); }
105
109 inline S3Location& WithObjectKey(const Aws::String& value) { SetObjectKey(value); return *this;}
110
114 inline S3Location& WithObjectKey(Aws::String&& value) { SetObjectKey(std::move(value)); return *this;}
115
119 inline S3Location& WithObjectKey(const char* value) { SetObjectKey(value); return *this;}
120
121
125 inline const Aws::String& GetRegion() const{ return m_region; }
126
130 inline bool RegionHasBeenSet() const { return m_regionHasBeenSet; }
131
135 inline void SetRegion(const Aws::String& value) { m_regionHasBeenSet = true; m_region = value; }
136
140 inline void SetRegion(Aws::String&& value) { m_regionHasBeenSet = true; m_region = std::move(value); }
141
145 inline void SetRegion(const char* value) { m_regionHasBeenSet = true; m_region.assign(value); }
146
150 inline S3Location& WithRegion(const Aws::String& value) { SetRegion(value); return *this;}
151
155 inline S3Location& WithRegion(Aws::String&& value) { SetRegion(std::move(value)); return *this;}
156
160 inline S3Location& WithRegion(const char* value) { SetRegion(value); return *this;}
161
162 private:
163
164 Aws::String m_bucketName;
165 bool m_bucketNameHasBeenSet = false;
166
167 Aws::String m_objectKey;
168 bool m_objectKeyHasBeenSet = false;
169
170 Aws::String m_region;
171 bool m_regionHasBeenSet = false;
172 };
173
174} // namespace Model
175} // namespace Panorama
176} // namespace Aws
#define AWS_PANORAMA_API
S3Location & WithRegion(const Aws::String &value)
Definition: S3Location.h:150
const Aws::String & GetRegion() const
Definition: S3Location.h:125
S3Location & WithRegion(const char *value)
Definition: S3Location.h:160
void SetObjectKey(Aws::String &&value)
Definition: S3Location.h:99
AWS_PANORAMA_API S3Location(Aws::Utils::Json::JsonView jsonValue)
void SetRegion(Aws::String &&value)
Definition: S3Location.h:140
void SetBucketName(const Aws::String &value)
Definition: S3Location.h:53
void SetObjectKey(const Aws::String &value)
Definition: S3Location.h:94
S3Location & WithObjectKey(Aws::String &&value)
Definition: S3Location.h:114
S3Location & WithObjectKey(const Aws::String &value)
Definition: S3Location.h:109
S3Location & WithBucketName(Aws::String &&value)
Definition: S3Location.h:73
S3Location & WithBucketName(const Aws::String &value)
Definition: S3Location.h:68
S3Location & WithBucketName(const char *value)
Definition: S3Location.h:78
S3Location & WithRegion(Aws::String &&value)
Definition: S3Location.h:155
AWS_PANORAMA_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::String & GetBucketName() const
Definition: S3Location.h:43
void SetBucketName(const char *value)
Definition: S3Location.h:63
void SetRegion(const Aws::String &value)
Definition: S3Location.h:135
void SetObjectKey(const char *value)
Definition: S3Location.h:104
const Aws::String & GetObjectKey() const
Definition: S3Location.h:84
AWS_PANORAMA_API S3Location & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetRegion(const char *value)
Definition: S3Location.h:145
S3Location & WithObjectKey(const char *value)
Definition: S3Location.h:119
void SetBucketName(Aws::String &&value)
Definition: S3Location.h:58
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String