AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AssetBundleExportJobSummary.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/quicksight/model/AssetBundleExportJobStatus.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/DateTime.h>
11#include <aws/quicksight/model/AssetBundleExportFormat.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Utils
17{
18namespace Json
19{
20 class JsonValue;
21 class JsonView;
22} // namespace Json
23} // namespace Utils
24namespace QuickSight
25{
26namespace Model
27{
28
36 {
37 public:
38 AWS_QUICKSIGHT_API AssetBundleExportJobSummary();
41 AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
48 inline const AssetBundleExportJobStatus& GetJobStatus() const{ return m_jobStatus; }
49 inline bool JobStatusHasBeenSet() const { return m_jobStatusHasBeenSet; }
50 inline void SetJobStatus(const AssetBundleExportJobStatus& value) { m_jobStatusHasBeenSet = true; m_jobStatus = value; }
51 inline void SetJobStatus(AssetBundleExportJobStatus&& value) { m_jobStatusHasBeenSet = true; m_jobStatus = std::move(value); }
53 inline AssetBundleExportJobSummary& WithJobStatus(AssetBundleExportJobStatus&& value) { SetJobStatus(std::move(value)); return *this;}
55
57
60 inline const Aws::String& GetArn() const{ return m_arn; }
61 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
62 inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
63 inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
64 inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
65 inline AssetBundleExportJobSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;}
66 inline AssetBundleExportJobSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
67 inline AssetBundleExportJobSummary& WithArn(const char* value) { SetArn(value); return *this;}
69
71
74 inline const Aws::Utils::DateTime& GetCreatedTime() const{ return m_createdTime; }
75 inline bool CreatedTimeHasBeenSet() const { return m_createdTimeHasBeenSet; }
76 inline void SetCreatedTime(const Aws::Utils::DateTime& value) { m_createdTimeHasBeenSet = true; m_createdTime = value; }
77 inline void SetCreatedTime(Aws::Utils::DateTime&& value) { m_createdTimeHasBeenSet = true; m_createdTime = std::move(value); }
79 inline AssetBundleExportJobSummary& WithCreatedTime(Aws::Utils::DateTime&& value) { SetCreatedTime(std::move(value)); return *this;}
81
83
86 inline const Aws::String& GetAssetBundleExportJobId() const{ return m_assetBundleExportJobId; }
87 inline bool AssetBundleExportJobIdHasBeenSet() const { return m_assetBundleExportJobIdHasBeenSet; }
88 inline void SetAssetBundleExportJobId(const Aws::String& value) { m_assetBundleExportJobIdHasBeenSet = true; m_assetBundleExportJobId = value; }
89 inline void SetAssetBundleExportJobId(Aws::String&& value) { m_assetBundleExportJobIdHasBeenSet = true; m_assetBundleExportJobId = std::move(value); }
90 inline void SetAssetBundleExportJobId(const char* value) { m_assetBundleExportJobIdHasBeenSet = true; m_assetBundleExportJobId.assign(value); }
93 inline AssetBundleExportJobSummary& WithAssetBundleExportJobId(const char* value) { SetAssetBundleExportJobId(value); return *this;}
95
97
101 inline bool GetIncludeAllDependencies() const{ return m_includeAllDependencies; }
102 inline bool IncludeAllDependenciesHasBeenSet() const { return m_includeAllDependenciesHasBeenSet; }
103 inline void SetIncludeAllDependencies(bool value) { m_includeAllDependenciesHasBeenSet = true; m_includeAllDependencies = value; }
106
108
111 inline const AssetBundleExportFormat& GetExportFormat() const{ return m_exportFormat; }
112 inline bool ExportFormatHasBeenSet() const { return m_exportFormatHasBeenSet; }
113 inline void SetExportFormat(const AssetBundleExportFormat& value) { m_exportFormatHasBeenSet = true; m_exportFormat = value; }
114 inline void SetExportFormat(AssetBundleExportFormat&& value) { m_exportFormatHasBeenSet = true; m_exportFormat = std::move(value); }
116 inline AssetBundleExportJobSummary& WithExportFormat(AssetBundleExportFormat&& value) { SetExportFormat(std::move(value)); return *this;}
118
120
124 inline bool GetIncludePermissions() const{ return m_includePermissions; }
125 inline bool IncludePermissionsHasBeenSet() const { return m_includePermissionsHasBeenSet; }
126 inline void SetIncludePermissions(bool value) { m_includePermissionsHasBeenSet = true; m_includePermissions = value; }
129
131
135 inline bool GetIncludeTags() const{ return m_includeTags; }
136 inline bool IncludeTagsHasBeenSet() const { return m_includeTagsHasBeenSet; }
137 inline void SetIncludeTags(bool value) { m_includeTagsHasBeenSet = true; m_includeTags = value; }
138 inline AssetBundleExportJobSummary& WithIncludeTags(bool value) { SetIncludeTags(value); return *this;}
140 private:
141
142 AssetBundleExportJobStatus m_jobStatus;
143 bool m_jobStatusHasBeenSet = false;
144
145 Aws::String m_arn;
146 bool m_arnHasBeenSet = false;
147
148 Aws::Utils::DateTime m_createdTime;
149 bool m_createdTimeHasBeenSet = false;
150
151 Aws::String m_assetBundleExportJobId;
152 bool m_assetBundleExportJobIdHasBeenSet = false;
153
154 bool m_includeAllDependencies;
155 bool m_includeAllDependenciesHasBeenSet = false;
156
157 AssetBundleExportFormat m_exportFormat;
158 bool m_exportFormatHasBeenSet = false;
159
160 bool m_includePermissions;
161 bool m_includePermissionsHasBeenSet = false;
162
163 bool m_includeTags;
164 bool m_includeTagsHasBeenSet = false;
165 };
166
167} // namespace Model
168} // namespace QuickSight
169} // namespace Aws
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_QUICKSIGHT_API AssetBundleExportJobSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
AssetBundleExportJobSummary & WithCreatedTime(Aws::Utils::DateTime &&value)
AssetBundleExportJobSummary & WithJobStatus(const AssetBundleExportJobStatus &value)
AssetBundleExportJobSummary & WithExportFormat(const AssetBundleExportFormat &value)
AssetBundleExportJobSummary & WithIncludeAllDependencies(bool value)
void SetExportFormat(const AssetBundleExportFormat &value)
const AssetBundleExportJobStatus & GetJobStatus() const
AssetBundleExportJobSummary & WithArn(const Aws::String &value)
AWS_QUICKSIGHT_API AssetBundleExportJobSummary(Aws::Utils::Json::JsonView jsonValue)
AssetBundleExportJobSummary & WithArn(const char *value)
AssetBundleExportJobSummary & WithIncludeTags(bool value)
AssetBundleExportJobSummary & WithAssetBundleExportJobId(const Aws::String &value)
AssetBundleExportJobSummary & WithArn(Aws::String &&value)
AssetBundleExportJobSummary & WithCreatedTime(const Aws::Utils::DateTime &value)
AssetBundleExportJobSummary & WithAssetBundleExportJobId(const char *value)
AssetBundleExportJobSummary & WithExportFormat(AssetBundleExportFormat &&value)
AssetBundleExportJobSummary & WithJobStatus(AssetBundleExportJobStatus &&value)
AssetBundleExportJobSummary & WithAssetBundleExportJobId(Aws::String &&value)
void SetJobStatus(const AssetBundleExportJobStatus &value)
AssetBundleExportJobSummary & WithIncludePermissions(bool value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue