AWS SDK for C++

AWS SDK for C++ Version 1.11.744

Loading...
Searching...
No Matches
GetRunResult.h
1
6#pragma once
7#include <aws/core/utils/DateTime.h>
8#include <aws/core/utils/Document.h>
9#include <aws/core/utils/memory/stl/AWSMap.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/omics/Omics_EXPORTS.h>
12#include <aws/omics/model/Accelerators.h>
13#include <aws/omics/model/CacheBehavior.h>
14#include <aws/omics/model/RunLogLevel.h>
15#include <aws/omics/model/RunLogLocation.h>
16#include <aws/omics/model/RunRetentionMode.h>
17#include <aws/omics/model/RunStatus.h>
18#include <aws/omics/model/StorageType.h>
19#include <aws/omics/model/WorkflowType.h>
20
21#include <utility>
22
23namespace Aws {
24template <typename RESULT_TYPE>
25class AmazonWebServiceResult;
26
27namespace Utils {
28namespace Json {
29class JsonValue;
30} // namespace Json
31} // namespace Utils
32namespace Omics {
33namespace Model {
35 public:
36 AWS_OMICS_API GetRunResult() = default;
39
41
44 inline const Aws::String& GetArn() const { return m_arn; }
45 template <typename ArnT = Aws::String>
46 void SetArn(ArnT&& value) {
47 m_arnHasBeenSet = true;
48 m_arn = std::forward<ArnT>(value);
49 }
50 template <typename ArnT = Aws::String>
51 GetRunResult& WithArn(ArnT&& value) {
52 SetArn(std::forward<ArnT>(value));
53 return *this;
54 }
56
58
61 inline const Aws::String& GetId() const { return m_id; }
62 template <typename IdT = Aws::String>
63 void SetId(IdT&& value) {
64 m_idHasBeenSet = true;
65 m_id = std::forward<IdT>(value);
66 }
67 template <typename IdT = Aws::String>
68 GetRunResult& WithId(IdT&& value) {
69 SetId(std::forward<IdT>(value));
70 return *this;
71 }
73
75
78 inline const Aws::String& GetCacheId() const { return m_cacheId; }
79 template <typename CacheIdT = Aws::String>
80 void SetCacheId(CacheIdT&& value) {
81 m_cacheIdHasBeenSet = true;
82 m_cacheId = std::forward<CacheIdT>(value);
83 }
84 template <typename CacheIdT = Aws::String>
85 GetRunResult& WithCacheId(CacheIdT&& value) {
86 SetCacheId(std::forward<CacheIdT>(value));
87 return *this;
88 }
90
92
95 inline CacheBehavior GetCacheBehavior() const { return m_cacheBehavior; }
96 inline void SetCacheBehavior(CacheBehavior value) {
97 m_cacheBehaviorHasBeenSet = true;
98 m_cacheBehavior = value;
99 }
101 SetCacheBehavior(value);
102 return *this;
103 }
105
107
112 inline const Aws::String& GetEngineVersion() const { return m_engineVersion; }
113 template <typename EngineVersionT = Aws::String>
114 void SetEngineVersion(EngineVersionT&& value) {
115 m_engineVersionHasBeenSet = true;
116 m_engineVersion = std::forward<EngineVersionT>(value);
117 }
118 template <typename EngineVersionT = Aws::String>
119 GetRunResult& WithEngineVersion(EngineVersionT&& value) {
120 SetEngineVersion(std::forward<EngineVersionT>(value));
121 return *this;
122 }
124
126
129 inline RunStatus GetStatus() const { return m_status; }
130 inline void SetStatus(RunStatus value) {
131 m_statusHasBeenSet = true;
132 m_status = value;
133 }
135 SetStatus(value);
136 return *this;
137 }
139
141
144 inline const Aws::String& GetWorkflowId() const { return m_workflowId; }
145 template <typename WorkflowIdT = Aws::String>
146 void SetWorkflowId(WorkflowIdT&& value) {
147 m_workflowIdHasBeenSet = true;
148 m_workflowId = std::forward<WorkflowIdT>(value);
149 }
150 template <typename WorkflowIdT = Aws::String>
151 GetRunResult& WithWorkflowId(WorkflowIdT&& value) {
152 SetWorkflowId(std::forward<WorkflowIdT>(value));
153 return *this;
154 }
156
158
161 inline WorkflowType GetWorkflowType() const { return m_workflowType; }
162 inline void SetWorkflowType(WorkflowType value) {
163 m_workflowTypeHasBeenSet = true;
164 m_workflowType = value;
165 }
167 SetWorkflowType(value);
168 return *this;
169 }
171
173
176 inline const Aws::String& GetRunId() const { return m_runId; }
177 template <typename RunIdT = Aws::String>
178 void SetRunId(RunIdT&& value) {
179 m_runIdHasBeenSet = true;
180 m_runId = std::forward<RunIdT>(value);
181 }
182 template <typename RunIdT = Aws::String>
183 GetRunResult& WithRunId(RunIdT&& value) {
184 SetRunId(std::forward<RunIdT>(value));
185 return *this;
186 }
188
190
193 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
194 template <typename RoleArnT = Aws::String>
195 void SetRoleArn(RoleArnT&& value) {
196 m_roleArnHasBeenSet = true;
197 m_roleArn = std::forward<RoleArnT>(value);
198 }
199 template <typename RoleArnT = Aws::String>
200 GetRunResult& WithRoleArn(RoleArnT&& value) {
201 SetRoleArn(std::forward<RoleArnT>(value));
202 return *this;
203 }
205
207
210 inline const Aws::String& GetName() const { return m_name; }
211 template <typename NameT = Aws::String>
212 void SetName(NameT&& value) {
213 m_nameHasBeenSet = true;
214 m_name = std::forward<NameT>(value);
215 }
216 template <typename NameT = Aws::String>
217 GetRunResult& WithName(NameT&& value) {
218 SetName(std::forward<NameT>(value));
219 return *this;
220 }
222
224
227 inline const Aws::String& GetRunGroupId() const { return m_runGroupId; }
228 template <typename RunGroupIdT = Aws::String>
229 void SetRunGroupId(RunGroupIdT&& value) {
230 m_runGroupIdHasBeenSet = true;
231 m_runGroupId = std::forward<RunGroupIdT>(value);
232 }
233 template <typename RunGroupIdT = Aws::String>
234 GetRunResult& WithRunGroupId(RunGroupIdT&& value) {
235 SetRunGroupId(std::forward<RunGroupIdT>(value));
236 return *this;
237 }
239
241
244 inline int GetPriority() const { return m_priority; }
245 inline void SetPriority(int value) {
246 m_priorityHasBeenSet = true;
247 m_priority = value;
248 }
249 inline GetRunResult& WithPriority(int value) {
250 SetPriority(value);
251 return *this;
252 }
254
256
259 inline const Aws::String& GetDefinition() const { return m_definition; }
260 template <typename DefinitionT = Aws::String>
261 void SetDefinition(DefinitionT&& value) {
262 m_definitionHasBeenSet = true;
263 m_definition = std::forward<DefinitionT>(value);
264 }
265 template <typename DefinitionT = Aws::String>
266 GetRunResult& WithDefinition(DefinitionT&& value) {
267 SetDefinition(std::forward<DefinitionT>(value));
268 return *this;
269 }
271
273
276 inline const Aws::String& GetDigest() const { return m_digest; }
277 template <typename DigestT = Aws::String>
278 void SetDigest(DigestT&& value) {
279 m_digestHasBeenSet = true;
280 m_digest = std::forward<DigestT>(value);
281 }
282 template <typename DigestT = Aws::String>
283 GetRunResult& WithDigest(DigestT&& value) {
284 SetDigest(std::forward<DigestT>(value));
285 return *this;
286 }
288
290
293 inline Aws::Utils::DocumentView GetParameters() const { return m_parameters; }
294 template <typename ParametersT = Aws::Utils::Document>
295 void SetParameters(ParametersT&& value) {
296 m_parametersHasBeenSet = true;
297 m_parameters = std::forward<ParametersT>(value);
298 }
299 template <typename ParametersT = Aws::Utils::Document>
300 GetRunResult& WithParameters(ParametersT&& value) {
301 SetParameters(std::forward<ParametersT>(value));
302 return *this;
303 }
305
307
312 inline int GetStorageCapacity() const { return m_storageCapacity; }
313 inline void SetStorageCapacity(int value) {
314 m_storageCapacityHasBeenSet = true;
315 m_storageCapacity = value;
316 }
318 SetStorageCapacity(value);
319 return *this;
320 }
322
324
327 inline const Aws::String& GetOutputUri() const { return m_outputUri; }
328 template <typename OutputUriT = Aws::String>
329 void SetOutputUri(OutputUriT&& value) {
330 m_outputUriHasBeenSet = true;
331 m_outputUri = std::forward<OutputUriT>(value);
332 }
333 template <typename OutputUriT = Aws::String>
334 GetRunResult& WithOutputUri(OutputUriT&& value) {
335 SetOutputUri(std::forward<OutputUriT>(value));
336 return *this;
337 }
339
341
344 inline RunLogLevel GetLogLevel() const { return m_logLevel; }
345 inline void SetLogLevel(RunLogLevel value) {
346 m_logLevelHasBeenSet = true;
347 m_logLevel = value;
348 }
350 SetLogLevel(value);
351 return *this;
352 }
354
356
359 inline const Aws::Map<Aws::String, Aws::String>& GetResourceDigests() const { return m_resourceDigests; }
360 template <typename ResourceDigestsT = Aws::Map<Aws::String, Aws::String>>
361 void SetResourceDigests(ResourceDigestsT&& value) {
362 m_resourceDigestsHasBeenSet = true;
363 m_resourceDigests = std::forward<ResourceDigestsT>(value);
364 }
365 template <typename ResourceDigestsT = Aws::Map<Aws::String, Aws::String>>
366 GetRunResult& WithResourceDigests(ResourceDigestsT&& value) {
367 SetResourceDigests(std::forward<ResourceDigestsT>(value));
368 return *this;
369 }
370 template <typename ResourceDigestsKeyT = Aws::String, typename ResourceDigestsValueT = Aws::String>
371 GetRunResult& AddResourceDigests(ResourceDigestsKeyT&& key, ResourceDigestsValueT&& value) {
372 m_resourceDigestsHasBeenSet = true;
373 m_resourceDigests.emplace(std::forward<ResourceDigestsKeyT>(key), std::forward<ResourceDigestsValueT>(value));
374 return *this;
375 }
377
379
382 inline const Aws::String& GetStartedBy() const { return m_startedBy; }
383 template <typename StartedByT = Aws::String>
384 void SetStartedBy(StartedByT&& value) {
385 m_startedByHasBeenSet = true;
386 m_startedBy = std::forward<StartedByT>(value);
387 }
388 template <typename StartedByT = Aws::String>
389 GetRunResult& WithStartedBy(StartedByT&& value) {
390 SetStartedBy(std::forward<StartedByT>(value));
391 return *this;
392 }
394
396
399 inline const Aws::Utils::DateTime& GetCreationTime() const { return m_creationTime; }
400 template <typename CreationTimeT = Aws::Utils::DateTime>
401 void SetCreationTime(CreationTimeT&& value) {
402 m_creationTimeHasBeenSet = true;
403 m_creationTime = std::forward<CreationTimeT>(value);
404 }
405 template <typename CreationTimeT = Aws::Utils::DateTime>
406 GetRunResult& WithCreationTime(CreationTimeT&& value) {
407 SetCreationTime(std::forward<CreationTimeT>(value));
408 return *this;
409 }
411
413
416 inline const Aws::Utils::DateTime& GetStartTime() const { return m_startTime; }
417 template <typename StartTimeT = Aws::Utils::DateTime>
418 void SetStartTime(StartTimeT&& value) {
419 m_startTimeHasBeenSet = true;
420 m_startTime = std::forward<StartTimeT>(value);
421 }
422 template <typename StartTimeT = Aws::Utils::DateTime>
423 GetRunResult& WithStartTime(StartTimeT&& value) {
424 SetStartTime(std::forward<StartTimeT>(value));
425 return *this;
426 }
428
430
433 inline const Aws::Utils::DateTime& GetStopTime() const { return m_stopTime; }
434 template <typename StopTimeT = Aws::Utils::DateTime>
435 void SetStopTime(StopTimeT&& value) {
436 m_stopTimeHasBeenSet = true;
437 m_stopTime = std::forward<StopTimeT>(value);
438 }
439 template <typename StopTimeT = Aws::Utils::DateTime>
440 GetRunResult& WithStopTime(StopTimeT&& value) {
441 SetStopTime(std::forward<StopTimeT>(value));
442 return *this;
443 }
445
447
450 inline const Aws::String& GetStatusMessage() const { return m_statusMessage; }
451 template <typename StatusMessageT = Aws::String>
452 void SetStatusMessage(StatusMessageT&& value) {
453 m_statusMessageHasBeenSet = true;
454 m_statusMessage = std::forward<StatusMessageT>(value);
455 }
456 template <typename StatusMessageT = Aws::String>
457 GetRunResult& WithStatusMessage(StatusMessageT&& value) {
458 SetStatusMessage(std::forward<StatusMessageT>(value));
459 return *this;
460 }
462
464
467 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const { return m_tags; }
468 template <typename TagsT = Aws::Map<Aws::String, Aws::String>>
469 void SetTags(TagsT&& value) {
470 m_tagsHasBeenSet = true;
471 m_tags = std::forward<TagsT>(value);
472 }
473 template <typename TagsT = Aws::Map<Aws::String, Aws::String>>
474 GetRunResult& WithTags(TagsT&& value) {
475 SetTags(std::forward<TagsT>(value));
476 return *this;
477 }
478 template <typename TagsKeyT = Aws::String, typename TagsValueT = Aws::String>
479 GetRunResult& AddTags(TagsKeyT&& key, TagsValueT&& value) {
480 m_tagsHasBeenSet = true;
481 m_tags.emplace(std::forward<TagsKeyT>(key), std::forward<TagsValueT>(value));
482 return *this;
483 }
485
487
490 inline Accelerators GetAccelerators() const { return m_accelerators; }
491 inline void SetAccelerators(Accelerators value) {
492 m_acceleratorsHasBeenSet = true;
493 m_accelerators = value;
494 }
496 SetAccelerators(value);
497 return *this;
498 }
500
502
505 inline RunRetentionMode GetRetentionMode() const { return m_retentionMode; }
507 m_retentionModeHasBeenSet = true;
508 m_retentionMode = value;
509 }
511 SetRetentionMode(value);
512 return *this;
513 }
515
517
520 inline const Aws::String& GetFailureReason() const { return m_failureReason; }
521 template <typename FailureReasonT = Aws::String>
522 void SetFailureReason(FailureReasonT&& value) {
523 m_failureReasonHasBeenSet = true;
524 m_failureReason = std::forward<FailureReasonT>(value);
525 }
526 template <typename FailureReasonT = Aws::String>
527 GetRunResult& WithFailureReason(FailureReasonT&& value) {
528 SetFailureReason(std::forward<FailureReasonT>(value));
529 return *this;
530 }
532
534
537 inline const RunLogLocation& GetLogLocation() const { return m_logLocation; }
538 template <typename LogLocationT = RunLogLocation>
539 void SetLogLocation(LogLocationT&& value) {
540 m_logLocationHasBeenSet = true;
541 m_logLocation = std::forward<LogLocationT>(value);
542 }
543 template <typename LogLocationT = RunLogLocation>
544 GetRunResult& WithLogLocation(LogLocationT&& value) {
545 SetLogLocation(std::forward<LogLocationT>(value));
546 return *this;
547 }
549
551
554 inline const Aws::String& GetUuid() const { return m_uuid; }
555 template <typename UuidT = Aws::String>
556 void SetUuid(UuidT&& value) {
557 m_uuidHasBeenSet = true;
558 m_uuid = std::forward<UuidT>(value);
559 }
560 template <typename UuidT = Aws::String>
561 GetRunResult& WithUuid(UuidT&& value) {
562 SetUuid(std::forward<UuidT>(value));
563 return *this;
564 }
566
568
571 inline const Aws::String& GetRunOutputUri() const { return m_runOutputUri; }
572 template <typename RunOutputUriT = Aws::String>
573 void SetRunOutputUri(RunOutputUriT&& value) {
574 m_runOutputUriHasBeenSet = true;
575 m_runOutputUri = std::forward<RunOutputUriT>(value);
576 }
577 template <typename RunOutputUriT = Aws::String>
578 GetRunResult& WithRunOutputUri(RunOutputUriT&& value) {
579 SetRunOutputUri(std::forward<RunOutputUriT>(value));
580 return *this;
581 }
583
585
588 inline StorageType GetStorageType() const { return m_storageType; }
589 inline void SetStorageType(StorageType value) {
590 m_storageTypeHasBeenSet = true;
591 m_storageType = value;
592 }
594 SetStorageType(value);
595 return *this;
596 }
598
600
603 inline const Aws::String& GetWorkflowOwnerId() const { return m_workflowOwnerId; }
604 template <typename WorkflowOwnerIdT = Aws::String>
605 void SetWorkflowOwnerId(WorkflowOwnerIdT&& value) {
606 m_workflowOwnerIdHasBeenSet = true;
607 m_workflowOwnerId = std::forward<WorkflowOwnerIdT>(value);
608 }
609 template <typename WorkflowOwnerIdT = Aws::String>
610 GetRunResult& WithWorkflowOwnerId(WorkflowOwnerIdT&& value) {
611 SetWorkflowOwnerId(std::forward<WorkflowOwnerIdT>(value));
612 return *this;
613 }
615
617
620 inline const Aws::String& GetWorkflowVersionName() const { return m_workflowVersionName; }
621 template <typename WorkflowVersionNameT = Aws::String>
622 void SetWorkflowVersionName(WorkflowVersionNameT&& value) {
623 m_workflowVersionNameHasBeenSet = true;
624 m_workflowVersionName = std::forward<WorkflowVersionNameT>(value);
625 }
626 template <typename WorkflowVersionNameT = Aws::String>
627 GetRunResult& WithWorkflowVersionName(WorkflowVersionNameT&& value) {
628 SetWorkflowVersionName(std::forward<WorkflowVersionNameT>(value));
629 return *this;
630 }
632
634
637 inline const Aws::String& GetWorkflowUuid() const { return m_workflowUuid; }
638 template <typename WorkflowUuidT = Aws::String>
639 void SetWorkflowUuid(WorkflowUuidT&& value) {
640 m_workflowUuidHasBeenSet = true;
641 m_workflowUuid = std::forward<WorkflowUuidT>(value);
642 }
643 template <typename WorkflowUuidT = Aws::String>
644 GetRunResult& WithWorkflowUuid(WorkflowUuidT&& value) {
645 SetWorkflowUuid(std::forward<WorkflowUuidT>(value));
646 return *this;
647 }
649
651
652 inline const Aws::String& GetRequestId() const { return m_requestId; }
653 template <typename RequestIdT = Aws::String>
654 void SetRequestId(RequestIdT&& value) {
655 m_requestIdHasBeenSet = true;
656 m_requestId = std::forward<RequestIdT>(value);
657 }
658 template <typename RequestIdT = Aws::String>
659 GetRunResult& WithRequestId(RequestIdT&& value) {
660 SetRequestId(std::forward<RequestIdT>(value));
661 return *this;
662 }
664 private:
665 Aws::String m_arn;
666
667 Aws::String m_id;
668
669 Aws::String m_cacheId;
670
671 CacheBehavior m_cacheBehavior{CacheBehavior::NOT_SET};
672
673 Aws::String m_engineVersion;
674
676
677 Aws::String m_workflowId;
678
679 WorkflowType m_workflowType{WorkflowType::NOT_SET};
680
681 Aws::String m_runId;
682
683 Aws::String m_roleArn;
684
685 Aws::String m_name;
686
687 Aws::String m_runGroupId;
688
689 int m_priority{0};
690
691 Aws::String m_definition;
692
693 Aws::String m_digest;
694
695 Aws::Utils::Document m_parameters;
696
697 int m_storageCapacity{0};
698
699 Aws::String m_outputUri;
700
702
703 Aws::Map<Aws::String, Aws::String> m_resourceDigests;
704
705 Aws::String m_startedBy;
706
707 Aws::Utils::DateTime m_creationTime{};
708
709 Aws::Utils::DateTime m_startTime{};
710
711 Aws::Utils::DateTime m_stopTime{};
712
713 Aws::String m_statusMessage;
714
716
717 Accelerators m_accelerators{Accelerators::NOT_SET};
718
720
721 Aws::String m_failureReason;
722
723 RunLogLocation m_logLocation;
724
725 Aws::String m_uuid;
726
727 Aws::String m_runOutputUri;
728
729 StorageType m_storageType{StorageType::NOT_SET};
730
731 Aws::String m_workflowOwnerId;
732
733 Aws::String m_workflowVersionName;
734
735 Aws::String m_workflowUuid;
736
737 Aws::String m_requestId;
738 bool m_arnHasBeenSet = false;
739 bool m_idHasBeenSet = false;
740 bool m_cacheIdHasBeenSet = false;
741 bool m_cacheBehaviorHasBeenSet = false;
742 bool m_engineVersionHasBeenSet = false;
743 bool m_statusHasBeenSet = false;
744 bool m_workflowIdHasBeenSet = false;
745 bool m_workflowTypeHasBeenSet = false;
746 bool m_runIdHasBeenSet = false;
747 bool m_roleArnHasBeenSet = false;
748 bool m_nameHasBeenSet = false;
749 bool m_runGroupIdHasBeenSet = false;
750 bool m_priorityHasBeenSet = false;
751 bool m_definitionHasBeenSet = false;
752 bool m_digestHasBeenSet = false;
753 bool m_parametersHasBeenSet = false;
754 bool m_storageCapacityHasBeenSet = false;
755 bool m_outputUriHasBeenSet = false;
756 bool m_logLevelHasBeenSet = false;
757 bool m_resourceDigestsHasBeenSet = false;
758 bool m_startedByHasBeenSet = false;
759 bool m_creationTimeHasBeenSet = false;
760 bool m_startTimeHasBeenSet = false;
761 bool m_stopTimeHasBeenSet = false;
762 bool m_statusMessageHasBeenSet = false;
763 bool m_tagsHasBeenSet = false;
764 bool m_acceleratorsHasBeenSet = false;
765 bool m_retentionModeHasBeenSet = false;
766 bool m_failureReasonHasBeenSet = false;
767 bool m_logLocationHasBeenSet = false;
768 bool m_uuidHasBeenSet = false;
769 bool m_runOutputUriHasBeenSet = false;
770 bool m_storageTypeHasBeenSet = false;
771 bool m_workflowOwnerIdHasBeenSet = false;
772 bool m_workflowVersionNameHasBeenSet = false;
773 bool m_workflowUuidHasBeenSet = false;
774 bool m_requestIdHasBeenSet = false;
775};
776
777} // namespace Model
778} // namespace Omics
779} // namespace Aws
const Aws::String & GetWorkflowVersionName() const
void SetWorkflowType(WorkflowType value)
AWS_OMICS_API GetRunResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
const Aws::String & GetWorkflowUuid() const
GetRunResult & WithStatus(RunStatus value)
void SetWorkflowUuid(WorkflowUuidT &&value)
void SetRunOutputUri(RunOutputUriT &&value)
AWS_OMICS_API GetRunResult()=default
void SetLogLevel(RunLogLevel value)
void SetCreationTime(CreationTimeT &&value)
void SetStartTime(StartTimeT &&value)
const Aws::String & GetStartedBy() const
void SetWorkflowId(WorkflowIdT &&value)
void SetWorkflowOwnerId(WorkflowOwnerIdT &&value)
const Aws::String & GetRequestId() const
GetRunResult & WithCacheBehavior(CacheBehavior value)
void SetEngineVersion(EngineVersionT &&value)
void SetRequestId(RequestIdT &&value)
void SetStatusMessage(StatusMessageT &&value)
void SetDigest(DigestT &&value)
GetRunResult & WithId(IdT &&value)
GetRunResult & WithRunId(RunIdT &&value)
void SetOutputUri(OutputUriT &&value)
GetRunResult & WithResourceDigests(ResourceDigestsT &&value)
GetRunResult & WithPriority(int value)
GetRunResult & WithRunGroupId(RunGroupIdT &&value)
WorkflowType GetWorkflowType() const
const Aws::String & GetRunId() const
StorageType GetStorageType() const
GetRunResult & WithName(NameT &&value)
const Aws::String & GetEngineVersion() const
GetRunResult & WithWorkflowUuid(WorkflowUuidT &&value)
GetRunResult & WithArn(ArnT &&value)
GetRunResult & WithParameters(ParametersT &&value)
void SetResourceDigests(ResourceDigestsT &&value)
const RunLogLocation & GetLogLocation() const
const Aws::String & GetCacheId() const
void SetStatus(RunStatus value)
GetRunResult & WithWorkflowVersionName(WorkflowVersionNameT &&value)
GetRunResult & AddTags(TagsKeyT &&key, TagsValueT &&value)
GetRunResult & WithOutputUri(OutputUriT &&value)
Accelerators GetAccelerators() const
const Aws::Utils::DateTime & GetCreationTime() const
const Aws::String & GetOutputUri() const
GetRunResult & WithCacheId(CacheIdT &&value)
const Aws::Map< Aws::String, Aws::String > & GetResourceDigests() const
GetRunResult & WithStorageCapacity(int value)
const Aws::String & GetName() const
GetRunResult & WithLogLocation(LogLocationT &&value)
GetRunResult & WithAccelerators(Accelerators value)
void SetFailureReason(FailureReasonT &&value)
const Aws::String & GetWorkflowOwnerId() const
GetRunResult & WithRunOutputUri(RunOutputUriT &&value)
const Aws::String & GetDefinition() const
GetRunResult & WithWorkflowType(WorkflowType value)
RunLogLevel GetLogLevel() const
GetRunResult & WithRetentionMode(RunRetentionMode value)
GetRunResult & WithRoleArn(RoleArnT &&value)
void SetCacheId(CacheIdT &&value)
RunRetentionMode GetRetentionMode() const
GetRunResult & WithStatusMessage(StatusMessageT &&value)
GetRunResult & WithDefinition(DefinitionT &&value)
void SetDefinition(DefinitionT &&value)
GetRunResult & WithLogLevel(RunLogLevel value)
void SetRunId(RunIdT &&value)
const Aws::Utils::DateTime & GetStartTime() const
void SetAccelerators(Accelerators value)
Aws::Utils::DocumentView GetParameters() const
GetRunResult & WithStopTime(StopTimeT &&value)
GetRunResult & WithRequestId(RequestIdT &&value)
GetRunResult & WithWorkflowId(WorkflowIdT &&value)
CacheBehavior GetCacheBehavior() const
void SetWorkflowVersionName(WorkflowVersionNameT &&value)
const Aws::String & GetRunGroupId() const
const Aws::String & GetDigest() const
GetRunResult & WithDigest(DigestT &&value)
GetRunResult & AddResourceDigests(ResourceDigestsKeyT &&key, ResourceDigestsValueT &&value)
GetRunResult & WithCreationTime(CreationTimeT &&value)
const Aws::String & GetWorkflowId() const
GetRunResult & WithStorageType(StorageType value)
void SetStorageType(StorageType value)
AWS_OMICS_API GetRunResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetRunResult & WithUuid(UuidT &&value)
const Aws::String & GetRunOutputUri() const
GetRunResult & WithStartTime(StartTimeT &&value)
const Aws::String & GetFailureReason() const
void SetCacheBehavior(CacheBehavior value)
void SetLogLocation(LogLocationT &&value)
void SetStopTime(StopTimeT &&value)
const Aws::Map< Aws::String, Aws::String > & GetTags() const
GetRunResult & WithEngineVersion(EngineVersionT &&value)
void SetStartedBy(StartedByT &&value)
GetRunResult & WithStartedBy(StartedByT &&value)
const Aws::String & GetId() const
const Aws::String & GetRoleArn() const
const Aws::String & GetArn() const
const Aws::Utils::DateTime & GetStopTime() const
const Aws::String & GetStatusMessage() const
void SetRunGroupId(RunGroupIdT &&value)
void SetRetentionMode(RunRetentionMode value)
GetRunResult & WithWorkflowOwnerId(WorkflowOwnerIdT &&value)
GetRunResult & WithTags(TagsT &&value)
void SetRoleArn(RoleArnT &&value)
GetRunResult & WithFailureReason(FailureReasonT &&value)
const Aws::String & GetUuid() const
void SetParameters(ParametersT &&value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue