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
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
// 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)]
pub struct UpdateLongTermPricingOutput {}
impl std::fmt::Debug for UpdateLongTermPricingOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("UpdateLongTermPricingOutput");
        formatter.finish()
    }
}
/// See [`UpdateLongTermPricingOutput`](crate::output::UpdateLongTermPricingOutput)
pub mod update_long_term_pricing_output {
    /// A builder for [`UpdateLongTermPricingOutput`](crate::output::UpdateLongTermPricingOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {}
    impl Builder {
        /// Consumes the builder and constructs a [`UpdateLongTermPricingOutput`](crate::output::UpdateLongTermPricingOutput)
        pub fn build(self) -> crate::output::UpdateLongTermPricingOutput {
            crate::output::UpdateLongTermPricingOutput {}
        }
    }
}
impl UpdateLongTermPricingOutput {
    /// Creates a new builder-style object to manufacture [`UpdateLongTermPricingOutput`](crate::output::UpdateLongTermPricingOutput)
    pub fn builder() -> crate::output::update_long_term_pricing_output::Builder {
        crate::output::update_long_term_pricing_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct UpdateJobShipmentStateOutput {}
impl std::fmt::Debug for UpdateJobShipmentStateOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("UpdateJobShipmentStateOutput");
        formatter.finish()
    }
}
/// See [`UpdateJobShipmentStateOutput`](crate::output::UpdateJobShipmentStateOutput)
pub mod update_job_shipment_state_output {
    /// A builder for [`UpdateJobShipmentStateOutput`](crate::output::UpdateJobShipmentStateOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {}
    impl Builder {
        /// Consumes the builder and constructs a [`UpdateJobShipmentStateOutput`](crate::output::UpdateJobShipmentStateOutput)
        pub fn build(self) -> crate::output::UpdateJobShipmentStateOutput {
            crate::output::UpdateJobShipmentStateOutput {}
        }
    }
}
impl UpdateJobShipmentStateOutput {
    /// Creates a new builder-style object to manufacture [`UpdateJobShipmentStateOutput`](crate::output::UpdateJobShipmentStateOutput)
    pub fn builder() -> crate::output::update_job_shipment_state_output::Builder {
        crate::output::update_job_shipment_state_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct UpdateJobOutput {}
impl std::fmt::Debug for UpdateJobOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("UpdateJobOutput");
        formatter.finish()
    }
}
/// See [`UpdateJobOutput`](crate::output::UpdateJobOutput)
pub mod update_job_output {
    /// A builder for [`UpdateJobOutput`](crate::output::UpdateJobOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {}
    impl Builder {
        /// Consumes the builder and constructs a [`UpdateJobOutput`](crate::output::UpdateJobOutput)
        pub fn build(self) -> crate::output::UpdateJobOutput {
            crate::output::UpdateJobOutput {}
        }
    }
}
impl UpdateJobOutput {
    /// Creates a new builder-style object to manufacture [`UpdateJobOutput`](crate::output::UpdateJobOutput)
    pub fn builder() -> crate::output::update_job_output::Builder {
        crate::output::update_job_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct UpdateClusterOutput {}
impl std::fmt::Debug for UpdateClusterOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("UpdateClusterOutput");
        formatter.finish()
    }
}
/// See [`UpdateClusterOutput`](crate::output::UpdateClusterOutput)
pub mod update_cluster_output {
    /// A builder for [`UpdateClusterOutput`](crate::output::UpdateClusterOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {}
    impl Builder {
        /// Consumes the builder and constructs a [`UpdateClusterOutput`](crate::output::UpdateClusterOutput)
        pub fn build(self) -> crate::output::UpdateClusterOutput {
            crate::output::UpdateClusterOutput {}
        }
    }
}
impl UpdateClusterOutput {
    /// Creates a new builder-style object to manufacture [`UpdateClusterOutput`](crate::output::UpdateClusterOutput)
    pub fn builder() -> crate::output::update_cluster_output::Builder {
        crate::output::update_cluster_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct ListLongTermPricingOutput {
    /// <p>Each <code>LongTermPricingEntry</code> object contains a status, ID, and other information
    /// about the <code>LongTermPricing</code> type. </p>
    pub long_term_pricing_entries:
        std::option::Option<std::vec::Vec<crate::model::LongTermPricingListEntry>>,
    /// <p>Because HTTP requests are stateless, this is the starting point for your next list of
    /// returned <code>ListLongTermPricing</code> list.</p>
    pub next_token: std::option::Option<std::string::String>,
}
impl ListLongTermPricingOutput {
    /// <p>Each <code>LongTermPricingEntry</code> object contains a status, ID, and other information
    /// about the <code>LongTermPricing</code> type. </p>
    pub fn long_term_pricing_entries(
        &self,
    ) -> std::option::Option<&[crate::model::LongTermPricingListEntry]> {
        self.long_term_pricing_entries.as_deref()
    }
    /// <p>Because HTTP requests are stateless, this is the starting point for your next list of
    /// returned <code>ListLongTermPricing</code> list.</p>
    pub fn next_token(&self) -> std::option::Option<&str> {
        self.next_token.as_deref()
    }
}
impl std::fmt::Debug for ListLongTermPricingOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("ListLongTermPricingOutput");
        formatter.field("long_term_pricing_entries", &self.long_term_pricing_entries);
        formatter.field("next_token", &self.next_token);
        formatter.finish()
    }
}
/// See [`ListLongTermPricingOutput`](crate::output::ListLongTermPricingOutput)
pub mod list_long_term_pricing_output {
    /// A builder for [`ListLongTermPricingOutput`](crate::output::ListLongTermPricingOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) long_term_pricing_entries:
            std::option::Option<std::vec::Vec<crate::model::LongTermPricingListEntry>>,
        pub(crate) next_token: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// Appends an item to `long_term_pricing_entries`.
        ///
        /// To override the contents of this collection use [`set_long_term_pricing_entries`](Self::set_long_term_pricing_entries).
        ///
        /// <p>Each <code>LongTermPricingEntry</code> object contains a status, ID, and other information
        /// about the <code>LongTermPricing</code> type. </p>
        pub fn long_term_pricing_entries(
            mut self,
            input: impl Into<crate::model::LongTermPricingListEntry>,
        ) -> Self {
            let mut v = self.long_term_pricing_entries.unwrap_or_default();
            v.push(input.into());
            self.long_term_pricing_entries = Some(v);
            self
        }
        /// <p>Each <code>LongTermPricingEntry</code> object contains a status, ID, and other information
        /// about the <code>LongTermPricing</code> type. </p>
        pub fn set_long_term_pricing_entries(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::LongTermPricingListEntry>>,
        ) -> Self {
            self.long_term_pricing_entries = input;
            self
        }
        /// <p>Because HTTP requests are stateless, this is the starting point for your next list of
        /// returned <code>ListLongTermPricing</code> list.</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.next_token = Some(input.into());
            self
        }
        /// <p>Because HTTP requests are stateless, this is the starting point for your next list of
        /// returned <code>ListLongTermPricing</code> list.</p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.next_token = input;
            self
        }
        /// Consumes the builder and constructs a [`ListLongTermPricingOutput`](crate::output::ListLongTermPricingOutput)
        pub fn build(self) -> crate::output::ListLongTermPricingOutput {
            crate::output::ListLongTermPricingOutput {
                long_term_pricing_entries: self.long_term_pricing_entries,
                next_token: self.next_token,
            }
        }
    }
}
impl ListLongTermPricingOutput {
    /// Creates a new builder-style object to manufacture [`ListLongTermPricingOutput`](crate::output::ListLongTermPricingOutput)
    pub fn builder() -> crate::output::list_long_term_pricing_output::Builder {
        crate::output::list_long_term_pricing_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct ListJobsOutput {
    /// <p>Each <code>JobListEntry</code> object contains a job's state, a job's ID, and a value
    /// that indicates whether the job is a job part, in the case of export jobs. </p>
    pub job_list_entries: std::option::Option<std::vec::Vec<crate::model::JobListEntry>>,
    /// <p>HTTP requests are stateless. If you use this automatically generated
    /// <code>NextToken</code> value in your next <code>ListJobs</code> call, your returned
    /// <code>JobListEntry</code> objects will start from this point in the array.</p>
    pub next_token: std::option::Option<std::string::String>,
}
impl ListJobsOutput {
    /// <p>Each <code>JobListEntry</code> object contains a job's state, a job's ID, and a value
    /// that indicates whether the job is a job part, in the case of export jobs. </p>
    pub fn job_list_entries(&self) -> std::option::Option<&[crate::model::JobListEntry]> {
        self.job_list_entries.as_deref()
    }
    /// <p>HTTP requests are stateless. If you use this automatically generated
    /// <code>NextToken</code> value in your next <code>ListJobs</code> call, your returned
    /// <code>JobListEntry</code> objects will start from this point in the array.</p>
    pub fn next_token(&self) -> std::option::Option<&str> {
        self.next_token.as_deref()
    }
}
impl std::fmt::Debug for ListJobsOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("ListJobsOutput");
        formatter.field("job_list_entries", &self.job_list_entries);
        formatter.field("next_token", &self.next_token);
        formatter.finish()
    }
}
/// See [`ListJobsOutput`](crate::output::ListJobsOutput)
pub mod list_jobs_output {
    /// A builder for [`ListJobsOutput`](crate::output::ListJobsOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) job_list_entries: std::option::Option<std::vec::Vec<crate::model::JobListEntry>>,
        pub(crate) next_token: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// Appends an item to `job_list_entries`.
        ///
        /// To override the contents of this collection use [`set_job_list_entries`](Self::set_job_list_entries).
        ///
        /// <p>Each <code>JobListEntry</code> object contains a job's state, a job's ID, and a value
        /// that indicates whether the job is a job part, in the case of export jobs. </p>
        pub fn job_list_entries(mut self, input: impl Into<crate::model::JobListEntry>) -> Self {
            let mut v = self.job_list_entries.unwrap_or_default();
            v.push(input.into());
            self.job_list_entries = Some(v);
            self
        }
        /// <p>Each <code>JobListEntry</code> object contains a job's state, a job's ID, and a value
        /// that indicates whether the job is a job part, in the case of export jobs. </p>
        pub fn set_job_list_entries(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::JobListEntry>>,
        ) -> Self {
            self.job_list_entries = input;
            self
        }
        /// <p>HTTP requests are stateless. If you use this automatically generated
        /// <code>NextToken</code> value in your next <code>ListJobs</code> call, your returned
        /// <code>JobListEntry</code> objects will start from this point in the array.</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.next_token = Some(input.into());
            self
        }
        /// <p>HTTP requests are stateless. If you use this automatically generated
        /// <code>NextToken</code> value in your next <code>ListJobs</code> call, your returned
        /// <code>JobListEntry</code> objects will start from this point in the array.</p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.next_token = input;
            self
        }
        /// Consumes the builder and constructs a [`ListJobsOutput`](crate::output::ListJobsOutput)
        pub fn build(self) -> crate::output::ListJobsOutput {
            crate::output::ListJobsOutput {
                job_list_entries: self.job_list_entries,
                next_token: self.next_token,
            }
        }
    }
}
impl ListJobsOutput {
    /// Creates a new builder-style object to manufacture [`ListJobsOutput`](crate::output::ListJobsOutput)
    pub fn builder() -> crate::output::list_jobs_output::Builder {
        crate::output::list_jobs_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct ListCompatibleImagesOutput {
    /// <p>A JSON-formatted object that describes a compatible AMI, including the ID and name for
    /// a Snow device AMI.</p>
    pub compatible_images: std::option::Option<std::vec::Vec<crate::model::CompatibleImage>>,
    /// <p>Because HTTP requests are stateless, this is the starting point for your next list of
    /// returned images.</p>
    pub next_token: std::option::Option<std::string::String>,
}
impl ListCompatibleImagesOutput {
    /// <p>A JSON-formatted object that describes a compatible AMI, including the ID and name for
    /// a Snow device AMI.</p>
    pub fn compatible_images(&self) -> std::option::Option<&[crate::model::CompatibleImage]> {
        self.compatible_images.as_deref()
    }
    /// <p>Because HTTP requests are stateless, this is the starting point for your next list of
    /// returned images.</p>
    pub fn next_token(&self) -> std::option::Option<&str> {
        self.next_token.as_deref()
    }
}
impl std::fmt::Debug for ListCompatibleImagesOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("ListCompatibleImagesOutput");
        formatter.field("compatible_images", &self.compatible_images);
        formatter.field("next_token", &self.next_token);
        formatter.finish()
    }
}
/// See [`ListCompatibleImagesOutput`](crate::output::ListCompatibleImagesOutput)
pub mod list_compatible_images_output {
    /// A builder for [`ListCompatibleImagesOutput`](crate::output::ListCompatibleImagesOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) compatible_images:
            std::option::Option<std::vec::Vec<crate::model::CompatibleImage>>,
        pub(crate) next_token: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// Appends an item to `compatible_images`.
        ///
        /// To override the contents of this collection use [`set_compatible_images`](Self::set_compatible_images).
        ///
        /// <p>A JSON-formatted object that describes a compatible AMI, including the ID and name for
        /// a Snow device AMI.</p>
        pub fn compatible_images(
            mut self,
            input: impl Into<crate::model::CompatibleImage>,
        ) -> Self {
            let mut v = self.compatible_images.unwrap_or_default();
            v.push(input.into());
            self.compatible_images = Some(v);
            self
        }
        /// <p>A JSON-formatted object that describes a compatible AMI, including the ID and name for
        /// a Snow device AMI.</p>
        pub fn set_compatible_images(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::CompatibleImage>>,
        ) -> Self {
            self.compatible_images = input;
            self
        }
        /// <p>Because HTTP requests are stateless, this is the starting point for your next list of
        /// returned images.</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.next_token = Some(input.into());
            self
        }
        /// <p>Because HTTP requests are stateless, this is the starting point for your next list of
        /// returned images.</p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.next_token = input;
            self
        }
        /// Consumes the builder and constructs a [`ListCompatibleImagesOutput`](crate::output::ListCompatibleImagesOutput)
        pub fn build(self) -> crate::output::ListCompatibleImagesOutput {
            crate::output::ListCompatibleImagesOutput {
                compatible_images: self.compatible_images,
                next_token: self.next_token,
            }
        }
    }
}
impl ListCompatibleImagesOutput {
    /// Creates a new builder-style object to manufacture [`ListCompatibleImagesOutput`](crate::output::ListCompatibleImagesOutput)
    pub fn builder() -> crate::output::list_compatible_images_output::Builder {
        crate::output::list_compatible_images_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct ListClustersOutput {
    /// <p>Each <code>ClusterListEntry</code> object contains a cluster's state, a cluster's ID,
    /// and other important status information.</p>
    pub cluster_list_entries: std::option::Option<std::vec::Vec<crate::model::ClusterListEntry>>,
    /// <p>HTTP requests are stateless. If you use the automatically generated
    /// <code>NextToken</code> value in your next <code>ClusterListEntry</code> call, your list of
    /// returned clusters will start from this point in the array.</p>
    pub next_token: std::option::Option<std::string::String>,
}
impl ListClustersOutput {
    /// <p>Each <code>ClusterListEntry</code> object contains a cluster's state, a cluster's ID,
    /// and other important status information.</p>
    pub fn cluster_list_entries(&self) -> std::option::Option<&[crate::model::ClusterListEntry]> {
        self.cluster_list_entries.as_deref()
    }
    /// <p>HTTP requests are stateless. If you use the automatically generated
    /// <code>NextToken</code> value in your next <code>ClusterListEntry</code> call, your list of
    /// returned clusters will start from this point in the array.</p>
    pub fn next_token(&self) -> std::option::Option<&str> {
        self.next_token.as_deref()
    }
}
impl std::fmt::Debug for ListClustersOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("ListClustersOutput");
        formatter.field("cluster_list_entries", &self.cluster_list_entries);
        formatter.field("next_token", &self.next_token);
        formatter.finish()
    }
}
/// See [`ListClustersOutput`](crate::output::ListClustersOutput)
pub mod list_clusters_output {
    /// A builder for [`ListClustersOutput`](crate::output::ListClustersOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) cluster_list_entries:
            std::option::Option<std::vec::Vec<crate::model::ClusterListEntry>>,
        pub(crate) next_token: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// Appends an item to `cluster_list_entries`.
        ///
        /// To override the contents of this collection use [`set_cluster_list_entries`](Self::set_cluster_list_entries).
        ///
        /// <p>Each <code>ClusterListEntry</code> object contains a cluster's state, a cluster's ID,
        /// and other important status information.</p>
        pub fn cluster_list_entries(
            mut self,
            input: impl Into<crate::model::ClusterListEntry>,
        ) -> Self {
            let mut v = self.cluster_list_entries.unwrap_or_default();
            v.push(input.into());
            self.cluster_list_entries = Some(v);
            self
        }
        /// <p>Each <code>ClusterListEntry</code> object contains a cluster's state, a cluster's ID,
        /// and other important status information.</p>
        pub fn set_cluster_list_entries(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::ClusterListEntry>>,
        ) -> Self {
            self.cluster_list_entries = input;
            self
        }
        /// <p>HTTP requests are stateless. If you use the automatically generated
        /// <code>NextToken</code> value in your next <code>ClusterListEntry</code> call, your list of
        /// returned clusters will start from this point in the array.</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.next_token = Some(input.into());
            self
        }
        /// <p>HTTP requests are stateless. If you use the automatically generated
        /// <code>NextToken</code> value in your next <code>ClusterListEntry</code> call, your list of
        /// returned clusters will start from this point in the array.</p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.next_token = input;
            self
        }
        /// Consumes the builder and constructs a [`ListClustersOutput`](crate::output::ListClustersOutput)
        pub fn build(self) -> crate::output::ListClustersOutput {
            crate::output::ListClustersOutput {
                cluster_list_entries: self.cluster_list_entries,
                next_token: self.next_token,
            }
        }
    }
}
impl ListClustersOutput {
    /// Creates a new builder-style object to manufacture [`ListClustersOutput`](crate::output::ListClustersOutput)
    pub fn builder() -> crate::output::list_clusters_output::Builder {
        crate::output::list_clusters_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct ListClusterJobsOutput {
    /// <p>Each <code>JobListEntry</code> object contains a job's state, a job's ID, and a value
    /// that indicates whether the job is a job part, in the case of export jobs. </p>
    pub job_list_entries: std::option::Option<std::vec::Vec<crate::model::JobListEntry>>,
    /// <p>HTTP requests are stateless. If you use the automatically generated
    /// <code>NextToken</code> value in your next <code>ListClusterJobsResult</code> call, your list
    /// of returned jobs will start from this point in the array.</p>
    pub next_token: std::option::Option<std::string::String>,
}
impl ListClusterJobsOutput {
    /// <p>Each <code>JobListEntry</code> object contains a job's state, a job's ID, and a value
    /// that indicates whether the job is a job part, in the case of export jobs. </p>
    pub fn job_list_entries(&self) -> std::option::Option<&[crate::model::JobListEntry]> {
        self.job_list_entries.as_deref()
    }
    /// <p>HTTP requests are stateless. If you use the automatically generated
    /// <code>NextToken</code> value in your next <code>ListClusterJobsResult</code> call, your list
    /// of returned jobs will start from this point in the array.</p>
    pub fn next_token(&self) -> std::option::Option<&str> {
        self.next_token.as_deref()
    }
}
impl std::fmt::Debug for ListClusterJobsOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("ListClusterJobsOutput");
        formatter.field("job_list_entries", &self.job_list_entries);
        formatter.field("next_token", &self.next_token);
        formatter.finish()
    }
}
/// See [`ListClusterJobsOutput`](crate::output::ListClusterJobsOutput)
pub mod list_cluster_jobs_output {
    /// A builder for [`ListClusterJobsOutput`](crate::output::ListClusterJobsOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) job_list_entries: std::option::Option<std::vec::Vec<crate::model::JobListEntry>>,
        pub(crate) next_token: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// Appends an item to `job_list_entries`.
        ///
        /// To override the contents of this collection use [`set_job_list_entries`](Self::set_job_list_entries).
        ///
        /// <p>Each <code>JobListEntry</code> object contains a job's state, a job's ID, and a value
        /// that indicates whether the job is a job part, in the case of export jobs. </p>
        pub fn job_list_entries(mut self, input: impl Into<crate::model::JobListEntry>) -> Self {
            let mut v = self.job_list_entries.unwrap_or_default();
            v.push(input.into());
            self.job_list_entries = Some(v);
            self
        }
        /// <p>Each <code>JobListEntry</code> object contains a job's state, a job's ID, and a value
        /// that indicates whether the job is a job part, in the case of export jobs. </p>
        pub fn set_job_list_entries(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::JobListEntry>>,
        ) -> Self {
            self.job_list_entries = input;
            self
        }
        /// <p>HTTP requests are stateless. If you use the automatically generated
        /// <code>NextToken</code> value in your next <code>ListClusterJobsResult</code> call, your list
        /// of returned jobs will start from this point in the array.</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.next_token = Some(input.into());
            self
        }
        /// <p>HTTP requests are stateless. If you use the automatically generated
        /// <code>NextToken</code> value in your next <code>ListClusterJobsResult</code> call, your list
        /// of returned jobs will start from this point in the array.</p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.next_token = input;
            self
        }
        /// Consumes the builder and constructs a [`ListClusterJobsOutput`](crate::output::ListClusterJobsOutput)
        pub fn build(self) -> crate::output::ListClusterJobsOutput {
            crate::output::ListClusterJobsOutput {
                job_list_entries: self.job_list_entries,
                next_token: self.next_token,
            }
        }
    }
}
impl ListClusterJobsOutput {
    /// Creates a new builder-style object to manufacture [`ListClusterJobsOutput`](crate::output::ListClusterJobsOutput)
    pub fn builder() -> crate::output::list_cluster_jobs_output::Builder {
        crate::output::list_cluster_jobs_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct GetSoftwareUpdatesOutput {
    /// <p>The Amazon S3 presigned URL for the update file associated with the specified
    /// <code>JobId</code> value. The software update will be available for 2 days after this request is made.
    /// To access an update after the 2 days have passed, you'll have to make another call to <code>GetSoftwareUpdates</code>.</p>
    pub updates_uri: std::option::Option<std::string::String>,
}
impl GetSoftwareUpdatesOutput {
    /// <p>The Amazon S3 presigned URL for the update file associated with the specified
    /// <code>JobId</code> value. The software update will be available for 2 days after this request is made.
    /// To access an update after the 2 days have passed, you'll have to make another call to <code>GetSoftwareUpdates</code>.</p>
    pub fn updates_uri(&self) -> std::option::Option<&str> {
        self.updates_uri.as_deref()
    }
}
impl std::fmt::Debug for GetSoftwareUpdatesOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("GetSoftwareUpdatesOutput");
        formatter.field("updates_uri", &self.updates_uri);
        formatter.finish()
    }
}
/// See [`GetSoftwareUpdatesOutput`](crate::output::GetSoftwareUpdatesOutput)
pub mod get_software_updates_output {
    /// A builder for [`GetSoftwareUpdatesOutput`](crate::output::GetSoftwareUpdatesOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) updates_uri: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// <p>The Amazon S3 presigned URL for the update file associated with the specified
        /// <code>JobId</code> value. The software update will be available for 2 days after this request is made.
        /// To access an update after the 2 days have passed, you'll have to make another call to <code>GetSoftwareUpdates</code>.</p>
        pub fn updates_uri(mut self, input: impl Into<std::string::String>) -> Self {
            self.updates_uri = Some(input.into());
            self
        }
        /// <p>The Amazon S3 presigned URL for the update file associated with the specified
        /// <code>JobId</code> value. The software update will be available for 2 days after this request is made.
        /// To access an update after the 2 days have passed, you'll have to make another call to <code>GetSoftwareUpdates</code>.</p>
        pub fn set_updates_uri(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.updates_uri = input;
            self
        }
        /// Consumes the builder and constructs a [`GetSoftwareUpdatesOutput`](crate::output::GetSoftwareUpdatesOutput)
        pub fn build(self) -> crate::output::GetSoftwareUpdatesOutput {
            crate::output::GetSoftwareUpdatesOutput {
                updates_uri: self.updates_uri,
            }
        }
    }
}
impl GetSoftwareUpdatesOutput {
    /// Creates a new builder-style object to manufacture [`GetSoftwareUpdatesOutput`](crate::output::GetSoftwareUpdatesOutput)
    pub fn builder() -> crate::output::get_software_updates_output::Builder {
        crate::output::get_software_updates_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct GetSnowballUsageOutput {
    /// <p>The service limit for number of Snow devices this account can have at once. The default
    /// service limit is 1 (one).</p>
    pub snowball_limit: std::option::Option<i32>,
    /// <p>The number of Snow devices that this account is currently using.</p>
    pub snowballs_in_use: std::option::Option<i32>,
}
impl GetSnowballUsageOutput {
    /// <p>The service limit for number of Snow devices this account can have at once. The default
    /// service limit is 1 (one).</p>
    pub fn snowball_limit(&self) -> std::option::Option<i32> {
        self.snowball_limit
    }
    /// <p>The number of Snow devices that this account is currently using.</p>
    pub fn snowballs_in_use(&self) -> std::option::Option<i32> {
        self.snowballs_in_use
    }
}
impl std::fmt::Debug for GetSnowballUsageOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("GetSnowballUsageOutput");
        formatter.field("snowball_limit", &self.snowball_limit);
        formatter.field("snowballs_in_use", &self.snowballs_in_use);
        formatter.finish()
    }
}
/// See [`GetSnowballUsageOutput`](crate::output::GetSnowballUsageOutput)
pub mod get_snowball_usage_output {
    /// A builder for [`GetSnowballUsageOutput`](crate::output::GetSnowballUsageOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) snowball_limit: std::option::Option<i32>,
        pub(crate) snowballs_in_use: std::option::Option<i32>,
    }
    impl Builder {
        /// <p>The service limit for number of Snow devices this account can have at once. The default
        /// service limit is 1 (one).</p>
        pub fn snowball_limit(mut self, input: i32) -> Self {
            self.snowball_limit = Some(input);
            self
        }
        /// <p>The service limit for number of Snow devices this account can have at once. The default
        /// service limit is 1 (one).</p>
        pub fn set_snowball_limit(mut self, input: std::option::Option<i32>) -> Self {
            self.snowball_limit = input;
            self
        }
        /// <p>The number of Snow devices that this account is currently using.</p>
        pub fn snowballs_in_use(mut self, input: i32) -> Self {
            self.snowballs_in_use = Some(input);
            self
        }
        /// <p>The number of Snow devices that this account is currently using.</p>
        pub fn set_snowballs_in_use(mut self, input: std::option::Option<i32>) -> Self {
            self.snowballs_in_use = input;
            self
        }
        /// Consumes the builder and constructs a [`GetSnowballUsageOutput`](crate::output::GetSnowballUsageOutput)
        pub fn build(self) -> crate::output::GetSnowballUsageOutput {
            crate::output::GetSnowballUsageOutput {
                snowball_limit: self.snowball_limit,
                snowballs_in_use: self.snowballs_in_use,
            }
        }
    }
}
impl GetSnowballUsageOutput {
    /// Creates a new builder-style object to manufacture [`GetSnowballUsageOutput`](crate::output::GetSnowballUsageOutput)
    pub fn builder() -> crate::output::get_snowball_usage_output::Builder {
        crate::output::get_snowball_usage_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct GetJobUnlockCodeOutput {
    /// <p>The <code>UnlockCode</code> value for the specified job. The <code>UnlockCode</code>
    /// value can be accessed for up to 360 days after the job has been created.</p>
    pub unlock_code: std::option::Option<std::string::String>,
}
impl GetJobUnlockCodeOutput {
    /// <p>The <code>UnlockCode</code> value for the specified job. The <code>UnlockCode</code>
    /// value can be accessed for up to 360 days after the job has been created.</p>
    pub fn unlock_code(&self) -> std::option::Option<&str> {
        self.unlock_code.as_deref()
    }
}
impl std::fmt::Debug for GetJobUnlockCodeOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("GetJobUnlockCodeOutput");
        formatter.field("unlock_code", &self.unlock_code);
        formatter.finish()
    }
}
/// See [`GetJobUnlockCodeOutput`](crate::output::GetJobUnlockCodeOutput)
pub mod get_job_unlock_code_output {
    /// A builder for [`GetJobUnlockCodeOutput`](crate::output::GetJobUnlockCodeOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) unlock_code: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// <p>The <code>UnlockCode</code> value for the specified job. The <code>UnlockCode</code>
        /// value can be accessed for up to 360 days after the job has been created.</p>
        pub fn unlock_code(mut self, input: impl Into<std::string::String>) -> Self {
            self.unlock_code = Some(input.into());
            self
        }
        /// <p>The <code>UnlockCode</code> value for the specified job. The <code>UnlockCode</code>
        /// value can be accessed for up to 360 days after the job has been created.</p>
        pub fn set_unlock_code(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.unlock_code = input;
            self
        }
        /// Consumes the builder and constructs a [`GetJobUnlockCodeOutput`](crate::output::GetJobUnlockCodeOutput)
        pub fn build(self) -> crate::output::GetJobUnlockCodeOutput {
            crate::output::GetJobUnlockCodeOutput {
                unlock_code: self.unlock_code,
            }
        }
    }
}
impl GetJobUnlockCodeOutput {
    /// Creates a new builder-style object to manufacture [`GetJobUnlockCodeOutput`](crate::output::GetJobUnlockCodeOutput)
    pub fn builder() -> crate::output::get_job_unlock_code_output::Builder {
        crate::output::get_job_unlock_code_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct GetJobManifestOutput {
    /// <p>The Amazon S3 presigned URL for the manifest file associated with the specified
    /// <code>JobId</code> value.</p>
    pub manifest_uri: std::option::Option<std::string::String>,
}
impl GetJobManifestOutput {
    /// <p>The Amazon S3 presigned URL for the manifest file associated with the specified
    /// <code>JobId</code> value.</p>
    pub fn manifest_uri(&self) -> std::option::Option<&str> {
        self.manifest_uri.as_deref()
    }
}
impl std::fmt::Debug for GetJobManifestOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("GetJobManifestOutput");
        formatter.field("manifest_uri", &self.manifest_uri);
        formatter.finish()
    }
}
/// See [`GetJobManifestOutput`](crate::output::GetJobManifestOutput)
pub mod get_job_manifest_output {
    /// A builder for [`GetJobManifestOutput`](crate::output::GetJobManifestOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) manifest_uri: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// <p>The Amazon S3 presigned URL for the manifest file associated with the specified
        /// <code>JobId</code> value.</p>
        pub fn manifest_uri(mut self, input: impl Into<std::string::String>) -> Self {
            self.manifest_uri = Some(input.into());
            self
        }
        /// <p>The Amazon S3 presigned URL for the manifest file associated with the specified
        /// <code>JobId</code> value.</p>
        pub fn set_manifest_uri(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.manifest_uri = input;
            self
        }
        /// Consumes the builder and constructs a [`GetJobManifestOutput`](crate::output::GetJobManifestOutput)
        pub fn build(self) -> crate::output::GetJobManifestOutput {
            crate::output::GetJobManifestOutput {
                manifest_uri: self.manifest_uri,
            }
        }
    }
}
impl GetJobManifestOutput {
    /// Creates a new builder-style object to manufacture [`GetJobManifestOutput`](crate::output::GetJobManifestOutput)
    pub fn builder() -> crate::output::get_job_manifest_output::Builder {
        crate::output::get_job_manifest_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct DescribeReturnShippingLabelOutput {
    /// <p>The status information of the task on a Snow device that is being returned to AWS.</p>
    pub status: std::option::Option<crate::model::ShippingLabelStatus>,
    /// <p>The expiration date of the current return shipping label.</p>
    pub expiration_date: std::option::Option<aws_smithy_types::Instant>,
}
impl DescribeReturnShippingLabelOutput {
    /// <p>The status information of the task on a Snow device that is being returned to AWS.</p>
    pub fn status(&self) -> std::option::Option<&crate::model::ShippingLabelStatus> {
        self.status.as_ref()
    }
    /// <p>The expiration date of the current return shipping label.</p>
    pub fn expiration_date(&self) -> std::option::Option<&aws_smithy_types::Instant> {
        self.expiration_date.as_ref()
    }
}
impl std::fmt::Debug for DescribeReturnShippingLabelOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("DescribeReturnShippingLabelOutput");
        formatter.field("status", &self.status);
        formatter.field("expiration_date", &self.expiration_date);
        formatter.finish()
    }
}
/// See [`DescribeReturnShippingLabelOutput`](crate::output::DescribeReturnShippingLabelOutput)
pub mod describe_return_shipping_label_output {
    /// A builder for [`DescribeReturnShippingLabelOutput`](crate::output::DescribeReturnShippingLabelOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) status: std::option::Option<crate::model::ShippingLabelStatus>,
        pub(crate) expiration_date: std::option::Option<aws_smithy_types::Instant>,
    }
    impl Builder {
        /// <p>The status information of the task on a Snow device that is being returned to AWS.</p>
        pub fn status(mut self, input: crate::model::ShippingLabelStatus) -> Self {
            self.status = Some(input);
            self
        }
        /// <p>The status information of the task on a Snow device that is being returned to AWS.</p>
        pub fn set_status(
            mut self,
            input: std::option::Option<crate::model::ShippingLabelStatus>,
        ) -> Self {
            self.status = input;
            self
        }
        /// <p>The expiration date of the current return shipping label.</p>
        pub fn expiration_date(mut self, input: aws_smithy_types::Instant) -> Self {
            self.expiration_date = Some(input);
            self
        }
        /// <p>The expiration date of the current return shipping label.</p>
        pub fn set_expiration_date(
            mut self,
            input: std::option::Option<aws_smithy_types::Instant>,
        ) -> Self {
            self.expiration_date = input;
            self
        }
        /// Consumes the builder and constructs a [`DescribeReturnShippingLabelOutput`](crate::output::DescribeReturnShippingLabelOutput)
        pub fn build(self) -> crate::output::DescribeReturnShippingLabelOutput {
            crate::output::DescribeReturnShippingLabelOutput {
                status: self.status,
                expiration_date: self.expiration_date,
            }
        }
    }
}
impl DescribeReturnShippingLabelOutput {
    /// Creates a new builder-style object to manufacture [`DescribeReturnShippingLabelOutput`](crate::output::DescribeReturnShippingLabelOutput)
    pub fn builder() -> crate::output::describe_return_shipping_label_output::Builder {
        crate::output::describe_return_shipping_label_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct DescribeJobOutput {
    /// <p>Information about a specific job, including shipping information, job status, and other
    /// important metadata.</p>
    pub job_metadata: std::option::Option<crate::model::JobMetadata>,
    /// <p>Information about a specific job part (in the case of an export job), including
    /// shipping information, job status, and other important metadata.</p>
    pub sub_job_metadata: std::option::Option<std::vec::Vec<crate::model::JobMetadata>>,
}
impl DescribeJobOutput {
    /// <p>Information about a specific job, including shipping information, job status, and other
    /// important metadata.</p>
    pub fn job_metadata(&self) -> std::option::Option<&crate::model::JobMetadata> {
        self.job_metadata.as_ref()
    }
    /// <p>Information about a specific job part (in the case of an export job), including
    /// shipping information, job status, and other important metadata.</p>
    pub fn sub_job_metadata(&self) -> std::option::Option<&[crate::model::JobMetadata]> {
        self.sub_job_metadata.as_deref()
    }
}
impl std::fmt::Debug for DescribeJobOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("DescribeJobOutput");
        formatter.field("job_metadata", &self.job_metadata);
        formatter.field("sub_job_metadata", &self.sub_job_metadata);
        formatter.finish()
    }
}
/// See [`DescribeJobOutput`](crate::output::DescribeJobOutput)
pub mod describe_job_output {
    /// A builder for [`DescribeJobOutput`](crate::output::DescribeJobOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) job_metadata: std::option::Option<crate::model::JobMetadata>,
        pub(crate) sub_job_metadata: std::option::Option<std::vec::Vec<crate::model::JobMetadata>>,
    }
    impl Builder {
        /// <p>Information about a specific job, including shipping information, job status, and other
        /// important metadata.</p>
        pub fn job_metadata(mut self, input: crate::model::JobMetadata) -> Self {
            self.job_metadata = Some(input);
            self
        }
        /// <p>Information about a specific job, including shipping information, job status, and other
        /// important metadata.</p>
        pub fn set_job_metadata(
            mut self,
            input: std::option::Option<crate::model::JobMetadata>,
        ) -> Self {
            self.job_metadata = input;
            self
        }
        /// Appends an item to `sub_job_metadata`.
        ///
        /// To override the contents of this collection use [`set_sub_job_metadata`](Self::set_sub_job_metadata).
        ///
        /// <p>Information about a specific job part (in the case of an export job), including
        /// shipping information, job status, and other important metadata.</p>
        pub fn sub_job_metadata(mut self, input: impl Into<crate::model::JobMetadata>) -> Self {
            let mut v = self.sub_job_metadata.unwrap_or_default();
            v.push(input.into());
            self.sub_job_metadata = Some(v);
            self
        }
        /// <p>Information about a specific job part (in the case of an export job), including
        /// shipping information, job status, and other important metadata.</p>
        pub fn set_sub_job_metadata(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::JobMetadata>>,
        ) -> Self {
            self.sub_job_metadata = input;
            self
        }
        /// Consumes the builder and constructs a [`DescribeJobOutput`](crate::output::DescribeJobOutput)
        pub fn build(self) -> crate::output::DescribeJobOutput {
            crate::output::DescribeJobOutput {
                job_metadata: self.job_metadata,
                sub_job_metadata: self.sub_job_metadata,
            }
        }
    }
}
impl DescribeJobOutput {
    /// Creates a new builder-style object to manufacture [`DescribeJobOutput`](crate::output::DescribeJobOutput)
    pub fn builder() -> crate::output::describe_job_output::Builder {
        crate::output::describe_job_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct DescribeClusterOutput {
    /// <p>Information about a specific cluster, including shipping information, cluster status,
    /// and other important metadata.</p>
    pub cluster_metadata: std::option::Option<crate::model::ClusterMetadata>,
}
impl DescribeClusterOutput {
    /// <p>Information about a specific cluster, including shipping information, cluster status,
    /// and other important metadata.</p>
    pub fn cluster_metadata(&self) -> std::option::Option<&crate::model::ClusterMetadata> {
        self.cluster_metadata.as_ref()
    }
}
impl std::fmt::Debug for DescribeClusterOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("DescribeClusterOutput");
        formatter.field("cluster_metadata", &self.cluster_metadata);
        formatter.finish()
    }
}
/// See [`DescribeClusterOutput`](crate::output::DescribeClusterOutput)
pub mod describe_cluster_output {
    /// A builder for [`DescribeClusterOutput`](crate::output::DescribeClusterOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) cluster_metadata: std::option::Option<crate::model::ClusterMetadata>,
    }
    impl Builder {
        /// <p>Information about a specific cluster, including shipping information, cluster status,
        /// and other important metadata.</p>
        pub fn cluster_metadata(mut self, input: crate::model::ClusterMetadata) -> Self {
            self.cluster_metadata = Some(input);
            self
        }
        /// <p>Information about a specific cluster, including shipping information, cluster status,
        /// and other important metadata.</p>
        pub fn set_cluster_metadata(
            mut self,
            input: std::option::Option<crate::model::ClusterMetadata>,
        ) -> Self {
            self.cluster_metadata = input;
            self
        }
        /// Consumes the builder and constructs a [`DescribeClusterOutput`](crate::output::DescribeClusterOutput)
        pub fn build(self) -> crate::output::DescribeClusterOutput {
            crate::output::DescribeClusterOutput {
                cluster_metadata: self.cluster_metadata,
            }
        }
    }
}
impl DescribeClusterOutput {
    /// Creates a new builder-style object to manufacture [`DescribeClusterOutput`](crate::output::DescribeClusterOutput)
    pub fn builder() -> crate::output::describe_cluster_output::Builder {
        crate::output::describe_cluster_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct DescribeAddressesOutput {
    /// <p>The Snow device shipping addresses that were created for this account.</p>
    pub addresses: std::option::Option<std::vec::Vec<crate::model::Address>>,
    /// <p>HTTP requests are stateless. If you use the automatically generated
    /// <code>NextToken</code> value in your next <code>DescribeAddresses</code> call, your list of
    /// returned addresses will start from this point in the array.</p>
    pub next_token: std::option::Option<std::string::String>,
}
impl DescribeAddressesOutput {
    /// <p>The Snow device shipping addresses that were created for this account.</p>
    pub fn addresses(&self) -> std::option::Option<&[crate::model::Address]> {
        self.addresses.as_deref()
    }
    /// <p>HTTP requests are stateless. If you use the automatically generated
    /// <code>NextToken</code> value in your next <code>DescribeAddresses</code> call, your list of
    /// returned addresses will start from this point in the array.</p>
    pub fn next_token(&self) -> std::option::Option<&str> {
        self.next_token.as_deref()
    }
}
impl std::fmt::Debug for DescribeAddressesOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("DescribeAddressesOutput");
        formatter.field("addresses", &self.addresses);
        formatter.field("next_token", &self.next_token);
        formatter.finish()
    }
}
/// See [`DescribeAddressesOutput`](crate::output::DescribeAddressesOutput)
pub mod describe_addresses_output {
    /// A builder for [`DescribeAddressesOutput`](crate::output::DescribeAddressesOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) addresses: std::option::Option<std::vec::Vec<crate::model::Address>>,
        pub(crate) next_token: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// Appends an item to `addresses`.
        ///
        /// To override the contents of this collection use [`set_addresses`](Self::set_addresses).
        ///
        /// <p>The Snow device shipping addresses that were created for this account.</p>
        pub fn addresses(mut self, input: impl Into<crate::model::Address>) -> Self {
            let mut v = self.addresses.unwrap_or_default();
            v.push(input.into());
            self.addresses = Some(v);
            self
        }
        /// <p>The Snow device shipping addresses that were created for this account.</p>
        pub fn set_addresses(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::Address>>,
        ) -> Self {
            self.addresses = input;
            self
        }
        /// <p>HTTP requests are stateless. If you use the automatically generated
        /// <code>NextToken</code> value in your next <code>DescribeAddresses</code> call, your list of
        /// returned addresses will start from this point in the array.</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.next_token = Some(input.into());
            self
        }
        /// <p>HTTP requests are stateless. If you use the automatically generated
        /// <code>NextToken</code> value in your next <code>DescribeAddresses</code> call, your list of
        /// returned addresses will start from this point in the array.</p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.next_token = input;
            self
        }
        /// Consumes the builder and constructs a [`DescribeAddressesOutput`](crate::output::DescribeAddressesOutput)
        pub fn build(self) -> crate::output::DescribeAddressesOutput {
            crate::output::DescribeAddressesOutput {
                addresses: self.addresses,
                next_token: self.next_token,
            }
        }
    }
}
impl DescribeAddressesOutput {
    /// Creates a new builder-style object to manufacture [`DescribeAddressesOutput`](crate::output::DescribeAddressesOutput)
    pub fn builder() -> crate::output::describe_addresses_output::Builder {
        crate::output::describe_addresses_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct DescribeAddressOutput {
    /// <p>The address that you want the Snow device(s) associated with a specific job to
    /// be shipped to.</p>
    pub address: std::option::Option<crate::model::Address>,
}
impl DescribeAddressOutput {
    /// <p>The address that you want the Snow device(s) associated with a specific job to
    /// be shipped to.</p>
    pub fn address(&self) -> std::option::Option<&crate::model::Address> {
        self.address.as_ref()
    }
}
impl std::fmt::Debug for DescribeAddressOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("DescribeAddressOutput");
        formatter.field("address", &self.address);
        formatter.finish()
    }
}
/// See [`DescribeAddressOutput`](crate::output::DescribeAddressOutput)
pub mod describe_address_output {
    /// A builder for [`DescribeAddressOutput`](crate::output::DescribeAddressOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) address: std::option::Option<crate::model::Address>,
    }
    impl Builder {
        /// <p>The address that you want the Snow device(s) associated with a specific job to
        /// be shipped to.</p>
        pub fn address(mut self, input: crate::model::Address) -> Self {
            self.address = Some(input);
            self
        }
        /// <p>The address that you want the Snow device(s) associated with a specific job to
        /// be shipped to.</p>
        pub fn set_address(mut self, input: std::option::Option<crate::model::Address>) -> Self {
            self.address = input;
            self
        }
        /// Consumes the builder and constructs a [`DescribeAddressOutput`](crate::output::DescribeAddressOutput)
        pub fn build(self) -> crate::output::DescribeAddressOutput {
            crate::output::DescribeAddressOutput {
                address: self.address,
            }
        }
    }
}
impl DescribeAddressOutput {
    /// Creates a new builder-style object to manufacture [`DescribeAddressOutput`](crate::output::DescribeAddressOutput)
    pub fn builder() -> crate::output::describe_address_output::Builder {
        crate::output::describe_address_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct CreateReturnShippingLabelOutput {
    /// <p>The status information of the task on a Snow device that is being returned to AWS.</p>
    pub status: std::option::Option<crate::model::ShippingLabelStatus>,
}
impl CreateReturnShippingLabelOutput {
    /// <p>The status information of the task on a Snow device that is being returned to AWS.</p>
    pub fn status(&self) -> std::option::Option<&crate::model::ShippingLabelStatus> {
        self.status.as_ref()
    }
}
impl std::fmt::Debug for CreateReturnShippingLabelOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("CreateReturnShippingLabelOutput");
        formatter.field("status", &self.status);
        formatter.finish()
    }
}
/// See [`CreateReturnShippingLabelOutput`](crate::output::CreateReturnShippingLabelOutput)
pub mod create_return_shipping_label_output {
    /// A builder for [`CreateReturnShippingLabelOutput`](crate::output::CreateReturnShippingLabelOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) status: std::option::Option<crate::model::ShippingLabelStatus>,
    }
    impl Builder {
        /// <p>The status information of the task on a Snow device that is being returned to AWS.</p>
        pub fn status(mut self, input: crate::model::ShippingLabelStatus) -> Self {
            self.status = Some(input);
            self
        }
        /// <p>The status information of the task on a Snow device that is being returned to AWS.</p>
        pub fn set_status(
            mut self,
            input: std::option::Option<crate::model::ShippingLabelStatus>,
        ) -> Self {
            self.status = input;
            self
        }
        /// Consumes the builder and constructs a [`CreateReturnShippingLabelOutput`](crate::output::CreateReturnShippingLabelOutput)
        pub fn build(self) -> crate::output::CreateReturnShippingLabelOutput {
            crate::output::CreateReturnShippingLabelOutput {
                status: self.status,
            }
        }
    }
}
impl CreateReturnShippingLabelOutput {
    /// Creates a new builder-style object to manufacture [`CreateReturnShippingLabelOutput`](crate::output::CreateReturnShippingLabelOutput)
    pub fn builder() -> crate::output::create_return_shipping_label_output::Builder {
        crate::output::create_return_shipping_label_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct CreateLongTermPricingOutput {
    /// <p>The ID of the long-term pricing type for the device.</p>
    pub long_term_pricing_id: std::option::Option<std::string::String>,
}
impl CreateLongTermPricingOutput {
    /// <p>The ID of the long-term pricing type for the device.</p>
    pub fn long_term_pricing_id(&self) -> std::option::Option<&str> {
        self.long_term_pricing_id.as_deref()
    }
}
impl std::fmt::Debug for CreateLongTermPricingOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("CreateLongTermPricingOutput");
        formatter.field("long_term_pricing_id", &self.long_term_pricing_id);
        formatter.finish()
    }
}
/// See [`CreateLongTermPricingOutput`](crate::output::CreateLongTermPricingOutput)
pub mod create_long_term_pricing_output {
    /// A builder for [`CreateLongTermPricingOutput`](crate::output::CreateLongTermPricingOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) long_term_pricing_id: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// <p>The ID of the long-term pricing type for the device.</p>
        pub fn long_term_pricing_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.long_term_pricing_id = Some(input.into());
            self
        }
        /// <p>The ID of the long-term pricing type for the device.</p>
        pub fn set_long_term_pricing_id(
            mut self,
            input: std::option::Option<std::string::String>,
        ) -> Self {
            self.long_term_pricing_id = input;
            self
        }
        /// Consumes the builder and constructs a [`CreateLongTermPricingOutput`](crate::output::CreateLongTermPricingOutput)
        pub fn build(self) -> crate::output::CreateLongTermPricingOutput {
            crate::output::CreateLongTermPricingOutput {
                long_term_pricing_id: self.long_term_pricing_id,
            }
        }
    }
}
impl CreateLongTermPricingOutput {
    /// Creates a new builder-style object to manufacture [`CreateLongTermPricingOutput`](crate::output::CreateLongTermPricingOutput)
    pub fn builder() -> crate::output::create_long_term_pricing_output::Builder {
        crate::output::create_long_term_pricing_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct CreateJobOutput {
    /// <p>The automatically generated ID for a job, for example
    /// <code>JID123e4567-e89b-12d3-a456-426655440000</code>.</p>
    pub job_id: std::option::Option<std::string::String>,
}
impl CreateJobOutput {
    /// <p>The automatically generated ID for a job, for example
    /// <code>JID123e4567-e89b-12d3-a456-426655440000</code>.</p>
    pub fn job_id(&self) -> std::option::Option<&str> {
        self.job_id.as_deref()
    }
}
impl std::fmt::Debug for CreateJobOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("CreateJobOutput");
        formatter.field("job_id", &self.job_id);
        formatter.finish()
    }
}
/// See [`CreateJobOutput`](crate::output::CreateJobOutput)
pub mod create_job_output {
    /// A builder for [`CreateJobOutput`](crate::output::CreateJobOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) job_id: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// <p>The automatically generated ID for a job, for example
        /// <code>JID123e4567-e89b-12d3-a456-426655440000</code>.</p>
        pub fn job_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.job_id = Some(input.into());
            self
        }
        /// <p>The automatically generated ID for a job, for example
        /// <code>JID123e4567-e89b-12d3-a456-426655440000</code>.</p>
        pub fn set_job_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.job_id = input;
            self
        }
        /// Consumes the builder and constructs a [`CreateJobOutput`](crate::output::CreateJobOutput)
        pub fn build(self) -> crate::output::CreateJobOutput {
            crate::output::CreateJobOutput {
                job_id: self.job_id,
            }
        }
    }
}
impl CreateJobOutput {
    /// Creates a new builder-style object to manufacture [`CreateJobOutput`](crate::output::CreateJobOutput)
    pub fn builder() -> crate::output::create_job_output::Builder {
        crate::output::create_job_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct CreateClusterOutput {
    /// <p>The automatically generated ID for a cluster.</p>
    pub cluster_id: std::option::Option<std::string::String>,
}
impl CreateClusterOutput {
    /// <p>The automatically generated ID for a cluster.</p>
    pub fn cluster_id(&self) -> std::option::Option<&str> {
        self.cluster_id.as_deref()
    }
}
impl std::fmt::Debug for CreateClusterOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("CreateClusterOutput");
        formatter.field("cluster_id", &self.cluster_id);
        formatter.finish()
    }
}
/// See [`CreateClusterOutput`](crate::output::CreateClusterOutput)
pub mod create_cluster_output {
    /// A builder for [`CreateClusterOutput`](crate::output::CreateClusterOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) cluster_id: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// <p>The automatically generated ID for a cluster.</p>
        pub fn cluster_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.cluster_id = Some(input.into());
            self
        }
        /// <p>The automatically generated ID for a cluster.</p>
        pub fn set_cluster_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.cluster_id = input;
            self
        }
        /// Consumes the builder and constructs a [`CreateClusterOutput`](crate::output::CreateClusterOutput)
        pub fn build(self) -> crate::output::CreateClusterOutput {
            crate::output::CreateClusterOutput {
                cluster_id: self.cluster_id,
            }
        }
    }
}
impl CreateClusterOutput {
    /// Creates a new builder-style object to manufacture [`CreateClusterOutput`](crate::output::CreateClusterOutput)
    pub fn builder() -> crate::output::create_cluster_output::Builder {
        crate::output::create_cluster_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct CreateAddressOutput {
    /// <p>The automatically generated ID for a specific address. You'll use this ID when you
    /// create a job to specify which address you want the Snow device for that job shipped to.</p>
    pub address_id: std::option::Option<std::string::String>,
}
impl CreateAddressOutput {
    /// <p>The automatically generated ID for a specific address. You'll use this ID when you
    /// create a job to specify which address you want the Snow device for that job shipped to.</p>
    pub fn address_id(&self) -> std::option::Option<&str> {
        self.address_id.as_deref()
    }
}
impl std::fmt::Debug for CreateAddressOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("CreateAddressOutput");
        formatter.field("address_id", &self.address_id);
        formatter.finish()
    }
}
/// See [`CreateAddressOutput`](crate::output::CreateAddressOutput)
pub mod create_address_output {
    /// A builder for [`CreateAddressOutput`](crate::output::CreateAddressOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) address_id: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// <p>The automatically generated ID for a specific address. You'll use this ID when you
        /// create a job to specify which address you want the Snow device for that job shipped to.</p>
        pub fn address_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.address_id = Some(input.into());
            self
        }
        /// <p>The automatically generated ID for a specific address. You'll use this ID when you
        /// create a job to specify which address you want the Snow device for that job shipped to.</p>
        pub fn set_address_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.address_id = input;
            self
        }
        /// Consumes the builder and constructs a [`CreateAddressOutput`](crate::output::CreateAddressOutput)
        pub fn build(self) -> crate::output::CreateAddressOutput {
            crate::output::CreateAddressOutput {
                address_id: self.address_id,
            }
        }
    }
}
impl CreateAddressOutput {
    /// Creates a new builder-style object to manufacture [`CreateAddressOutput`](crate::output::CreateAddressOutput)
    pub fn builder() -> crate::output::create_address_output::Builder {
        crate::output::create_address_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct CancelJobOutput {}
impl std::fmt::Debug for CancelJobOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("CancelJobOutput");
        formatter.finish()
    }
}
/// See [`CancelJobOutput`](crate::output::CancelJobOutput)
pub mod cancel_job_output {
    /// A builder for [`CancelJobOutput`](crate::output::CancelJobOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {}
    impl Builder {
        /// Consumes the builder and constructs a [`CancelJobOutput`](crate::output::CancelJobOutput)
        pub fn build(self) -> crate::output::CancelJobOutput {
            crate::output::CancelJobOutput {}
        }
    }
}
impl CancelJobOutput {
    /// Creates a new builder-style object to manufacture [`CancelJobOutput`](crate::output::CancelJobOutput)
    pub fn builder() -> crate::output::cancel_job_output::Builder {
        crate::output::cancel_job_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct CancelClusterOutput {}
impl std::fmt::Debug for CancelClusterOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("CancelClusterOutput");
        formatter.finish()
    }
}
/// See [`CancelClusterOutput`](crate::output::CancelClusterOutput)
pub mod cancel_cluster_output {
    /// A builder for [`CancelClusterOutput`](crate::output::CancelClusterOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {}
    impl Builder {
        /// Consumes the builder and constructs a [`CancelClusterOutput`](crate::output::CancelClusterOutput)
        pub fn build(self) -> crate::output::CancelClusterOutput {
            crate::output::CancelClusterOutput {}
        }
    }
}
impl CancelClusterOutput {
    /// Creates a new builder-style object to manufacture [`CancelClusterOutput`](crate::output::CancelClusterOutput)
    pub fn builder() -> crate::output::cancel_cluster_output::Builder {
        crate::output::cancel_cluster_output::Builder::default()
    }
}