AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
PackageImportJobOutput.h
Go to the documentation of this file.
1
6#pragma once
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace Panorama
23{
24namespace Model
25{
26
33 {
34 public:
39
40
44 inline const OutPutS3Location& GetOutputS3Location() const{ return m_outputS3Location; }
45
49 inline bool OutputS3LocationHasBeenSet() const { return m_outputS3LocationHasBeenSet; }
50
54 inline void SetOutputS3Location(const OutPutS3Location& value) { m_outputS3LocationHasBeenSet = true; m_outputS3Location = value; }
55
59 inline void SetOutputS3Location(OutPutS3Location&& value) { m_outputS3LocationHasBeenSet = true; m_outputS3Location = std::move(value); }
60
65
69 inline PackageImportJobOutput& WithOutputS3Location(OutPutS3Location&& value) { SetOutputS3Location(std::move(value)); return *this;}
70
71
75 inline const Aws::String& GetPackageId() const{ return m_packageId; }
76
80 inline bool PackageIdHasBeenSet() const { return m_packageIdHasBeenSet; }
81
85 inline void SetPackageId(const Aws::String& value) { m_packageIdHasBeenSet = true; m_packageId = value; }
86
90 inline void SetPackageId(Aws::String&& value) { m_packageIdHasBeenSet = true; m_packageId = std::move(value); }
91
95 inline void SetPackageId(const char* value) { m_packageIdHasBeenSet = true; m_packageId.assign(value); }
96
100 inline PackageImportJobOutput& WithPackageId(const Aws::String& value) { SetPackageId(value); return *this;}
101
105 inline PackageImportJobOutput& WithPackageId(Aws::String&& value) { SetPackageId(std::move(value)); return *this;}
106
110 inline PackageImportJobOutput& WithPackageId(const char* value) { SetPackageId(value); return *this;}
111
112
116 inline const Aws::String& GetPackageVersion() const{ return m_packageVersion; }
117
121 inline bool PackageVersionHasBeenSet() const { return m_packageVersionHasBeenSet; }
122
126 inline void SetPackageVersion(const Aws::String& value) { m_packageVersionHasBeenSet = true; m_packageVersion = value; }
127
131 inline void SetPackageVersion(Aws::String&& value) { m_packageVersionHasBeenSet = true; m_packageVersion = std::move(value); }
132
136 inline void SetPackageVersion(const char* value) { m_packageVersionHasBeenSet = true; m_packageVersion.assign(value); }
137
141 inline PackageImportJobOutput& WithPackageVersion(const Aws::String& value) { SetPackageVersion(value); return *this;}
142
146 inline PackageImportJobOutput& WithPackageVersion(Aws::String&& value) { SetPackageVersion(std::move(value)); return *this;}
147
151 inline PackageImportJobOutput& WithPackageVersion(const char* value) { SetPackageVersion(value); return *this;}
152
153
157 inline const Aws::String& GetPatchVersion() const{ return m_patchVersion; }
158
162 inline bool PatchVersionHasBeenSet() const { return m_patchVersionHasBeenSet; }
163
167 inline void SetPatchVersion(const Aws::String& value) { m_patchVersionHasBeenSet = true; m_patchVersion = value; }
168
172 inline void SetPatchVersion(Aws::String&& value) { m_patchVersionHasBeenSet = true; m_patchVersion = std::move(value); }
173
177 inline void SetPatchVersion(const char* value) { m_patchVersionHasBeenSet = true; m_patchVersion.assign(value); }
178
182 inline PackageImportJobOutput& WithPatchVersion(const Aws::String& value) { SetPatchVersion(value); return *this;}
183
187 inline PackageImportJobOutput& WithPatchVersion(Aws::String&& value) { SetPatchVersion(std::move(value)); return *this;}
188
192 inline PackageImportJobOutput& WithPatchVersion(const char* value) { SetPatchVersion(value); return *this;}
193
194 private:
195
196 OutPutS3Location m_outputS3Location;
197 bool m_outputS3LocationHasBeenSet = false;
198
199 Aws::String m_packageId;
200 bool m_packageIdHasBeenSet = false;
201
202 Aws::String m_packageVersion;
203 bool m_packageVersionHasBeenSet = false;
204
205 Aws::String m_patchVersion;
206 bool m_patchVersionHasBeenSet = false;
207 };
208
209} // namespace Model
210} // namespace Panorama
211} // namespace Aws
#define AWS_PANORAMA_API
PackageImportJobOutput & WithPackageId(const Aws::String &value)
AWS_PANORAMA_API PackageImportJobOutput(Aws::Utils::Json::JsonView jsonValue)
AWS_PANORAMA_API Aws::Utils::Json::JsonValue Jsonize() const
PackageImportJobOutput & WithOutputS3Location(const OutPutS3Location &value)
PackageImportJobOutput & WithPatchVersion(const Aws::String &value)
PackageImportJobOutput & WithPatchVersion(Aws::String &&value)
void SetOutputS3Location(OutPutS3Location &&value)
PackageImportJobOutput & WithPackageId(const char *value)
PackageImportJobOutput & WithPackageVersion(const char *value)
PackageImportJobOutput & WithPackageId(Aws::String &&value)
PackageImportJobOutput & WithPackageVersion(const Aws::String &value)
PackageImportJobOutput & WithOutputS3Location(OutPutS3Location &&value)
PackageImportJobOutput & WithPatchVersion(const char *value)
void SetOutputS3Location(const OutPutS3Location &value)
PackageImportJobOutput & WithPackageVersion(Aws::String &&value)
AWS_PANORAMA_API PackageImportJobOutput & operator=(Aws::Utils::Json::JsonView jsonValue)
const OutPutS3Location & GetOutputS3Location() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String