aws-sdk-omics 1.99.0

AWS SDK for Amazon Omics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct GetWorkflowOutput {
    /// <p>The workflow's ARN.</p>
    pub arn: ::std::option::Option<::std::string::String>,
    /// <p>The workflow's ID.</p>
    pub id: ::std::option::Option<::std::string::String>,
    /// <p>The workflow's status.</p>
    pub status: ::std::option::Option<crate::types::WorkflowStatus>,
    /// <p>The workflow's type.</p>
    pub r#type: ::std::option::Option<crate::types::WorkflowType>,
    /// <p>The workflow's name.</p>
    pub name: ::std::option::Option<::std::string::String>,
    /// <p>The workflow's description.</p>
    pub description: ::std::option::Option<::std::string::String>,
    /// <p>The workflow's engine.</p>
    pub engine: ::std::option::Option<crate::types::WorkflowEngine>,
    /// <p>The workflow's definition.</p>
    pub definition: ::std::option::Option<::std::string::String>,
    /// <p>The path of the main definition file for the workflow.</p>
    pub main: ::std::option::Option<::std::string::String>,
    /// <p>The workflow's digest.</p>
    pub digest: ::std::option::Option<::std::string::String>,
    /// <p>The workflow's parameter template.</p>
    pub parameter_template: ::std::option::Option<::std::collections::HashMap<::std::string::String, crate::types::WorkflowParameter>>,
    /// <p>The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.</p>
    pub storage_capacity: ::std::option::Option<i32>,
    /// <p>When the workflow was created.</p>
    pub creation_time: ::std::option::Option<::aws_smithy_types::DateTime>,
    /// <p>The workflow's status message.</p>
    pub status_message: ::std::option::Option<::std::string::String>,
    /// <p>The workflow's tags.</p>
    pub tags: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
    /// <p>Gets metadata for the workflow.</p>
    pub metadata: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
    /// <p>The computational accelerator specified to run the workflow.</p>
    pub accelerators: ::std::option::Option<crate::types::Accelerators>,
    /// <p>The default storage type for runs using this workflow.</p>
    pub storage_type: ::std::option::Option<crate::types::StorageType>,
    /// <p>The universally unique identifier (UUID) value for this workflow.</p>
    pub uuid: ::std::option::Option<::std::string::String>,
    /// <p>The registry map that this workflow is using.</p>
    pub container_registry_map: ::std::option::Option<crate::types::ContainerRegistryMap>,
    /// <p>The README content for the workflow, providing documentation and usage information.</p>
    pub readme: ::std::option::Option<::std::string::String>,
    /// <p>Details about the source code repository that hosts the workflow definition files.</p>
    pub definition_repository_details: ::std::option::Option<crate::types::DefinitionRepositoryDetails>,
    /// <p>The path to the workflow README markdown file within the repository. This file provides documentation and usage information for the workflow. If not specified, the <code>README.md</code> file from the root directory of the repository will be used.</p>
    pub readme_path: ::std::option::Option<::std::string::String>,
    _request_id: Option<String>,
}
impl GetWorkflowOutput {
    /// <p>The workflow's ARN.</p>
    pub fn arn(&self) -> ::std::option::Option<&str> {
        self.arn.as_deref()
    }
    /// <p>The workflow's ID.</p>
    pub fn id(&self) -> ::std::option::Option<&str> {
        self.id.as_deref()
    }
    /// <p>The workflow's status.</p>
    pub fn status(&self) -> ::std::option::Option<&crate::types::WorkflowStatus> {
        self.status.as_ref()
    }
    /// <p>The workflow's type.</p>
    pub fn r#type(&self) -> ::std::option::Option<&crate::types::WorkflowType> {
        self.r#type.as_ref()
    }
    /// <p>The workflow's name.</p>
    pub fn name(&self) -> ::std::option::Option<&str> {
        self.name.as_deref()
    }
    /// <p>The workflow's description.</p>
    pub fn description(&self) -> ::std::option::Option<&str> {
        self.description.as_deref()
    }
    /// <p>The workflow's engine.</p>
    pub fn engine(&self) -> ::std::option::Option<&crate::types::WorkflowEngine> {
        self.engine.as_ref()
    }
    /// <p>The workflow's definition.</p>
    pub fn definition(&self) -> ::std::option::Option<&str> {
        self.definition.as_deref()
    }
    /// <p>The path of the main definition file for the workflow.</p>
    pub fn main(&self) -> ::std::option::Option<&str> {
        self.main.as_deref()
    }
    /// <p>The workflow's digest.</p>
    pub fn digest(&self) -> ::std::option::Option<&str> {
        self.digest.as_deref()
    }
    /// <p>The workflow's parameter template.</p>
    pub fn parameter_template(&self) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, crate::types::WorkflowParameter>> {
        self.parameter_template.as_ref()
    }
    /// <p>The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.</p>
    pub fn storage_capacity(&self) -> ::std::option::Option<i32> {
        self.storage_capacity
    }
    /// <p>When the workflow was created.</p>
    pub fn creation_time(&self) -> ::std::option::Option<&::aws_smithy_types::DateTime> {
        self.creation_time.as_ref()
    }
    /// <p>The workflow's status message.</p>
    pub fn status_message(&self) -> ::std::option::Option<&str> {
        self.status_message.as_deref()
    }
    /// <p>The workflow's tags.</p>
    pub fn tags(&self) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, ::std::string::String>> {
        self.tags.as_ref()
    }
    /// <p>Gets metadata for the workflow.</p>
    pub fn metadata(&self) -> ::std::option::Option<&::std::collections::HashMap<::std::string::String, ::std::string::String>> {
        self.metadata.as_ref()
    }
    /// <p>The computational accelerator specified to run the workflow.</p>
    pub fn accelerators(&self) -> ::std::option::Option<&crate::types::Accelerators> {
        self.accelerators.as_ref()
    }
    /// <p>The default storage type for runs using this workflow.</p>
    pub fn storage_type(&self) -> ::std::option::Option<&crate::types::StorageType> {
        self.storage_type.as_ref()
    }
    /// <p>The universally unique identifier (UUID) value for this workflow.</p>
    pub fn uuid(&self) -> ::std::option::Option<&str> {
        self.uuid.as_deref()
    }
    /// <p>The registry map that this workflow is using.</p>
    pub fn container_registry_map(&self) -> ::std::option::Option<&crate::types::ContainerRegistryMap> {
        self.container_registry_map.as_ref()
    }
    /// <p>The README content for the workflow, providing documentation and usage information.</p>
    pub fn readme(&self) -> ::std::option::Option<&str> {
        self.readme.as_deref()
    }
    /// <p>Details about the source code repository that hosts the workflow definition files.</p>
    pub fn definition_repository_details(&self) -> ::std::option::Option<&crate::types::DefinitionRepositoryDetails> {
        self.definition_repository_details.as_ref()
    }
    /// <p>The path to the workflow README markdown file within the repository. This file provides documentation and usage information for the workflow. If not specified, the <code>README.md</code> file from the root directory of the repository will be used.</p>
    pub fn readme_path(&self) -> ::std::option::Option<&str> {
        self.readme_path.as_deref()
    }
}
impl ::aws_types::request_id::RequestId for GetWorkflowOutput {
    fn request_id(&self) -> Option<&str> {
        self._request_id.as_deref()
    }
}
impl GetWorkflowOutput {
    /// Creates a new builder-style object to manufacture [`GetWorkflowOutput`](crate::operation::get_workflow::GetWorkflowOutput).
    pub fn builder() -> crate::operation::get_workflow::builders::GetWorkflowOutputBuilder {
        crate::operation::get_workflow::builders::GetWorkflowOutputBuilder::default()
    }
}

