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
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
// 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 UpdateApplicationOutput {}
impl std::fmt::Debug for UpdateApplicationOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("UpdateApplicationOutput");
        formatter.finish()
    }
}
/// See [`UpdateApplicationOutput`](crate::output::UpdateApplicationOutput)
pub mod update_application_output {
    /// A builder for [`UpdateApplicationOutput`](crate::output::UpdateApplicationOutput)
    #[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 [`UpdateApplicationOutput`](crate::output::UpdateApplicationOutput)
        pub fn build(self) -> crate::output::UpdateApplicationOutput {
            crate::output::UpdateApplicationOutput {}
        }
    }
}
impl UpdateApplicationOutput {
    /// Creates a new builder-style object to manufacture [`UpdateApplicationOutput`](crate::output::UpdateApplicationOutput)
    pub fn builder() -> crate::output::update_application_output::Builder {
        crate::output::update_application_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct StopDataCollectionByAgentIdsOutput {
    /// <p>Information about the agents or connector that were instructed to stop collecting data. Information includes the agent/connector ID, a description of the operation performed, and whether the agent/connector configuration was updated.</p>
    pub agents_configuration_status:
        std::option::Option<std::vec::Vec<crate::model::AgentConfigurationStatus>>,
}
impl StopDataCollectionByAgentIdsOutput {
    /// <p>Information about the agents or connector that were instructed to stop collecting data. Information includes the agent/connector ID, a description of the operation performed, and whether the agent/connector configuration was updated.</p>
    pub fn agents_configuration_status(
        &self,
    ) -> std::option::Option<&[crate::model::AgentConfigurationStatus]> {
        self.agents_configuration_status.as_deref()
    }
}
impl std::fmt::Debug for StopDataCollectionByAgentIdsOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("StopDataCollectionByAgentIdsOutput");
        formatter.field(
            "agents_configuration_status",
            &self.agents_configuration_status,
        );
        formatter.finish()
    }
}
/// See [`StopDataCollectionByAgentIdsOutput`](crate::output::StopDataCollectionByAgentIdsOutput)
pub mod stop_data_collection_by_agent_ids_output {
    /// A builder for [`StopDataCollectionByAgentIdsOutput`](crate::output::StopDataCollectionByAgentIdsOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) agents_configuration_status:
            std::option::Option<std::vec::Vec<crate::model::AgentConfigurationStatus>>,
    }
    impl Builder {
        /// Appends an item to `agents_configuration_status`.
        ///
        /// To override the contents of this collection use [`set_agents_configuration_status`](Self::set_agents_configuration_status).
        ///
        /// <p>Information about the agents or connector that were instructed to stop collecting data. Information includes the agent/connector ID, a description of the operation performed, and whether the agent/connector configuration was updated.</p>
        pub fn agents_configuration_status(
            mut self,
            input: crate::model::AgentConfigurationStatus,
        ) -> Self {
            let mut v = self.agents_configuration_status.unwrap_or_default();
            v.push(input);
            self.agents_configuration_status = Some(v);
            self
        }
        /// <p>Information about the agents or connector that were instructed to stop collecting data. Information includes the agent/connector ID, a description of the operation performed, and whether the agent/connector configuration was updated.</p>
        pub fn set_agents_configuration_status(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::AgentConfigurationStatus>>,
        ) -> Self {
            self.agents_configuration_status = input;
            self
        }
        /// Consumes the builder and constructs a [`StopDataCollectionByAgentIdsOutput`](crate::output::StopDataCollectionByAgentIdsOutput)
        pub fn build(self) -> crate::output::StopDataCollectionByAgentIdsOutput {
            crate::output::StopDataCollectionByAgentIdsOutput {
                agents_configuration_status: self.agents_configuration_status,
            }
        }
    }
}
impl StopDataCollectionByAgentIdsOutput {
    /// Creates a new builder-style object to manufacture [`StopDataCollectionByAgentIdsOutput`](crate::output::StopDataCollectionByAgentIdsOutput)
    pub fn builder() -> crate::output::stop_data_collection_by_agent_ids_output::Builder {
        crate::output::stop_data_collection_by_agent_ids_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct StopContinuousExportOutput {
    /// <p>Timestamp that represents when this continuous export started collecting data.</p>
    pub start_time: std::option::Option<aws_smithy_types::DateTime>,
    /// <p>Timestamp that represents when this continuous export was stopped.</p>
    pub stop_time: std::option::Option<aws_smithy_types::DateTime>,
}
impl StopContinuousExportOutput {
    /// <p>Timestamp that represents when this continuous export started collecting data.</p>
    pub fn start_time(&self) -> std::option::Option<&aws_smithy_types::DateTime> {
        self.start_time.as_ref()
    }
    /// <p>Timestamp that represents when this continuous export was stopped.</p>
    pub fn stop_time(&self) -> std::option::Option<&aws_smithy_types::DateTime> {
        self.stop_time.as_ref()
    }
}
impl std::fmt::Debug for StopContinuousExportOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("StopContinuousExportOutput");
        formatter.field("start_time", &self.start_time);
        formatter.field("stop_time", &self.stop_time);
        formatter.finish()
    }
}
/// See [`StopContinuousExportOutput`](crate::output::StopContinuousExportOutput)
pub mod stop_continuous_export_output {
    /// A builder for [`StopContinuousExportOutput`](crate::output::StopContinuousExportOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) start_time: std::option::Option<aws_smithy_types::DateTime>,
        pub(crate) stop_time: std::option::Option<aws_smithy_types::DateTime>,
    }
    impl Builder {
        /// <p>Timestamp that represents when this continuous export started collecting data.</p>
        pub fn start_time(mut self, input: aws_smithy_types::DateTime) -> Self {
            self.start_time = Some(input);
            self
        }
        /// <p>Timestamp that represents when this continuous export started collecting data.</p>
        pub fn set_start_time(
            mut self,
            input: std::option::Option<aws_smithy_types::DateTime>,
        ) -> Self {
            self.start_time = input;
            self
        }
        /// <p>Timestamp that represents when this continuous export was stopped.</p>
        pub fn stop_time(mut self, input: aws_smithy_types::DateTime) -> Self {
            self.stop_time = Some(input);
            self
        }
        /// <p>Timestamp that represents when this continuous export was stopped.</p>
        pub fn set_stop_time(
            mut self,
            input: std::option::Option<aws_smithy_types::DateTime>,
        ) -> Self {
            self.stop_time = input;
            self
        }
        /// Consumes the builder and constructs a [`StopContinuousExportOutput`](crate::output::StopContinuousExportOutput)
        pub fn build(self) -> crate::output::StopContinuousExportOutput {
            crate::output::StopContinuousExportOutput {
                start_time: self.start_time,
                stop_time: self.stop_time,
            }
        }
    }
}
impl StopContinuousExportOutput {
    /// Creates a new builder-style object to manufacture [`StopContinuousExportOutput`](crate::output::StopContinuousExportOutput)
    pub fn builder() -> crate::output::stop_continuous_export_output::Builder {
        crate::output::stop_continuous_export_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct StartImportTaskOutput {
    /// <p>An array of information related to the import task request including status information, times, IDs, the Amazon S3 Object URL for the import file, and more. </p>
    pub task: std::option::Option<crate::model::ImportTask>,
}
impl StartImportTaskOutput {
    /// <p>An array of information related to the import task request including status information, times, IDs, the Amazon S3 Object URL for the import file, and more. </p>
    pub fn task(&self) -> std::option::Option<&crate::model::ImportTask> {
        self.task.as_ref()
    }
}
impl std::fmt::Debug for StartImportTaskOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("StartImportTaskOutput");
        formatter.field("task", &self.task);
        formatter.finish()
    }
}
/// See [`StartImportTaskOutput`](crate::output::StartImportTaskOutput)
pub mod start_import_task_output {
    /// A builder for [`StartImportTaskOutput`](crate::output::StartImportTaskOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) task: std::option::Option<crate::model::ImportTask>,
    }
    impl Builder {
        /// <p>An array of information related to the import task request including status information, times, IDs, the Amazon S3 Object URL for the import file, and more. </p>
        pub fn task(mut self, input: crate::model::ImportTask) -> Self {
            self.task = Some(input);
            self
        }
        /// <p>An array of information related to the import task request including status information, times, IDs, the Amazon S3 Object URL for the import file, and more. </p>
        pub fn set_task(mut self, input: std::option::Option<crate::model::ImportTask>) -> Self {
            self.task = input;
            self
        }
        /// Consumes the builder and constructs a [`StartImportTaskOutput`](crate::output::StartImportTaskOutput)
        pub fn build(self) -> crate::output::StartImportTaskOutput {
            crate::output::StartImportTaskOutput { task: self.task }
        }
    }
}
impl StartImportTaskOutput {
    /// Creates a new builder-style object to manufacture [`StartImportTaskOutput`](crate::output::StartImportTaskOutput)
    pub fn builder() -> crate::output::start_import_task_output::Builder {
        crate::output::start_import_task_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct StartExportTaskOutput {
    /// <p>A unique identifier used to query the status of an export request.</p>
    pub export_id: std::option::Option<std::string::String>,
}
impl StartExportTaskOutput {
    /// <p>A unique identifier used to query the status of an export request.</p>
    pub fn export_id(&self) -> std::option::Option<&str> {
        self.export_id.as_deref()
    }
}
impl std::fmt::Debug for StartExportTaskOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("StartExportTaskOutput");
        formatter.field("export_id", &self.export_id);
        formatter.finish()
    }
}
/// See [`StartExportTaskOutput`](crate::output::StartExportTaskOutput)
pub mod start_export_task_output {
    /// A builder for [`StartExportTaskOutput`](crate::output::StartExportTaskOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) export_id: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// <p>A unique identifier used to query the status of an export request.</p>
        pub fn export_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.export_id = Some(input.into());
            self
        }
        /// <p>A unique identifier used to query the status of an export request.</p>
        pub fn set_export_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.export_id = input;
            self
        }
        /// Consumes the builder and constructs a [`StartExportTaskOutput`](crate::output::StartExportTaskOutput)
        pub fn build(self) -> crate::output::StartExportTaskOutput {
            crate::output::StartExportTaskOutput {
                export_id: self.export_id,
            }
        }
    }
}
impl StartExportTaskOutput {
    /// Creates a new builder-style object to manufacture [`StartExportTaskOutput`](crate::output::StartExportTaskOutput)
    pub fn builder() -> crate::output::start_export_task_output::Builder {
        crate::output::start_export_task_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct StartDataCollectionByAgentIdsOutput {
    /// <p>Information about agents or the connector that were instructed to start collecting data. Information includes the agent/connector ID, a description of the operation performed, and whether the agent/connector configuration was updated.</p>
    pub agents_configuration_status:
        std::option::Option<std::vec::Vec<crate::model::AgentConfigurationStatus>>,
}
impl StartDataCollectionByAgentIdsOutput {
    /// <p>Information about agents or the connector that were instructed to start collecting data. Information includes the agent/connector ID, a description of the operation performed, and whether the agent/connector configuration was updated.</p>
    pub fn agents_configuration_status(
        &self,
    ) -> std::option::Option<&[crate::model::AgentConfigurationStatus]> {
        self.agents_configuration_status.as_deref()
    }
}
impl std::fmt::Debug for StartDataCollectionByAgentIdsOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("StartDataCollectionByAgentIdsOutput");
        formatter.field(
            "agents_configuration_status",
            &self.agents_configuration_status,
        );
        formatter.finish()
    }
}
/// See [`StartDataCollectionByAgentIdsOutput`](crate::output::StartDataCollectionByAgentIdsOutput)
pub mod start_data_collection_by_agent_ids_output {
    /// A builder for [`StartDataCollectionByAgentIdsOutput`](crate::output::StartDataCollectionByAgentIdsOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) agents_configuration_status:
            std::option::Option<std::vec::Vec<crate::model::AgentConfigurationStatus>>,
    }
    impl Builder {
        /// Appends an item to `agents_configuration_status`.
        ///
        /// To override the contents of this collection use [`set_agents_configuration_status`](Self::set_agents_configuration_status).
        ///
        /// <p>Information about agents or the connector that were instructed to start collecting data. Information includes the agent/connector ID, a description of the operation performed, and whether the agent/connector configuration was updated.</p>
        pub fn agents_configuration_status(
            mut self,
            input: crate::model::AgentConfigurationStatus,
        ) -> Self {
            let mut v = self.agents_configuration_status.unwrap_or_default();
            v.push(input);
            self.agents_configuration_status = Some(v);
            self
        }
        /// <p>Information about agents or the connector that were instructed to start collecting data. Information includes the agent/connector ID, a description of the operation performed, and whether the agent/connector configuration was updated.</p>
        pub fn set_agents_configuration_status(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::AgentConfigurationStatus>>,
        ) -> Self {
            self.agents_configuration_status = input;
            self
        }
        /// Consumes the builder and constructs a [`StartDataCollectionByAgentIdsOutput`](crate::output::StartDataCollectionByAgentIdsOutput)
        pub fn build(self) -> crate::output::StartDataCollectionByAgentIdsOutput {
            crate::output::StartDataCollectionByAgentIdsOutput {
                agents_configuration_status: self.agents_configuration_status,
            }
        }
    }
}
impl StartDataCollectionByAgentIdsOutput {
    /// Creates a new builder-style object to manufacture [`StartDataCollectionByAgentIdsOutput`](crate::output::StartDataCollectionByAgentIdsOutput)
    pub fn builder() -> crate::output::start_data_collection_by_agent_ids_output::Builder {
        crate::output::start_data_collection_by_agent_ids_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct StartContinuousExportOutput {
    /// <p>The unique ID assigned to this export.</p>
    pub export_id: std::option::Option<std::string::String>,
    /// <p>The name of the s3 bucket where the export data parquet files are stored.</p>
    pub s3_bucket: std::option::Option<std::string::String>,
    /// <p>The timestamp representing when the continuous export was started.</p>
    pub start_time: std::option::Option<aws_smithy_types::DateTime>,
    /// <p>The type of data collector used to gather this data (currently only offered for AGENT).</p>
    pub data_source: std::option::Option<crate::model::DataSource>,
    /// <p>A dictionary which describes how the data is stored.</p>
    /// <ul>
    /// <li> <p> <code>databaseName</code> - the name of the Glue database used to store the schema.</p> </li>
    /// </ul>
    pub schema_storage_config:
        std::option::Option<std::collections::HashMap<std::string::String, std::string::String>>,
}
impl StartContinuousExportOutput {
    /// <p>The unique ID assigned to this export.</p>
    pub fn export_id(&self) -> std::option::Option<&str> {
        self.export_id.as_deref()
    }
    /// <p>The name of the s3 bucket where the export data parquet files are stored.</p>
    pub fn s3_bucket(&self) -> std::option::Option<&str> {
        self.s3_bucket.as_deref()
    }
    /// <p>The timestamp representing when the continuous export was started.</p>
    pub fn start_time(&self) -> std::option::Option<&aws_smithy_types::DateTime> {
        self.start_time.as_ref()
    }
    /// <p>The type of data collector used to gather this data (currently only offered for AGENT).</p>
    pub fn data_source(&self) -> std::option::Option<&crate::model::DataSource> {
        self.data_source.as_ref()
    }
    /// <p>A dictionary which describes how the data is stored.</p>
    /// <ul>
    /// <li> <p> <code>databaseName</code> - the name of the Glue database used to store the schema.</p> </li>
    /// </ul>
    pub fn schema_storage_config(
        &self,
    ) -> std::option::Option<&std::collections::HashMap<std::string::String, std::string::String>>
    {
        self.schema_storage_config.as_ref()
    }
}
impl std::fmt::Debug for StartContinuousExportOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("StartContinuousExportOutput");
        formatter.field("export_id", &self.export_id);
        formatter.field("s3_bucket", &self.s3_bucket);
        formatter.field("start_time", &self.start_time);
        formatter.field("data_source", &self.data_source);
        formatter.field("schema_storage_config", &self.schema_storage_config);
        formatter.finish()
    }
}
/// See [`StartContinuousExportOutput`](crate::output::StartContinuousExportOutput)
pub mod start_continuous_export_output {
    /// A builder for [`StartContinuousExportOutput`](crate::output::StartContinuousExportOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) export_id: std::option::Option<std::string::String>,
        pub(crate) s3_bucket: std::option::Option<std::string::String>,
        pub(crate) start_time: std::option::Option<aws_smithy_types::DateTime>,
        pub(crate) data_source: std::option::Option<crate::model::DataSource>,
        pub(crate) schema_storage_config: std::option::Option<
            std::collections::HashMap<std::string::String, std::string::String>,
        >,
    }
    impl Builder {
        /// <p>The unique ID assigned to this export.</p>
        pub fn export_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.export_id = Some(input.into());
            self
        }
        /// <p>The unique ID assigned to this export.</p>
        pub fn set_export_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.export_id = input;
            self
        }
        /// <p>The name of the s3 bucket where the export data parquet files are stored.</p>
        pub fn s3_bucket(mut self, input: impl Into<std::string::String>) -> Self {
            self.s3_bucket = Some(input.into());
            self
        }
        /// <p>The name of the s3 bucket where the export data parquet files are stored.</p>
        pub fn set_s3_bucket(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.s3_bucket = input;
            self
        }
        /// <p>The timestamp representing when the continuous export was started.</p>
        pub fn start_time(mut self, input: aws_smithy_types::DateTime) -> Self {
            self.start_time = Some(input);
            self
        }
        /// <p>The timestamp representing when the continuous export was started.</p>
        pub fn set_start_time(
            mut self,
            input: std::option::Option<aws_smithy_types::DateTime>,
        ) -> Self {
            self.start_time = input;
            self
        }
        /// <p>The type of data collector used to gather this data (currently only offered for AGENT).</p>
        pub fn data_source(mut self, input: crate::model::DataSource) -> Self {
            self.data_source = Some(input);
            self
        }
        /// <p>The type of data collector used to gather this data (currently only offered for AGENT).</p>
        pub fn set_data_source(
            mut self,
            input: std::option::Option<crate::model::DataSource>,
        ) -> Self {
            self.data_source = input;
            self
        }
        /// Adds a key-value pair to `schema_storage_config`.
        ///
        /// To override the contents of this collection use [`set_schema_storage_config`](Self::set_schema_storage_config).
        ///
        /// <p>A dictionary which describes how the data is stored.</p>
        /// <ul>
        /// <li> <p> <code>databaseName</code> - the name of the Glue database used to store the schema.</p> </li>
        /// </ul>
        pub fn schema_storage_config(
            mut self,
            k: impl Into<std::string::String>,
            v: impl Into<std::string::String>,
        ) -> Self {
            let mut hash_map = self.schema_storage_config.unwrap_or_default();
            hash_map.insert(k.into(), v.into());
            self.schema_storage_config = Some(hash_map);
            self
        }
        /// <p>A dictionary which describes how the data is stored.</p>
        /// <ul>
        /// <li> <p> <code>databaseName</code> - the name of the Glue database used to store the schema.</p> </li>
        /// </ul>
        pub fn set_schema_storage_config(
            mut self,
            input: std::option::Option<
                std::collections::HashMap<std::string::String, std::string::String>,
            >,
        ) -> Self {
            self.schema_storage_config = input;
            self
        }
        /// Consumes the builder and constructs a [`StartContinuousExportOutput`](crate::output::StartContinuousExportOutput)
        pub fn build(self) -> crate::output::StartContinuousExportOutput {
            crate::output::StartContinuousExportOutput {
                export_id: self.export_id,
                s3_bucket: self.s3_bucket,
                start_time: self.start_time,
                data_source: self.data_source,
                schema_storage_config: self.schema_storage_config,
            }
        }
    }
}
impl StartContinuousExportOutput {
    /// Creates a new builder-style object to manufacture [`StartContinuousExportOutput`](crate::output::StartContinuousExportOutput)
    pub fn builder() -> crate::output::start_continuous_export_output::Builder {
        crate::output::start_continuous_export_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct ListServerNeighborsOutput {
    /// <p>List of distinct servers that are one hop away from the given server.</p>
    pub neighbors: std::option::Option<std::vec::Vec<crate::model::NeighborConnectionDetail>>,
    /// <p>Token to retrieve the next set of results. For example, if you specified 100 IDs for <code>ListServerNeighborsRequest$neighborConfigurationIds</code> but set <code>ListServerNeighborsRequest$maxResults</code> to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.</p>
    pub next_token: std::option::Option<std::string::String>,
    /// <p>Count of distinct servers that are one hop away from the given server.</p>
    pub known_dependency_count: i64,
}
impl ListServerNeighborsOutput {
    /// <p>List of distinct servers that are one hop away from the given server.</p>
    pub fn neighbors(&self) -> std::option::Option<&[crate::model::NeighborConnectionDetail]> {
        self.neighbors.as_deref()
    }
    /// <p>Token to retrieve the next set of results. For example, if you specified 100 IDs for <code>ListServerNeighborsRequest$neighborConfigurationIds</code> but set <code>ListServerNeighborsRequest$maxResults</code> to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.</p>
    pub fn next_token(&self) -> std::option::Option<&str> {
        self.next_token.as_deref()
    }
    /// <p>Count of distinct servers that are one hop away from the given server.</p>
    pub fn known_dependency_count(&self) -> i64 {
        self.known_dependency_count
    }
}
impl std::fmt::Debug for ListServerNeighborsOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("ListServerNeighborsOutput");
        formatter.field("neighbors", &self.neighbors);
        formatter.field("next_token", &self.next_token);
        formatter.field("known_dependency_count", &self.known_dependency_count);
        formatter.finish()
    }
}
/// See [`ListServerNeighborsOutput`](crate::output::ListServerNeighborsOutput)
pub mod list_server_neighbors_output {
    /// A builder for [`ListServerNeighborsOutput`](crate::output::ListServerNeighborsOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) neighbors:
            std::option::Option<std::vec::Vec<crate::model::NeighborConnectionDetail>>,
        pub(crate) next_token: std::option::Option<std::string::String>,
        pub(crate) known_dependency_count: std::option::Option<i64>,
    }
    impl Builder {
        /// Appends an item to `neighbors`.
        ///
        /// To override the contents of this collection use [`set_neighbors`](Self::set_neighbors).
        ///
        /// <p>List of distinct servers that are one hop away from the given server.</p>
        pub fn neighbors(mut self, input: crate::model::NeighborConnectionDetail) -> Self {
            let mut v = self.neighbors.unwrap_or_default();
            v.push(input);
            self.neighbors = Some(v);
            self
        }
        /// <p>List of distinct servers that are one hop away from the given server.</p>
        pub fn set_neighbors(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::NeighborConnectionDetail>>,
        ) -> Self {
            self.neighbors = input;
            self
        }
        /// <p>Token to retrieve the next set of results. For example, if you specified 100 IDs for <code>ListServerNeighborsRequest$neighborConfigurationIds</code> but set <code>ListServerNeighborsRequest$maxResults</code> to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.next_token = Some(input.into());
            self
        }
        /// <p>Token to retrieve the next set of results. For example, if you specified 100 IDs for <code>ListServerNeighborsRequest$neighborConfigurationIds</code> but set <code>ListServerNeighborsRequest$maxResults</code> to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.</p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.next_token = input;
            self
        }
        /// <p>Count of distinct servers that are one hop away from the given server.</p>
        pub fn known_dependency_count(mut self, input: i64) -> Self {
            self.known_dependency_count = Some(input);
            self
        }
        /// <p>Count of distinct servers that are one hop away from the given server.</p>
        pub fn set_known_dependency_count(mut self, input: std::option::Option<i64>) -> Self {
            self.known_dependency_count = input;
            self
        }
        /// Consumes the builder and constructs a [`ListServerNeighborsOutput`](crate::output::ListServerNeighborsOutput)
        pub fn build(self) -> crate::output::ListServerNeighborsOutput {
            crate::output::ListServerNeighborsOutput {
                neighbors: self.neighbors,
                next_token: self.next_token,
                known_dependency_count: self.known_dependency_count.unwrap_or_default(),
            }
        }
    }
}
impl ListServerNeighborsOutput {
    /// Creates a new builder-style object to manufacture [`ListServerNeighborsOutput`](crate::output::ListServerNeighborsOutput)
    pub fn builder() -> crate::output::list_server_neighbors_output::Builder {
        crate::output::list_server_neighbors_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct ListConfigurationsOutput {
    /// <p>Returns configuration details, including the configuration ID, attribute names, and attribute values.</p>
    pub configurations: std::option::Option<
        std::vec::Vec<std::collections::HashMap<std::string::String, std::string::String>>,
    >,
    /// <p>Token to retrieve the next set of results. For example, if your call to ListConfigurations returned 100 items, but you set <code>ListConfigurationsRequest$maxResults</code> to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.</p>
    pub next_token: std::option::Option<std::string::String>,
}
impl ListConfigurationsOutput {
    /// <p>Returns configuration details, including the configuration ID, attribute names, and attribute values.</p>
    pub fn configurations(
        &self,
    ) -> std::option::Option<&[std::collections::HashMap<std::string::String, std::string::String>]>
    {
        self.configurations.as_deref()
    }
    /// <p>Token to retrieve the next set of results. For example, if your call to ListConfigurations returned 100 items, but you set <code>ListConfigurationsRequest$maxResults</code> to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.</p>
    pub fn next_token(&self) -> std::option::Option<&str> {
        self.next_token.as_deref()
    }
}
impl std::fmt::Debug for ListConfigurationsOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("ListConfigurationsOutput");
        formatter.field("configurations", &self.configurations);
        formatter.field("next_token", &self.next_token);
        formatter.finish()
    }
}
/// See [`ListConfigurationsOutput`](crate::output::ListConfigurationsOutput)
pub mod list_configurations_output {
    /// A builder for [`ListConfigurationsOutput`](crate::output::ListConfigurationsOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) configurations: std::option::Option<
            std::vec::Vec<std::collections::HashMap<std::string::String, std::string::String>>,
        >,
        pub(crate) next_token: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// Appends an item to `configurations`.
        ///
        /// To override the contents of this collection use [`set_configurations`](Self::set_configurations).
        ///
        /// <p>Returns configuration details, including the configuration ID, attribute names, and attribute values.</p>
        pub fn configurations(
            mut self,
            input: std::collections::HashMap<std::string::String, std::string::String>,
        ) -> Self {
            let mut v = self.configurations.unwrap_or_default();
            v.push(input);
            self.configurations = Some(v);
            self
        }
        /// <p>Returns configuration details, including the configuration ID, attribute names, and attribute values.</p>
        pub fn set_configurations(
            mut self,
            input: std::option::Option<
                std::vec::Vec<std::collections::HashMap<std::string::String, std::string::String>>,
            >,
        ) -> Self {
            self.configurations = input;
            self
        }
        /// <p>Token to retrieve the next set of results. For example, if your call to ListConfigurations returned 100 items, but you set <code>ListConfigurationsRequest$maxResults</code> to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.next_token = Some(input.into());
            self
        }
        /// <p>Token to retrieve the next set of results. For example, if your call to ListConfigurations returned 100 items, but you set <code>ListConfigurationsRequest$maxResults</code> to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.</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 [`ListConfigurationsOutput`](crate::output::ListConfigurationsOutput)
        pub fn build(self) -> crate::output::ListConfigurationsOutput {
            crate::output::ListConfigurationsOutput {
                configurations: self.configurations,
                next_token: self.next_token,
            }
        }
    }
}
impl ListConfigurationsOutput {
    /// Creates a new builder-style object to manufacture [`ListConfigurationsOutput`](crate::output::ListConfigurationsOutput)
    pub fn builder() -> crate::output::list_configurations_output::Builder {
        crate::output::list_configurations_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct GetDiscoverySummaryOutput {
    /// <p>The number of servers discovered.</p>
    pub servers: i64,
    /// <p>The number of applications discovered.</p>
    pub applications: i64,
    /// <p>The number of servers mapped to applications.</p>
    pub servers_mapped_to_applications: i64,
    /// <p>The number of servers mapped to tags.</p>
    pub servers_mappedto_tags: i64,
    /// <p>Details about discovered agents, including agent status and health.</p>
    pub agent_summary: std::option::Option<crate::model::CustomerAgentInfo>,
    /// <p>Details about discovered connectors, including connector status and health.</p>
    pub connector_summary: std::option::Option<crate::model::CustomerConnectorInfo>,
    /// <p> Details about Migration Evaluator collectors, including collector status and health. </p>
    pub me_collector_summary: std::option::Option<crate::model::CustomerMeCollectorInfo>,
}
impl GetDiscoverySummaryOutput {
    /// <p>The number of servers discovered.</p>
    pub fn servers(&self) -> i64 {
        self.servers
    }
    /// <p>The number of applications discovered.</p>
    pub fn applications(&self) -> i64 {
        self.applications
    }
    /// <p>The number of servers mapped to applications.</p>
    pub fn servers_mapped_to_applications(&self) -> i64 {
        self.servers_mapped_to_applications
    }
    /// <p>The number of servers mapped to tags.</p>
    pub fn servers_mappedto_tags(&self) -> i64 {
        self.servers_mappedto_tags
    }
    /// <p>Details about discovered agents, including agent status and health.</p>
    pub fn agent_summary(&self) -> std::option::Option<&crate::model::CustomerAgentInfo> {
        self.agent_summary.as_ref()
    }
    /// <p>Details about discovered connectors, including connector status and health.</p>
    pub fn connector_summary(&self) -> std::option::Option<&crate::model::CustomerConnectorInfo> {
        self.connector_summary.as_ref()
    }
    /// <p> Details about Migration Evaluator collectors, including collector status and health. </p>
    pub fn me_collector_summary(
        &self,
    ) -> std::option::Option<&crate::model::CustomerMeCollectorInfo> {
        self.me_collector_summary.as_ref()
    }
}
impl std::fmt::Debug for GetDiscoverySummaryOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("GetDiscoverySummaryOutput");
        formatter.field("servers", &self.servers);
        formatter.field("applications", &self.applications);
        formatter.field(
            "servers_mapped_to_applications",
            &self.servers_mapped_to_applications,
        );
        formatter.field("servers_mappedto_tags", &self.servers_mappedto_tags);
        formatter.field("agent_summary", &self.agent_summary);
        formatter.field("connector_summary", &self.connector_summary);
        formatter.field("me_collector_summary", &self.me_collector_summary);
        formatter.finish()
    }
}
/// See [`GetDiscoverySummaryOutput`](crate::output::GetDiscoverySummaryOutput)
pub mod get_discovery_summary_output {
    /// A builder for [`GetDiscoverySummaryOutput`](crate::output::GetDiscoverySummaryOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) servers: std::option::Option<i64>,
        pub(crate) applications: std::option::Option<i64>,
        pub(crate) servers_mapped_to_applications: std::option::Option<i64>,
        pub(crate) servers_mappedto_tags: std::option::Option<i64>,
        pub(crate) agent_summary: std::option::Option<crate::model::CustomerAgentInfo>,
        pub(crate) connector_summary: std::option::Option<crate::model::CustomerConnectorInfo>,
        pub(crate) me_collector_summary: std::option::Option<crate::model::CustomerMeCollectorInfo>,
    }
    impl Builder {
        /// <p>The number of servers discovered.</p>
        pub fn servers(mut self, input: i64) -> Self {
            self.servers = Some(input);
            self
        }
        /// <p>The number of servers discovered.</p>
        pub fn set_servers(mut self, input: std::option::Option<i64>) -> Self {
            self.servers = input;
            self
        }
        /// <p>The number of applications discovered.</p>
        pub fn applications(mut self, input: i64) -> Self {
            self.applications = Some(input);
            self
        }
        /// <p>The number of applications discovered.</p>
        pub fn set_applications(mut self, input: std::option::Option<i64>) -> Self {
            self.applications = input;
            self
        }
        /// <p>The number of servers mapped to applications.</p>
        pub fn servers_mapped_to_applications(mut self, input: i64) -> Self {
            self.servers_mapped_to_applications = Some(input);
            self
        }
        /// <p>The number of servers mapped to applications.</p>
        pub fn set_servers_mapped_to_applications(
            mut self,
            input: std::option::Option<i64>,
        ) -> Self {
            self.servers_mapped_to_applications = input;
            self
        }
        /// <p>The number of servers mapped to tags.</p>
        pub fn servers_mappedto_tags(mut self, input: i64) -> Self {
            self.servers_mappedto_tags = Some(input);
            self
        }
        /// <p>The number of servers mapped to tags.</p>
        pub fn set_servers_mappedto_tags(mut self, input: std::option::Option<i64>) -> Self {
            self.servers_mappedto_tags = input;
            self
        }
        /// <p>Details about discovered agents, including agent status and health.</p>
        pub fn agent_summary(mut self, input: crate::model::CustomerAgentInfo) -> Self {
            self.agent_summary = Some(input);
            self
        }
        /// <p>Details about discovered agents, including agent status and health.</p>
        pub fn set_agent_summary(
            mut self,
            input: std::option::Option<crate::model::CustomerAgentInfo>,
        ) -> Self {
            self.agent_summary = input;
            self
        }
        /// <p>Details about discovered connectors, including connector status and health.</p>
        pub fn connector_summary(mut self, input: crate::model::CustomerConnectorInfo) -> Self {
            self.connector_summary = Some(input);
            self
        }
        /// <p>Details about discovered connectors, including connector status and health.</p>
        pub fn set_connector_summary(
            mut self,
            input: std::option::Option<crate::model::CustomerConnectorInfo>,
        ) -> Self {
            self.connector_summary = input;
            self
        }
        /// <p> Details about Migration Evaluator collectors, including collector status and health. </p>
        pub fn me_collector_summary(
            mut self,
            input: crate::model::CustomerMeCollectorInfo,
        ) -> Self {
            self.me_collector_summary = Some(input);
            self
        }
        /// <p> Details about Migration Evaluator collectors, including collector status and health. </p>
        pub fn set_me_collector_summary(
            mut self,
            input: std::option::Option<crate::model::CustomerMeCollectorInfo>,
        ) -> Self {
            self.me_collector_summary = input;
            self
        }
        /// Consumes the builder and constructs a [`GetDiscoverySummaryOutput`](crate::output::GetDiscoverySummaryOutput)
        pub fn build(self) -> crate::output::GetDiscoverySummaryOutput {
            crate::output::GetDiscoverySummaryOutput {
                servers: self.servers.unwrap_or_default(),
                applications: self.applications.unwrap_or_default(),
                servers_mapped_to_applications: self
                    .servers_mapped_to_applications
                    .unwrap_or_default(),
                servers_mappedto_tags: self.servers_mappedto_tags.unwrap_or_default(),
                agent_summary: self.agent_summary,
                connector_summary: self.connector_summary,
                me_collector_summary: self.me_collector_summary,
            }
        }
    }
}
impl GetDiscoverySummaryOutput {
    /// Creates a new builder-style object to manufacture [`GetDiscoverySummaryOutput`](crate::output::GetDiscoverySummaryOutput)
    pub fn builder() -> crate::output::get_discovery_summary_output::Builder {
        crate::output::get_discovery_summary_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct ExportConfigurationsOutput {
    /// <p>A unique identifier that you can use to query the export status.</p>
    pub export_id: std::option::Option<std::string::String>,
}
impl ExportConfigurationsOutput {
    /// <p>A unique identifier that you can use to query the export status.</p>
    pub fn export_id(&self) -> std::option::Option<&str> {
        self.export_id.as_deref()
    }
}
impl std::fmt::Debug for ExportConfigurationsOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("ExportConfigurationsOutput");
        formatter.field("export_id", &self.export_id);
        formatter.finish()
    }
}
/// See [`ExportConfigurationsOutput`](crate::output::ExportConfigurationsOutput)
pub mod export_configurations_output {
    /// A builder for [`ExportConfigurationsOutput`](crate::output::ExportConfigurationsOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) export_id: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// <p>A unique identifier that you can use to query the export status.</p>
        pub fn export_id(mut self, input: impl Into<std::string::String>) -> Self {
            self.export_id = Some(input.into());
            self
        }
        /// <p>A unique identifier that you can use to query the export status.</p>
        pub fn set_export_id(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.export_id = input;
            self
        }
        /// Consumes the builder and constructs a [`ExportConfigurationsOutput`](crate::output::ExportConfigurationsOutput)
        pub fn build(self) -> crate::output::ExportConfigurationsOutput {
            crate::output::ExportConfigurationsOutput {
                export_id: self.export_id,
            }
        }
    }
}
impl ExportConfigurationsOutput {
    /// Creates a new builder-style object to manufacture [`ExportConfigurationsOutput`](crate::output::ExportConfigurationsOutput)
    pub fn builder() -> crate::output::export_configurations_output::Builder {
        crate::output::export_configurations_output::Builder::default()
    }
}

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

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct DescribeTagsOutput {
    /// <p>Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.</p>
    pub tags: std::option::Option<std::vec::Vec<crate::model::ConfigurationTag>>,
    /// <p>The call returns a token. Use this token to get the next set of results.</p>
    pub next_token: std::option::Option<std::string::String>,
}
impl DescribeTagsOutput {
    /// <p>Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.</p>
    pub fn tags(&self) -> std::option::Option<&[crate::model::ConfigurationTag]> {
        self.tags.as_deref()
    }
    /// <p>The call returns a token. Use this token to get the next set of results.</p>
    pub fn next_token(&self) -> std::option::Option<&str> {
        self.next_token.as_deref()
    }
}
impl std::fmt::Debug for DescribeTagsOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("DescribeTagsOutput");
        formatter.field("tags", &self.tags);
        formatter.field("next_token", &self.next_token);
        formatter.finish()
    }
}
/// See [`DescribeTagsOutput`](crate::output::DescribeTagsOutput)
pub mod describe_tags_output {
    /// A builder for [`DescribeTagsOutput`](crate::output::DescribeTagsOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) tags: std::option::Option<std::vec::Vec<crate::model::ConfigurationTag>>,
        pub(crate) next_token: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// Appends an item to `tags`.
        ///
        /// To override the contents of this collection use [`set_tags`](Self::set_tags).
        ///
        /// <p>Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.</p>
        pub fn tags(mut self, input: crate::model::ConfigurationTag) -> Self {
            let mut v = self.tags.unwrap_or_default();
            v.push(input);
            self.tags = Some(v);
            self
        }
        /// <p>Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.</p>
        pub fn set_tags(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::ConfigurationTag>>,
        ) -> Self {
            self.tags = input;
            self
        }
        /// <p>The call returns a token. Use this token to get the next set of results.</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.next_token = Some(input.into());
            self
        }
        /// <p>The call returns a token. Use this token to get the next set of results.</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 [`DescribeTagsOutput`](crate::output::DescribeTagsOutput)
        pub fn build(self) -> crate::output::DescribeTagsOutput {
            crate::output::DescribeTagsOutput {
                tags: self.tags,
                next_token: self.next_token,
            }
        }
    }
}
impl DescribeTagsOutput {
    /// Creates a new builder-style object to manufacture [`DescribeTagsOutput`](crate::output::DescribeTagsOutput)
    pub fn builder() -> crate::output::describe_tags_output::Builder {
        crate::output::describe_tags_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct DescribeImportTasksOutput {
    /// <p>The token to request the next page of results.</p>
    pub next_token: std::option::Option<std::string::String>,
    /// <p>A returned array of import tasks that match any applied filters, up to the specified number of maximum results.</p>
    pub tasks: std::option::Option<std::vec::Vec<crate::model::ImportTask>>,
}
impl DescribeImportTasksOutput {
    /// <p>The token to request the next page of results.</p>
    pub fn next_token(&self) -> std::option::Option<&str> {
        self.next_token.as_deref()
    }
    /// <p>A returned array of import tasks that match any applied filters, up to the specified number of maximum results.</p>
    pub fn tasks(&self) -> std::option::Option<&[crate::model::ImportTask]> {
        self.tasks.as_deref()
    }
}
impl std::fmt::Debug for DescribeImportTasksOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("DescribeImportTasksOutput");
        formatter.field("next_token", &self.next_token);
        formatter.field("tasks", &self.tasks);
        formatter.finish()
    }
}
/// See [`DescribeImportTasksOutput`](crate::output::DescribeImportTasksOutput)
pub mod describe_import_tasks_output {
    /// A builder for [`DescribeImportTasksOutput`](crate::output::DescribeImportTasksOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) next_token: std::option::Option<std::string::String>,
        pub(crate) tasks: std::option::Option<std::vec::Vec<crate::model::ImportTask>>,
    }
    impl Builder {
        /// <p>The token to request the next page of results.</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.next_token = Some(input.into());
            self
        }
        /// <p>The token to request the next page of results.</p>
        pub fn set_next_token(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.next_token = input;
            self
        }
        /// Appends an item to `tasks`.
        ///
        /// To override the contents of this collection use [`set_tasks`](Self::set_tasks).
        ///
        /// <p>A returned array of import tasks that match any applied filters, up to the specified number of maximum results.</p>
        pub fn tasks(mut self, input: crate::model::ImportTask) -> Self {
            let mut v = self.tasks.unwrap_or_default();
            v.push(input);
            self.tasks = Some(v);
            self
        }
        /// <p>A returned array of import tasks that match any applied filters, up to the specified number of maximum results.</p>
        pub fn set_tasks(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::ImportTask>>,
        ) -> Self {
            self.tasks = input;
            self
        }
        /// Consumes the builder and constructs a [`DescribeImportTasksOutput`](crate::output::DescribeImportTasksOutput)
        pub fn build(self) -> crate::output::DescribeImportTasksOutput {
            crate::output::DescribeImportTasksOutput {
                next_token: self.next_token,
                tasks: self.tasks,
            }
        }
    }
}
impl DescribeImportTasksOutput {
    /// Creates a new builder-style object to manufacture [`DescribeImportTasksOutput`](crate::output::DescribeImportTasksOutput)
    pub fn builder() -> crate::output::describe_import_tasks_output::Builder {
        crate::output::describe_import_tasks_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct DescribeExportTasksOutput {
    /// <p>Contains one or more sets of export request details. When the status of a request is <code>SUCCEEDED</code>, the response includes a URL for an Amazon S3 bucket where you can view the data in a CSV file.</p>
    pub exports_info: std::option::Option<std::vec::Vec<crate::model::ExportInfo>>,
    /// <p>The <code>nextToken</code> value to include in a future <code>DescribeExportTasks</code> request. When the results of a <code>DescribeExportTasks</code> request exceed <code>maxResults</code>, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.</p>
    pub next_token: std::option::Option<std::string::String>,
}
impl DescribeExportTasksOutput {
    /// <p>Contains one or more sets of export request details. When the status of a request is <code>SUCCEEDED</code>, the response includes a URL for an Amazon S3 bucket where you can view the data in a CSV file.</p>
    pub fn exports_info(&self) -> std::option::Option<&[crate::model::ExportInfo]> {
        self.exports_info.as_deref()
    }
    /// <p>The <code>nextToken</code> value to include in a future <code>DescribeExportTasks</code> request. When the results of a <code>DescribeExportTasks</code> request exceed <code>maxResults</code>, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.</p>
    pub fn next_token(&self) -> std::option::Option<&str> {
        self.next_token.as_deref()
    }
}
impl std::fmt::Debug for DescribeExportTasksOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("DescribeExportTasksOutput");
        formatter.field("exports_info", &self.exports_info);
        formatter.field("next_token", &self.next_token);
        formatter.finish()
    }
}
/// See [`DescribeExportTasksOutput`](crate::output::DescribeExportTasksOutput)
pub mod describe_export_tasks_output {
    /// A builder for [`DescribeExportTasksOutput`](crate::output::DescribeExportTasksOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) exports_info: std::option::Option<std::vec::Vec<crate::model::ExportInfo>>,
        pub(crate) next_token: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// Appends an item to `exports_info`.
        ///
        /// To override the contents of this collection use [`set_exports_info`](Self::set_exports_info).
        ///
        /// <p>Contains one or more sets of export request details. When the status of a request is <code>SUCCEEDED</code>, the response includes a URL for an Amazon S3 bucket where you can view the data in a CSV file.</p>
        pub fn exports_info(mut self, input: crate::model::ExportInfo) -> Self {
            let mut v = self.exports_info.unwrap_or_default();
            v.push(input);
            self.exports_info = Some(v);
            self
        }
        /// <p>Contains one or more sets of export request details. When the status of a request is <code>SUCCEEDED</code>, the response includes a URL for an Amazon S3 bucket where you can view the data in a CSV file.</p>
        pub fn set_exports_info(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::ExportInfo>>,
        ) -> Self {
            self.exports_info = input;
            self
        }
        /// <p>The <code>nextToken</code> value to include in a future <code>DescribeExportTasks</code> request. When the results of a <code>DescribeExportTasks</code> request exceed <code>maxResults</code>, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.next_token = Some(input.into());
            self
        }
        /// <p>The <code>nextToken</code> value to include in a future <code>DescribeExportTasks</code> request. When the results of a <code>DescribeExportTasks</code> request exceed <code>maxResults</code>, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.</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 [`DescribeExportTasksOutput`](crate::output::DescribeExportTasksOutput)
        pub fn build(self) -> crate::output::DescribeExportTasksOutput {
            crate::output::DescribeExportTasksOutput {
                exports_info: self.exports_info,
                next_token: self.next_token,
            }
        }
    }
}
impl DescribeExportTasksOutput {
    /// Creates a new builder-style object to manufacture [`DescribeExportTasksOutput`](crate::output::DescribeExportTasksOutput)
    pub fn builder() -> crate::output::describe_export_tasks_output::Builder {
        crate::output::describe_export_tasks_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct DescribeExportConfigurationsOutput {
    /// <p></p>
    pub exports_info: std::option::Option<std::vec::Vec<crate::model::ExportInfo>>,
    /// <p>The token from the previous call to describe-export-tasks.</p>
    pub next_token: std::option::Option<std::string::String>,
}
impl DescribeExportConfigurationsOutput {
    /// <p></p>
    pub fn exports_info(&self) -> std::option::Option<&[crate::model::ExportInfo]> {
        self.exports_info.as_deref()
    }
    /// <p>The token from the previous call to describe-export-tasks.</p>
    pub fn next_token(&self) -> std::option::Option<&str> {
        self.next_token.as_deref()
    }
}
impl std::fmt::Debug for DescribeExportConfigurationsOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("DescribeExportConfigurationsOutput");
        formatter.field("exports_info", &self.exports_info);
        formatter.field("next_token", &self.next_token);
        formatter.finish()
    }
}
/// See [`DescribeExportConfigurationsOutput`](crate::output::DescribeExportConfigurationsOutput)
pub mod describe_export_configurations_output {
    /// A builder for [`DescribeExportConfigurationsOutput`](crate::output::DescribeExportConfigurationsOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) exports_info: std::option::Option<std::vec::Vec<crate::model::ExportInfo>>,
        pub(crate) next_token: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// Appends an item to `exports_info`.
        ///
        /// To override the contents of this collection use [`set_exports_info`](Self::set_exports_info).
        ///
        /// <p></p>
        pub fn exports_info(mut self, input: crate::model::ExportInfo) -> Self {
            let mut v = self.exports_info.unwrap_or_default();
            v.push(input);
            self.exports_info = Some(v);
            self
        }
        /// <p></p>
        pub fn set_exports_info(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::ExportInfo>>,
        ) -> Self {
            self.exports_info = input;
            self
        }
        /// <p>The token from the previous call to describe-export-tasks.</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.next_token = Some(input.into());
            self
        }
        /// <p>The token from the previous call to describe-export-tasks.</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 [`DescribeExportConfigurationsOutput`](crate::output::DescribeExportConfigurationsOutput)
        pub fn build(self) -> crate::output::DescribeExportConfigurationsOutput {
            crate::output::DescribeExportConfigurationsOutput {
                exports_info: self.exports_info,
                next_token: self.next_token,
            }
        }
    }
}
impl DescribeExportConfigurationsOutput {
    /// Creates a new builder-style object to manufacture [`DescribeExportConfigurationsOutput`](crate::output::DescribeExportConfigurationsOutput)
    pub fn builder() -> crate::output::describe_export_configurations_output::Builder {
        crate::output::describe_export_configurations_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct DescribeContinuousExportsOutput {
    /// <p>A list of continuous export descriptions.</p>
    pub descriptions: std::option::Option<std::vec::Vec<crate::model::ContinuousExportDescription>>,
    /// <p>The token from the previous call to <code>DescribeExportTasks</code>.</p>
    pub next_token: std::option::Option<std::string::String>,
}
impl DescribeContinuousExportsOutput {
    /// <p>A list of continuous export descriptions.</p>
    pub fn descriptions(
        &self,
    ) -> std::option::Option<&[crate::model::ContinuousExportDescription]> {
        self.descriptions.as_deref()
    }
    /// <p>The token from the previous call to <code>DescribeExportTasks</code>.</p>
    pub fn next_token(&self) -> std::option::Option<&str> {
        self.next_token.as_deref()
    }
}
impl std::fmt::Debug for DescribeContinuousExportsOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("DescribeContinuousExportsOutput");
        formatter.field("descriptions", &self.descriptions);
        formatter.field("next_token", &self.next_token);
        formatter.finish()
    }
}
/// See [`DescribeContinuousExportsOutput`](crate::output::DescribeContinuousExportsOutput)
pub mod describe_continuous_exports_output {
    /// A builder for [`DescribeContinuousExportsOutput`](crate::output::DescribeContinuousExportsOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) descriptions:
            std::option::Option<std::vec::Vec<crate::model::ContinuousExportDescription>>,
        pub(crate) next_token: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// Appends an item to `descriptions`.
        ///
        /// To override the contents of this collection use [`set_descriptions`](Self::set_descriptions).
        ///
        /// <p>A list of continuous export descriptions.</p>
        pub fn descriptions(mut self, input: crate::model::ContinuousExportDescription) -> Self {
            let mut v = self.descriptions.unwrap_or_default();
            v.push(input);
            self.descriptions = Some(v);
            self
        }
        /// <p>A list of continuous export descriptions.</p>
        pub fn set_descriptions(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::ContinuousExportDescription>>,
        ) -> Self {
            self.descriptions = input;
            self
        }
        /// <p>The token from the previous call to <code>DescribeExportTasks</code>.</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.next_token = Some(input.into());
            self
        }
        /// <p>The token from the previous call to <code>DescribeExportTasks</code>.</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 [`DescribeContinuousExportsOutput`](crate::output::DescribeContinuousExportsOutput)
        pub fn build(self) -> crate::output::DescribeContinuousExportsOutput {
            crate::output::DescribeContinuousExportsOutput {
                descriptions: self.descriptions,
                next_token: self.next_token,
            }
        }
    }
}
impl DescribeContinuousExportsOutput {
    /// Creates a new builder-style object to manufacture [`DescribeContinuousExportsOutput`](crate::output::DescribeContinuousExportsOutput)
    pub fn builder() -> crate::output::describe_continuous_exports_output::Builder {
        crate::output::describe_continuous_exports_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct DescribeConfigurationsOutput {
    /// <p>A key in the response map. The value is an array of data.</p>
    pub configurations: std::option::Option<
        std::vec::Vec<std::collections::HashMap<std::string::String, std::string::String>>,
    >,
}
impl DescribeConfigurationsOutput {
    /// <p>A key in the response map. The value is an array of data.</p>
    pub fn configurations(
        &self,
    ) -> std::option::Option<&[std::collections::HashMap<std::string::String, std::string::String>]>
    {
        self.configurations.as_deref()
    }
}
impl std::fmt::Debug for DescribeConfigurationsOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("DescribeConfigurationsOutput");
        formatter.field("configurations", &self.configurations);
        formatter.finish()
    }
}
/// See [`DescribeConfigurationsOutput`](crate::output::DescribeConfigurationsOutput)
pub mod describe_configurations_output {
    /// A builder for [`DescribeConfigurationsOutput`](crate::output::DescribeConfigurationsOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) configurations: std::option::Option<
            std::vec::Vec<std::collections::HashMap<std::string::String, std::string::String>>,
        >,
    }
    impl Builder {
        /// Appends an item to `configurations`.
        ///
        /// To override the contents of this collection use [`set_configurations`](Self::set_configurations).
        ///
        /// <p>A key in the response map. The value is an array of data.</p>
        pub fn configurations(
            mut self,
            input: std::collections::HashMap<std::string::String, std::string::String>,
        ) -> Self {
            let mut v = self.configurations.unwrap_or_default();
            v.push(input);
            self.configurations = Some(v);
            self
        }
        /// <p>A key in the response map. The value is an array of data.</p>
        pub fn set_configurations(
            mut self,
            input: std::option::Option<
                std::vec::Vec<std::collections::HashMap<std::string::String, std::string::String>>,
            >,
        ) -> Self {
            self.configurations = input;
            self
        }
        /// Consumes the builder and constructs a [`DescribeConfigurationsOutput`](crate::output::DescribeConfigurationsOutput)
        pub fn build(self) -> crate::output::DescribeConfigurationsOutput {
            crate::output::DescribeConfigurationsOutput {
                configurations: self.configurations,
            }
        }
    }
}
impl DescribeConfigurationsOutput {
    /// Creates a new builder-style object to manufacture [`DescribeConfigurationsOutput`](crate::output::DescribeConfigurationsOutput)
    pub fn builder() -> crate::output::describe_configurations_output::Builder {
        crate::output::describe_configurations_output::Builder::default()
    }
}

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct DescribeAgentsOutput {
    /// <p>Lists agents or the Connector by ID or lists all agents/Connectors associated with your user account if you did not specify an agent/Connector ID. The output includes agent/Connector IDs, IP addresses, media access control (MAC) addresses, agent/Connector health, host name where the agent/Connector resides, and the version number of each agent/Connector.</p>
    pub agents_info: std::option::Option<std::vec::Vec<crate::model::AgentInfo>>,
    /// <p>Token to retrieve the next set of results. For example, if you specified 100 IDs for <code>DescribeAgentsRequest$agentIds</code> but set <code>DescribeAgentsRequest$maxResults</code> to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.</p>
    pub next_token: std::option::Option<std::string::String>,
}
impl DescribeAgentsOutput {
    /// <p>Lists agents or the Connector by ID or lists all agents/Connectors associated with your user account if you did not specify an agent/Connector ID. The output includes agent/Connector IDs, IP addresses, media access control (MAC) addresses, agent/Connector health, host name where the agent/Connector resides, and the version number of each agent/Connector.</p>
    pub fn agents_info(&self) -> std::option::Option<&[crate::model::AgentInfo]> {
        self.agents_info.as_deref()
    }
    /// <p>Token to retrieve the next set of results. For example, if you specified 100 IDs for <code>DescribeAgentsRequest$agentIds</code> but set <code>DescribeAgentsRequest$maxResults</code> to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.</p>
    pub fn next_token(&self) -> std::option::Option<&str> {
        self.next_token.as_deref()
    }
}
impl std::fmt::Debug for DescribeAgentsOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("DescribeAgentsOutput");
        formatter.field("agents_info", &self.agents_info);
        formatter.field("next_token", &self.next_token);
        formatter.finish()
    }
}
/// See [`DescribeAgentsOutput`](crate::output::DescribeAgentsOutput)
pub mod describe_agents_output {
    /// A builder for [`DescribeAgentsOutput`](crate::output::DescribeAgentsOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) agents_info: std::option::Option<std::vec::Vec<crate::model::AgentInfo>>,
        pub(crate) next_token: std::option::Option<std::string::String>,
    }
    impl Builder {
        /// Appends an item to `agents_info`.
        ///
        /// To override the contents of this collection use [`set_agents_info`](Self::set_agents_info).
        ///
        /// <p>Lists agents or the Connector by ID or lists all agents/Connectors associated with your user account if you did not specify an agent/Connector ID. The output includes agent/Connector IDs, IP addresses, media access control (MAC) addresses, agent/Connector health, host name where the agent/Connector resides, and the version number of each agent/Connector.</p>
        pub fn agents_info(mut self, input: crate::model::AgentInfo) -> Self {
            let mut v = self.agents_info.unwrap_or_default();
            v.push(input);
            self.agents_info = Some(v);
            self
        }
        /// <p>Lists agents or the Connector by ID or lists all agents/Connectors associated with your user account if you did not specify an agent/Connector ID. The output includes agent/Connector IDs, IP addresses, media access control (MAC) addresses, agent/Connector health, host name where the agent/Connector resides, and the version number of each agent/Connector.</p>
        pub fn set_agents_info(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::AgentInfo>>,
        ) -> Self {
            self.agents_info = input;
            self
        }
        /// <p>Token to retrieve the next set of results. For example, if you specified 100 IDs for <code>DescribeAgentsRequest$agentIds</code> but set <code>DescribeAgentsRequest$maxResults</code> to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.</p>
        pub fn next_token(mut self, input: impl Into<std::string::String>) -> Self {
            self.next_token = Some(input.into());
            self
        }
        /// <p>Token to retrieve the next set of results. For example, if you specified 100 IDs for <code>DescribeAgentsRequest$agentIds</code> but set <code>DescribeAgentsRequest$maxResults</code> to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.</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 [`DescribeAgentsOutput`](crate::output::DescribeAgentsOutput)
        pub fn build(self) -> crate::output::DescribeAgentsOutput {
            crate::output::DescribeAgentsOutput {
                agents_info: self.agents_info,
                next_token: self.next_token,
            }
        }
    }
}
impl DescribeAgentsOutput {
    /// Creates a new builder-style object to manufacture [`DescribeAgentsOutput`](crate::output::DescribeAgentsOutput)
    pub fn builder() -> crate::output::describe_agents_output::Builder {
        crate::output::describe_agents_output::Builder::default()
    }
}

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

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

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

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