/// A builder for [`GetWorkflowOutput`](crate::operation::get_workflow::GetWorkflowOutput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct GetWorkflowOutputBuilder {
    pub(crate) arn: ::std::option::Option<::std::string::String>,
    pub(crate) id: ::std::option::Option<::std::string::String>,
    pub(crate) status: ::std::option::Option<crate::types::WorkflowStatus>,
    pub(crate) r#type: ::std::option::Option<crate::types::WorkflowType>,
    pub(crate) name: ::std::option::Option<::std::string::String>,
    pub(crate) description: ::std::option::Option<::std::string::String>,
    pub(crate) engine: ::std::option::Option<crate::types::WorkflowEngine>,
    pub(crate) definition: ::std::option::Option<::std::string::String>,
    pub(crate) main: ::std::option::Option<::std::string::String>,
    pub(crate) digest: ::std::option::Option<::std::string::String>,
    pub(crate) parameter_template: ::std::option::Option<::std::collections::HashMap<::std::string::String, crate::types::WorkflowParameter>>,
    pub(crate) storage_capacity: ::std::option::Option<i32>,
    pub(crate) creation_time: ::std::option::Option<::aws_smithy_types::DateTime>,
    pub(crate) status_message: ::std::option::Option<::std::string::String>,
    pub(crate) tags: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
    pub(crate) metadata: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>,
    pub(crate) accelerators: ::std::option::Option<crate::types::Accelerators>,
    pub(crate) storage_type: ::std::option::Option<crate::types::StorageType>,
    pub(crate) uuid: ::std::option::Option<::std::string::String>,
    pub(crate) container_registry_map: ::std::option::Option<crate::types::ContainerRegistryMap>,
    pub(crate) readme: ::std::option::Option<::std::string::String>,
    pub(crate) definition_repository_details: ::std::option::Option<crate::types::DefinitionRepositoryDetails>,
    pub(crate) readme_path: ::std::option::Option<::std::string::String>,
    _request_id: Option<String>,
}
impl GetWorkflowOutputBuilder {
    /// <p>The workflow's ARN.</p>
    pub fn arn(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.arn = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The workflow's ARN.</p>
    pub fn set_arn(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.arn = input;
        self
    }
    /// <p>The workflow's ARN.</p>
    pub fn get_arn(&self) -> &::std::option::Option<::std::string::String> {
        &self.arn
    }
    /// <p>The workflow's ID.</p>
    pub fn id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.id = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The workflow's ID.</p>
    pub fn set_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.id = input;
        self
    }
    /// <p>The workflow's ID.</p>
    pub fn get_id(&self) -> &::std::option::Option<::std::string::String> {
        &self.id
    }
    /// <p>The workflow's status.</p>
    pub fn status(mut self, input: crate::types::WorkflowStatus) -> Self {
        self.status = ::std::option::Option::Some(input);
        self
    }
    /// <p>The workflow's status.</p>
    pub fn set_status(mut self, input: ::std::option::Option<crate::types::WorkflowStatus>) -> Self {
        self.status = input;
        self
    }
    /// <p>The workflow's status.</p>
    pub fn get_status(&self) -> &::std::option::Option<crate::types::WorkflowStatus> {
        &self.status
    }
    /// <p>The workflow's type.</p>
    pub fn r#type(mut self, input: crate::types::WorkflowType) -> Self {
        self.r#type = ::std::option::Option::Some(input);
        self
    }
    /// <p>The workflow's type.</p>
    pub fn set_type(mut self, input: ::std::option::Option<crate::types::WorkflowType>) -> Self {
        self.r#type = input;
        self
    }
    /// <p>The workflow's type.</p>
    pub fn get_type(&self) -> &::std::option::Option<crate::types::WorkflowType> {
        &self.r#type
    }
    /// <p>The workflow's name.</p>
    pub fn name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.name = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The workflow's name.</p>
    pub fn set_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.name = input;
        self
    }
    /// <p>The workflow's name.</p>
    pub fn get_name(&self) -> &::std::option::Option<::std::string::String> {
        &self.name
    }
    /// <p>The workflow's description.</p>
    pub fn description(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.description = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The workflow's description.</p>
    pub fn set_description(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.description = input;
        self
    }
    /// <p>The workflow's description.</p>
    pub fn get_description(&self) -> &::std::option::Option<::std::string::String> {
        &self.description
    }
    /// <p>The workflow's engine.</p>
    pub fn engine(mut self, input: crate::types::WorkflowEngine) -> Self {
        self.engine = ::std::option::Option::Some(input);
        self
    }
    /// <p>The workflow's engine.</p>
    pub fn set_engine(mut self, input: ::std::option::Option<crate::types::WorkflowEngine>) -> Self {
        self.engine = input;
        self
    }
    /// <p>The workflow's engine.</p>
    pub fn get_engine(&self) -> &::std::option::Option<crate::types::WorkflowEngine> {
        &self.engine
    }
    /// <p>The workflow's definition.</p>
    pub fn definition(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.definition = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The workflow's definition.</p>
    pub fn set_definition(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.definition = input;
        self
    }
    /// <p>The workflow's definition.</p>
    pub fn get_definition(&self) -> &::std::option::Option<::std::string::String> {
        &self.definition
    }
    /// <p>The path of the main definition file for the workflow.</p>
    pub fn main(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.main = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The path of the main definition file for the workflow.</p>
    pub fn set_main(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.main = input;
        self
    }
    /// <p>The path of the main definition file for the workflow.</p>
    pub fn get_main(&self) -> &::std::option::Option<::std::string::String> {
        &self.main
    }
    /// <p>The workflow's digest.</p>
    pub fn digest(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.digest = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The workflow's digest.</p>
    pub fn set_digest(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.digest = input;
        self
    }
    /// <p>The workflow's digest.</p>
    pub fn get_digest(&self) -> &::std::option::Option<::std::string::String> {
        &self.digest
    }
    /// Adds a key-value pair to `parameter_template`.
    ///
    /// To override the contents of this collection use [`set_parameter_template`](Self::set_parameter_template).
    ///
    /// <p>The workflow's parameter template.</p>
    pub fn parameter_template(mut self, k: impl ::std::convert::Into<::std::string::String>, v: crate::types::WorkflowParameter) -> Self {
        let mut hash_map = self.parameter_template.unwrap_or_default();
        hash_map.insert(k.into(), v);
        self.parameter_template = ::std::option::Option::Some(hash_map);
        self
    }
    /// <p>The workflow's parameter template.</p>
    pub fn set_parameter_template(
        mut self,
        input: ::std::option::Option<::std::collections::HashMap<::std::string::String, crate::types::WorkflowParameter>>,
    ) -> Self {
        self.parameter_template = input;
        self
    }
    /// <p>The workflow's parameter template.</p>
    pub fn get_parameter_template(
        &self,
    ) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, crate::types::WorkflowParameter>> {
        &self.parameter_template
    }
    /// <p>The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.</p>
    pub fn storage_capacity(mut self, input: i32) -> Self {
        self.storage_capacity = ::std::option::Option::Some(input);
        self
    }
    /// <p>The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.</p>
    pub fn set_storage_capacity(mut self, input: ::std::option::Option<i32>) -> Self {
        self.storage_capacity = input;
        self
    }
    /// <p>The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.</p>
    pub fn get_storage_capacity(&self) -> &::std::option::Option<i32> {
        &self.storage_capacity
    }
    /// <p>When the workflow was created.</p>
    pub fn creation_time(mut self, input: ::aws_smithy_types::DateTime) -> Self {
        self.creation_time = ::std::option::Option::Some(input);
        self
    }
    /// <p>When the workflow was created.</p>
    pub fn set_creation_time(mut self, input: ::std::option::Option<::aws_smithy_types::DateTime>) -> Self {
        self.creation_time = input;
        self
    }
    /// <p>When the workflow was created.</p>
    pub fn get_creation_time(&self) -> &::std::option::Option<::aws_smithy_types::DateTime> {
        &self.creation_time
    }
    /// <p>The workflow's status message.</p>
    pub fn status_message(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.status_message = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The workflow's status message.</p>
    pub fn set_status_message(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.status_message = input;
        self
    }
    /// <p>The workflow's status message.</p>
    pub fn get_status_message(&self) -> &::std::option::Option<::std::string::String> {
        &self.status_message
    }
    /// Adds a key-value pair to `tags`.
    ///
    /// To override the contents of this collection use [`set_tags`](Self::set_tags).
    ///
    /// <p>The workflow's tags.</p>
    pub fn tags(mut self, k: impl ::std::convert::Into<::std::string::String>, v: impl ::std::convert::Into<::std::string::String>) -> Self {
        let mut hash_map = self.tags.unwrap_or_default();
        hash_map.insert(k.into(), v.into());
        self.tags = ::std::option::Option::Some(hash_map);
        self
    }
    /// <p>The workflow's tags.</p>
    pub fn set_tags(mut self, input: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>) -> Self {
        self.tags = input;
        self
    }
    /// <p>The workflow's tags.</p>
    pub fn get_tags(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>> {
        &self.tags
    }
    /// Adds a key-value pair to `metadata`.
    ///
    /// To override the contents of this collection use [`set_metadata`](Self::set_metadata).
    ///
    /// <p>Gets metadata for the workflow.</p>
    pub fn metadata(mut self, k: impl ::std::convert::Into<::std::string::String>, v: impl ::std::convert::Into<::std::string::String>) -> Self {
        let mut hash_map = self.metadata.unwrap_or_default();
        hash_map.insert(k.into(), v.into());
        self.metadata = ::std::option::Option::Some(hash_map);
        self
    }
    /// <p>Gets metadata for the workflow.</p>
    pub fn set_metadata(mut self, input: ::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>>) -> Self {
        self.metadata = input;
        self
    }
    /// <p>Gets metadata for the workflow.</p>
    pub fn get_metadata(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, ::std::string::String>> {
        &self.metadata
    }
    /// <p>The computational accelerator specified to run the workflow.</p>
    pub fn accelerators(mut self, input: crate::types::Accelerators) -> Self {
        self.accelerators = ::std::option::Option::Some(input);
        self
    }
    /// <p>The computational accelerator specified to run the workflow.</p>
    pub fn set_accelerators(mut self, input: ::std::option::Option<crate::types::Accelerators>) -> Self {
        self.accelerators = input;
        self
    }
    /// <p>The computational accelerator specified to run the workflow.</p>
    pub fn get_accelerators(&self) -> &::std::option::Option<crate::types::Accelerators> {
        &self.accelerators
    }
    /// <p>The default storage type for runs using this workflow.</p>
    pub fn storage_type(mut self, input: crate::types::StorageType) -> Self {
        self.storage_type = ::std::option::Option::Some(input);
        self
    }
    /// <p>The default storage type for runs using this workflow.</p>
    pub fn set_storage_type(mut self, input: ::std::option::Option<crate::types::StorageType>) -> Self {
        self.storage_type = input;
        self
    }
    /// <p>The default storage type for runs using this workflow.</p>
    pub fn get_storage_type(&self) -> &::std::option::Option<crate::types::StorageType> {
        &self.storage_type
    }
    /// <p>The universally unique identifier (UUID) value for this workflow.</p>
    pub fn uuid(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.uuid = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The universally unique identifier (UUID) value for this workflow.</p>
    pub fn set_uuid(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.uuid = input;
        self
    }
    /// <p>The universally unique identifier (UUID) value for this workflow.</p>
    pub fn get_uuid(&self) -> &::std::option::Option<::std::string::String> {
        &self.uuid
    }
    /// <p>The registry map that this workflow is using.</p>
    pub fn container_registry_map(mut self, input: crate::types::ContainerRegistryMap) -> Self {
        self.container_registry_map = ::std::option::Option::Some(input);
        self
    }
    /// <p>The registry map that this workflow is using.</p>
    pub fn set_container_registry_map(mut self, input: ::std::option::Option<crate::types::ContainerRegistryMap>) -> Self {
        self.container_registry_map = input;
        self
    }
    /// <p>The registry map that this workflow is using.</p>
    pub fn get_container_registry_map(&self) -> &::std::option::Option<crate::types::ContainerRegistryMap> {
        &self.container_registry_map
    }
    /// <p>The README content for the workflow, providing documentation and usage information.</p>
    pub fn readme(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.readme = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The README content for the workflow, providing documentation and usage information.</p>
    pub fn set_readme(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.readme = input;
        self
    }
    /// <p>The README content for the workflow, providing documentation and usage information.</p>
    pub fn get_readme(&self) -> &::std::option::Option<::std::string::String> {
        &self.readme
    }
    /// <p>Details about the source code repository that hosts the workflow definition files.</p>
    pub fn definition_repository_details(mut self, input: crate::types::DefinitionRepositoryDetails) -> Self {
        self.definition_repository_details = ::std::option::Option::Some(input);
        self
    }
    /// <p>Details about the source code repository that hosts the workflow definition files.</p>
    pub fn set_definition_repository_details(mut self, input: ::std::option::Option<crate::types::DefinitionRepositoryDetails>) -> Self {
        self.definition_repository_details = input;
        self
    }
    /// <p>Details about the source code repository that hosts the workflow definition files.</p>
    pub fn get_definition_repository_details(&self) -> &::std::option::Option<crate::types::DefinitionRepositoryDetails> {
        &self.definition_repository_details
    }
    /// <p>The path to the workflow README markdown file within the repository. This file provides documentation and usage information for the workflow. If not specified, the <code>README.md</code> file from the root directory of the repository will be used.</p>
    pub fn readme_path(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
        self.readme_path = ::std::option::Option::Some(input.into());
        self
    }
    /// <p>The path to the workflow README markdown file within the repository. This file provides documentation and usage information for the workflow. If not specified, the <code>README.md</code> file from the root directory of the repository will be used.</p>
    pub fn set_readme_path(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
        self.readme_path = input;
        self
    }
    /// <p>The path to the workflow README markdown file within the repository. This file provides documentation and usage information for the workflow. If not specified, the <code>README.md</code> file from the root directory of the repository will be used.</p>
    pub fn get_readme_path(&self) -> &::std::option::Option<::std::string::String> {
        &self.readme_path
    }
    pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
        self._request_id = Some(request_id.into());
        self
    }

    pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
        self._request_id = request_id;
        self
    }
    /// Consumes the builder and constructs a [`GetWorkflowOutput`](crate::operation::get_workflow::GetWorkflowOutput).
    pub fn build(self) -> crate::operation::get_workflow::GetWorkflowOutput {
        crate::operation::get_workflow::GetWorkflowOutput {
            arn: self.arn,
            id: self.id,
            status: self.status,
            r#type: self.r#type,
            name: self.name,
            description: self.description,
            engine: self.engine,
            definition: self.definition,
            main: self.main,
            digest: self.digest,
            parameter_template: self.parameter_template,
            storage_capacity: self.storage_capacity,
            creation_time: self.creation_time,
            status_message: self.status_message,
            tags: self.tags,
            metadata: self.metadata,
            accelerators: self.accelerators,
            storage_type: self.storage_type,
            uuid: self.uuid,
            container_registry_map: self.container_registry_map,
            readme: self.readme,
            definition_repository_details: self.definition_repository_details,
            readme_path: self.readme_path,
            _request_id: self._request_id,
        }
    }
}