#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq)]
pub struct BatchDeleteImportDataOutput {
    /// <p>Error messages returned for each import task that you deleted as a response for this command.</p>
    pub errors: std::option::Option<std::vec::Vec<crate::model::BatchDeleteImportDataError>>,
}
impl BatchDeleteImportDataOutput {
    /// <p>Error messages returned for each import task that you deleted as a response for this command.</p>
    pub fn errors(&self) -> std::option::Option<&[crate::model::BatchDeleteImportDataError]> {
        self.errors.as_deref()
    }
}
impl std::fmt::Debug for BatchDeleteImportDataOutput {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut formatter = f.debug_struct("BatchDeleteImportDataOutput");
        formatter.field("errors", &self.errors);
        formatter.finish()
    }
}
/// See [`BatchDeleteImportDataOutput`](crate::output::BatchDeleteImportDataOutput)
pub mod batch_delete_import_data_output {
    /// A builder for [`BatchDeleteImportDataOutput`](crate::output::BatchDeleteImportDataOutput)
    #[non_exhaustive]
    #[derive(std::default::Default, std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
    pub struct Builder {
        pub(crate) errors:
            std::option::Option<std::vec::Vec<crate::model::BatchDeleteImportDataError>>,
    }
    impl Builder {
        /// Appends an item to `errors`.
        ///
        /// To override the contents of this collection use [`set_errors`](Self::set_errors).
        ///
        /// <p>Error messages returned for each import task that you deleted as a response for this command.</p>
        pub fn errors(mut self, input: crate::model::BatchDeleteImportDataError) -> Self {
            let mut v = self.errors.unwrap_or_default();
            v.push(input);
            self.errors = Some(v);
            self
        }
        /// <p>Error messages returned for each import task that you deleted as a response for this command.</p>
        pub fn set_errors(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::BatchDeleteImportDataError>>,
        ) -> Self {
            self.errors = input;
            self
        }
        /// Consumes the builder and constructs a [`BatchDeleteImportDataOutput`](crate::output::BatchDeleteImportDataOutput)
        pub fn build(self) -> crate::output::BatchDeleteImportDataOutput {
            crate::output::BatchDeleteImportDataOutput {
                errors: self.errors,
            }
        }
    }
}
impl BatchDeleteImportDataOutput {
    /// Creates a new builder-style object to manufacture [`BatchDeleteImportDataOutput`](crate::output::BatchDeleteImportDataOutput)
    pub fn builder() -> crate::output::batch_delete_import_data_output::Builder {
        crate::output::batch_delete_import_data_output::Builder::default()
    }
}

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