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
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.

/// <p> <code>CodeGenConfigurationNode</code> enumerates all valid Node types. One and only one of its member variables can be populated.</p>
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct CodeGenConfigurationNode {
    /// <p>Specifies a connector to an Amazon Athena data source.</p>
    pub athena_connector_source: ::std::option::Option<crate::types::AthenaConnectorSource>,
    /// <p>Specifies a connector to a JDBC data source.</p>
    pub jdbc_connector_source: ::std::option::Option<crate::types::JdbcConnectorSource>,
    /// <p>Specifies a connector to an Apache Spark data source.</p>
    pub spark_connector_source: ::std::option::Option<crate::types::SparkConnectorSource>,
    /// <p>Specifies a data store in the Glue Data Catalog.</p>
    pub catalog_source: ::std::option::Option<crate::types::CatalogSource>,
    /// <p>Specifies an Amazon Redshift data store.</p>
    pub redshift_source: ::std::option::Option<crate::types::RedshiftSource>,
    /// <p>Specifies an Amazon S3 data store in the Glue Data Catalog.</p>
    pub s3_catalog_source: ::std::option::Option<crate::types::S3CatalogSource>,
    /// <p>Specifies a command-separated value (CSV) data store stored in Amazon S3.</p>
    pub s3_csv_source: ::std::option::Option<crate::types::S3CsvSource>,
    /// <p>Specifies a JSON data store stored in Amazon S3.</p>
    pub s3_json_source: ::std::option::Option<crate::types::S3JsonSource>,
    /// <p>Specifies an Apache Parquet data store stored in Amazon S3.</p>
    pub s3_parquet_source: ::std::option::Option<crate::types::S3ParquetSource>,
    /// <p>Specifies a relational catalog data store in the Glue Data Catalog.</p>
    pub relational_catalog_source: ::std::option::Option<crate::types::RelationalCatalogSource>,
    /// <p>Specifies a DynamoDBC Catalog data store in the Glue Data Catalog.</p>
    pub dynamo_db_catalog_source: ::std::option::Option<crate::types::DynamoDbCatalogSource>,
    /// <p>Specifies a data target that writes to Amazon S3 in Apache Parquet columnar storage.</p>
    pub jdbc_connector_target: ::std::option::Option<crate::types::JdbcConnectorTarget>,
    /// <p>Specifies a target that uses an Apache Spark connector.</p>
    pub spark_connector_target: ::std::option::Option<crate::types::SparkConnectorTarget>,
    /// <p>Specifies a target that uses a Glue Data Catalog table.</p>
    pub catalog_target: ::std::option::Option<crate::types::BasicCatalogTarget>,
    /// <p>Specifies a target that uses Amazon Redshift.</p>
    pub redshift_target: ::std::option::Option<crate::types::RedshiftTarget>,
    /// <p>Specifies a data target that writes to Amazon S3 using the Glue Data Catalog.</p>
    pub s3_catalog_target: ::std::option::Option<crate::types::S3CatalogTarget>,
    /// <p>Specifies a data target that writes to Amazon S3 in Apache Parquet columnar storage.</p>
    pub s3_glue_parquet_target: ::std::option::Option<crate::types::S3GlueParquetTarget>,
    /// <p>Specifies a data target that writes to Amazon S3.</p>
    pub s3_direct_target: ::std::option::Option<crate::types::S3DirectTarget>,
    /// <p>Specifies a transform that maps data property keys in the data source to data property keys in the data target. You can rename keys, modify the data types for keys, and choose which keys to drop from the dataset.</p>
    pub apply_mapping: ::std::option::Option<crate::types::ApplyMapping>,
    /// <p>Specifies a transform that chooses the data property keys that you want to keep.</p>
    pub select_fields: ::std::option::Option<crate::types::SelectFields>,
    /// <p>Specifies a transform that chooses the data property keys that you want to drop.</p>
    pub drop_fields: ::std::option::Option<crate::types::DropFields>,
    /// <p>Specifies a transform that renames a single data property key.</p>
    pub rename_field: ::std::option::Option<crate::types::RenameField>,
    /// <p>Specifies a transform that writes samples of the data to an Amazon S3 bucket.</p>
    pub spigot: ::std::option::Option<crate::types::Spigot>,
    /// <p>Specifies a transform that joins two datasets into one dataset using a comparison phrase on the specified data property keys. You can use inner, outer, left, right, left semi, and left anti joins.</p>
    pub join: ::std::option::Option<crate::types::Join>,
    /// <p>Specifies a transform that splits data property keys into two <code>DynamicFrames</code>. The output is a collection of <code>DynamicFrames</code>: one with selected data property keys, and one with the remaining data property keys.</p>
    pub split_fields: ::std::option::Option<crate::types::SplitFields>,
    /// <p>Specifies a transform that chooses one <code>DynamicFrame</code> from a collection of <code>DynamicFrames</code>. The output is the selected <code>DynamicFrame</code> </p>
    pub select_from_collection: ::std::option::Option<crate::types::SelectFromCollection>,
    /// <p>Specifies a transform that locates records in the dataset that have missing values and adds a new field with a value determined by imputation. The input data set is used to train the machine learning model that determines what the missing value should be.</p>
    pub fill_missing_values: ::std::option::Option<crate::types::FillMissingValues>,
    /// <p>Specifies a transform that splits a dataset into two, based on a filter condition.</p>
    pub filter: ::std::option::Option<crate::types::Filter>,
    /// <p>Specifies a transform that uses custom code you provide to perform the data transformation. The output is a collection of DynamicFrames.</p>
    pub custom_code: ::std::option::Option<crate::types::CustomCode>,
    /// <p>Specifies a transform where you enter a SQL query using Spark SQL syntax to transform the data. The output is a single <code>DynamicFrame</code>.</p>
    pub spark_sql: ::std::option::Option<crate::types::SparkSql>,
    /// <p>Specifies a direct Amazon Kinesis data source.</p>
    pub direct_kinesis_source: ::std::option::Option<crate::types::DirectKinesisSource>,
    /// <p>Specifies an Apache Kafka data store.</p>
    pub direct_kafka_source: ::std::option::Option<crate::types::DirectKafkaSource>,
    /// <p>Specifies a Kinesis data source in the Glue Data Catalog.</p>
    pub catalog_kinesis_source: ::std::option::Option<crate::types::CatalogKinesisSource>,
    /// <p>Specifies an Apache Kafka data store in the Data Catalog.</p>
    pub catalog_kafka_source: ::std::option::Option<crate::types::CatalogKafkaSource>,
    /// <p>Specifies a transform that removes columns from the dataset if all values in the column are 'null'. By default, Glue Studio will recognize null objects, but some values such as empty strings, strings that are "null", -1 integers or other placeholders such as zeros, are not automatically recognized as nulls.</p>
    pub drop_null_fields: ::std::option::Option<crate::types::DropNullFields>,
    /// <p>Specifies a transform that merges a <code>DynamicFrame</code> with a staging <code>DynamicFrame</code> based on the specified primary keys to identify records. Duplicate records (records with the same primary keys) are not de-duplicated. </p>
    pub merge: ::std::option::Option<crate::types::Merge>,
    /// <p>Specifies a transform that combines the rows from two or more datasets into a single result.</p>
    pub union: ::std::option::Option<crate::types::Union>,
    /// <p>Specifies a transform that identifies, removes or masks PII data.</p>
    pub pii_detection: ::std::option::Option<crate::types::PiiDetection>,
    /// <p>Specifies a transform that groups rows by chosen fields and computes the aggregated value by specified function.</p>
    pub aggregate: ::std::option::Option<crate::types::Aggregate>,
    /// <p>Specifies a transform that removes rows of repeating data from a data set.</p>
    pub drop_duplicates: ::std::option::Option<crate::types::DropDuplicates>,
    /// <p>Specifies a data target that writes to a goverened catalog.</p>
    pub governed_catalog_target: ::std::option::Option<crate::types::GovernedCatalogTarget>,
    /// <p>Specifies a data source in a goverened Data Catalog.</p>
    pub governed_catalog_source: ::std::option::Option<crate::types::GovernedCatalogSource>,
    /// <p>Specifies a Microsoft SQL server data source in the Glue Data Catalog.</p>
    pub microsoft_sql_server_catalog_source: ::std::option::Option<crate::types::MicrosoftSqlServerCatalogSource>,
    /// <p>Specifies a MySQL data source in the Glue Data Catalog.</p>
    pub my_sql_catalog_source: ::std::option::Option<crate::types::MySqlCatalogSource>,
    /// <p>Specifies an Oracle data source in the Glue Data Catalog.</p>
    pub oracle_sql_catalog_source: ::std::option::Option<crate::types::OracleSqlCatalogSource>,
    /// <p>Specifies a PostgresSQL data source in the Glue Data Catalog.</p>
    pub postgre_sql_catalog_source: ::std::option::Option<crate::types::PostgreSqlCatalogSource>,
    /// <p>Specifies a target that uses Microsoft SQL.</p>
    pub microsoft_sql_server_catalog_target: ::std::option::Option<crate::types::MicrosoftSqlServerCatalogTarget>,
    /// <p>Specifies a target that uses MySQL.</p>
    pub my_sql_catalog_target: ::std::option::Option<crate::types::MySqlCatalogTarget>,
    /// <p>Specifies a target that uses Oracle SQL.</p>
    pub oracle_sql_catalog_target: ::std::option::Option<crate::types::OracleSqlCatalogTarget>,
    /// <p>Specifies a target that uses Postgres SQL.</p>
    pub postgre_sql_catalog_target: ::std::option::Option<crate::types::PostgreSqlCatalogTarget>,
    /// <p>Specifies a custom visual transform created by a user.</p>
    pub dynamic_transform: ::std::option::Option<crate::types::DynamicTransform>,
    /// <p>Specifies your data quality evaluation criteria.</p>
    pub evaluate_data_quality: ::std::option::Option<crate::types::EvaluateDataQuality>,
    /// <p>Specifies a Hudi data source that is registered in the Glue Data Catalog. The data source must be stored in Amazon S3.</p>
    pub s3_catalog_hudi_source: ::std::option::Option<crate::types::S3CatalogHudiSource>,
    /// <p>Specifies a Hudi data source that is registered in the Glue Data Catalog.</p>
    pub catalog_hudi_source: ::std::option::Option<crate::types::CatalogHudiSource>,
    /// <p>Specifies a Hudi data source stored in Amazon S3.</p>
    pub s3_hudi_source: ::std::option::Option<crate::types::S3HudiSource>,
    /// <p>Specifies a target that writes to a Hudi data source in the Glue Data Catalog.</p>
    pub s3_hudi_catalog_target: ::std::option::Option<crate::types::S3HudiCatalogTarget>,
    /// <p>Specifies a target that writes to a Hudi data source in Amazon S3.</p>
    pub s3_hudi_direct_target: ::std::option::Option<crate::types::S3HudiDirectTarget>,
    /// <p>Specifies the direct JDBC source connection.</p>
    pub direct_jdbc_source: ::std::option::Option<crate::types::DirectJdbcSource>,
    /// <p>Specifies a Delta Lake data source that is registered in the Glue Data Catalog. The data source must be stored in Amazon S3.</p>
    pub s3_catalog_delta_source: ::std::option::Option<crate::types::S3CatalogDeltaSource>,
    /// <p>Specifies a Delta Lake data source that is registered in the Glue Data Catalog.</p>
    pub catalog_delta_source: ::std::option::Option<crate::types::CatalogDeltaSource>,
    /// <p>Specifies a Delta Lake data source stored in Amazon S3.</p>
    pub s3_delta_source: ::std::option::Option<crate::types::S3DeltaSource>,
    /// <p>Specifies a target that writes to a Delta Lake data source in the Glue Data Catalog.</p>
    pub s3_delta_catalog_target: ::std::option::Option<crate::types::S3DeltaCatalogTarget>,
    /// <p>Specifies a target that writes to a Delta Lake data source in Amazon S3.</p>
    pub s3_delta_direct_target: ::std::option::Option<crate::types::S3DeltaDirectTarget>,
    /// <p>Specifies a target that writes to a data source in Amazon Redshift.</p>
    pub amazon_redshift_source: ::std::option::Option<crate::types::AmazonRedshiftSource>,
    /// <p>Specifies a target that writes to a data target in Amazon Redshift.</p>
    pub amazon_redshift_target: ::std::option::Option<crate::types::AmazonRedshiftTarget>,
    /// <p>Specifies your data quality evaluation criteria. Allows multiple input data and returns a collection of Dynamic Frames.</p>
    pub evaluate_data_quality_multi_frame: ::std::option::Option<crate::types::EvaluateDataQualityMultiFrame>,
    /// <p>Specifies a Glue DataBrew recipe node.</p>
    pub recipe: ::std::option::Option<crate::types::Recipe>,
    /// <p>Specifies a Snowflake data source.</p>
    pub snowflake_source: ::std::option::Option<crate::types::SnowflakeSource>,
    /// <p>Specifies a target that writes to a Snowflake data source.</p>
    pub snowflake_target: ::std::option::Option<crate::types::SnowflakeTarget>,
    /// <p>Specifies a source generated with standard connection options.</p>
    pub connector_data_source: ::std::option::Option<crate::types::ConnectorDataSource>,
    /// <p>Specifies a target generated with standard connection options.</p>
    pub connector_data_target: ::std::option::Option<crate::types::ConnectorDataTarget>,
}
impl CodeGenConfigurationNode {
    /// <p>Specifies a connector to an Amazon Athena data source.</p>
    pub fn athena_connector_source(&self) -> ::std::option::Option<&crate::types::AthenaConnectorSource> {
        self.athena_connector_source.as_ref()
    }
    /// <p>Specifies a connector to a JDBC data source.</p>
    pub fn jdbc_connector_source(&self) -> ::std::option::Option<&crate::types::JdbcConnectorSource> {
        self.jdbc_connector_source.as_ref()
    }
    /// <p>Specifies a connector to an Apache Spark data source.</p>
    pub fn spark_connector_source(&self) -> ::std::option::Option<&crate::types::SparkConnectorSource> {
        self.spark_connector_source.as_ref()
    }
    /// <p>Specifies a data store in the Glue Data Catalog.</p>
    pub fn catalog_source(&self) -> ::std::option::Option<&crate::types::CatalogSource> {
        self.catalog_source.as_ref()
    }
    /// <p>Specifies an Amazon Redshift data store.</p>
    pub fn redshift_source(&self) -> ::std::option::Option<&crate::types::RedshiftSource> {
        self.redshift_source.as_ref()
    }
    /// <p>Specifies an Amazon S3 data store in the Glue Data Catalog.</p>
    pub fn s3_catalog_source(&self) -> ::std::option::Option<&crate::types::S3CatalogSource> {
        self.s3_catalog_source.as_ref()
    }
    /// <p>Specifies a command-separated value (CSV) data store stored in Amazon S3.</p>
    pub fn s3_csv_source(&self) -> ::std::option::Option<&crate::types::S3CsvSource> {
        self.s3_csv_source.as_ref()
    }
    /// <p>Specifies a JSON data store stored in Amazon S3.</p>
    pub fn s3_json_source(&self) -> ::std::option::Option<&crate::types::S3JsonSource> {
        self.s3_json_source.as_ref()
    }
    /// <p>Specifies an Apache Parquet data store stored in Amazon S3.</p>
    pub fn s3_parquet_source(&self) -> ::std::option::Option<&crate::types::S3ParquetSource> {
        self.s3_parquet_source.as_ref()
    }
    /// <p>Specifies a relational catalog data store in the Glue Data Catalog.</p>
    pub fn relational_catalog_source(&self) -> ::std::option::Option<&crate::types::RelationalCatalogSource> {
        self.relational_catalog_source.as_ref()
    }
    /// <p>Specifies a DynamoDBC Catalog data store in the Glue Data Catalog.</p>
    pub fn dynamo_db_catalog_source(&self) -> ::std::option::Option<&crate::types::DynamoDbCatalogSource> {
        self.dynamo_db_catalog_source.as_ref()
    }
    /// <p>Specifies a data target that writes to Amazon S3 in Apache Parquet columnar storage.</p>
    pub fn jdbc_connector_target(&self) -> ::std::option::Option<&crate::types::JdbcConnectorTarget> {
        self.jdbc_connector_target.as_ref()
    }
    /// <p>Specifies a target that uses an Apache Spark connector.</p>
    pub fn spark_connector_target(&self) -> ::std::option::Option<&crate::types::SparkConnectorTarget> {
        self.spark_connector_target.as_ref()
    }
    /// <p>Specifies a target that uses a Glue Data Catalog table.</p>
    pub fn catalog_target(&self) -> ::std::option::Option<&crate::types::BasicCatalogTarget> {
        self.catalog_target.as_ref()
    }
    /// <p>Specifies a target that uses Amazon Redshift.</p>
    pub fn redshift_target(&self) -> ::std::option::Option<&crate::types::RedshiftTarget> {
        self.redshift_target.as_ref()
    }
    /// <p>Specifies a data target that writes to Amazon S3 using the Glue Data Catalog.</p>
    pub fn s3_catalog_target(&self) -> ::std::option::Option<&crate::types::S3CatalogTarget> {
        self.s3_catalog_target.as_ref()
    }
    /// <p>Specifies a data target that writes to Amazon S3 in Apache Parquet columnar storage.</p>
    pub fn s3_glue_parquet_target(&self) -> ::std::option::Option<&crate::types::S3GlueParquetTarget> {
        self.s3_glue_parquet_target.as_ref()
    }
    /// <p>Specifies a data target that writes to Amazon S3.</p>
    pub fn s3_direct_target(&self) -> ::std::option::Option<&crate::types::S3DirectTarget> {
        self.s3_direct_target.as_ref()
    }
    /// <p>Specifies a transform that maps data property keys in the data source to data property keys in the data target. You can rename keys, modify the data types for keys, and choose which keys to drop from the dataset.</p>
    pub fn apply_mapping(&self) -> ::std::option::Option<&crate::types::ApplyMapping> {
        self.apply_mapping.as_ref()
    }
    /// <p>Specifies a transform that chooses the data property keys that you want to keep.</p>
    pub fn select_fields(&self) -> ::std::option::Option<&crate::types::SelectFields> {
        self.select_fields.as_ref()
    }
    /// <p>Specifies a transform that chooses the data property keys that you want to drop.</p>
    pub fn drop_fields(&self) -> ::std::option::Option<&crate::types::DropFields> {
        self.drop_fields.as_ref()
    }
    /// <p>Specifies a transform that renames a single data property key.</p>
    pub fn rename_field(&self) -> ::std::option::Option<&crate::types::RenameField> {
        self.rename_field.as_ref()
    }
    /// <p>Specifies a transform that writes samples of the data to an Amazon S3 bucket.</p>
    pub fn spigot(&self) -> ::std::option::Option<&crate::types::Spigot> {
        self.spigot.as_ref()
    }
    /// <p>Specifies a transform that joins two datasets into one dataset using a comparison phrase on the specified data property keys. You can use inner, outer, left, right, left semi, and left anti joins.</p>
    pub fn join(&self) -> ::std::option::Option<&crate::types::Join> {
        self.join.as_ref()
    }
    /// <p>Specifies a transform that splits data property keys into two <code>DynamicFrames</code>. The output is a collection of <code>DynamicFrames</code>: one with selected data property keys, and one with the remaining data property keys.</p>
    pub fn split_fields(&self) -> ::std::option::Option<&crate::types::SplitFields> {
        self.split_fields.as_ref()
    }
    /// <p>Specifies a transform that chooses one <code>DynamicFrame</code> from a collection of <code>DynamicFrames</code>. The output is the selected <code>DynamicFrame</code> </p>
    pub fn select_from_collection(&self) -> ::std::option::Option<&crate::types::SelectFromCollection> {
        self.select_from_collection.as_ref()
    }
    /// <p>Specifies a transform that locates records in the dataset that have missing values and adds a new field with a value determined by imputation. The input data set is used to train the machine learning model that determines what the missing value should be.</p>
    pub fn fill_missing_values(&self) -> ::std::option::Option<&crate::types::FillMissingValues> {
        self.fill_missing_values.as_ref()
    }
    /// <p>Specifies a transform that splits a dataset into two, based on a filter condition.</p>
    pub fn filter(&self) -> ::std::option::Option<&crate::types::Filter> {
        self.filter.as_ref()
    }
    /// <p>Specifies a transform that uses custom code you provide to perform the data transformation. The output is a collection of DynamicFrames.</p>
    pub fn custom_code(&self) -> ::std::option::Option<&crate::types::CustomCode> {
        self.custom_code.as_ref()
    }
    /// <p>Specifies a transform where you enter a SQL query using Spark SQL syntax to transform the data. The output is a single <code>DynamicFrame</code>.</p>
    pub fn spark_sql(&self) -> ::std::option::Option<&crate::types::SparkSql> {
        self.spark_sql.as_ref()
    }
    /// <p>Specifies a direct Amazon Kinesis data source.</p>
    pub fn direct_kinesis_source(&self) -> ::std::option::Option<&crate::types::DirectKinesisSource> {
        self.direct_kinesis_source.as_ref()
    }
    /// <p>Specifies an Apache Kafka data store.</p>
    pub fn direct_kafka_source(&self) -> ::std::option::Option<&crate::types::DirectKafkaSource> {
        self.direct_kafka_source.as_ref()
    }
    /// <p>Specifies a Kinesis data source in the Glue Data Catalog.</p>
    pub fn catalog_kinesis_source(&self) -> ::std::option::Option<&crate::types::CatalogKinesisSource> {
        self.catalog_kinesis_source.as_ref()
    }
    /// <p>Specifies an Apache Kafka data store in the Data Catalog.</p>
    pub fn catalog_kafka_source(&self) -> ::std::option::Option<&crate::types::CatalogKafkaSource> {
        self.catalog_kafka_source.as_ref()
    }
    /// <p>Specifies a transform that removes columns from the dataset if all values in the column are 'null'. By default, Glue Studio will recognize null objects, but some values such as empty strings, strings that are "null", -1 integers or other placeholders such as zeros, are not automatically recognized as nulls.</p>
    pub fn drop_null_fields(&self) -> ::std::option::Option<&crate::types::DropNullFields> {
        self.drop_null_fields.as_ref()
    }
    /// <p>Specifies a transform that merges a <code>DynamicFrame</code> with a staging <code>DynamicFrame</code> based on the specified primary keys to identify records. Duplicate records (records with the same primary keys) are not de-duplicated. </p>
    pub fn merge(&self) -> ::std::option::Option<&crate::types::Merge> {
        self.merge.as_ref()
    }
    /// <p>Specifies a transform that combines the rows from two or more datasets into a single result.</p>
    pub fn union(&self) -> ::std::option::Option<&crate::types::Union> {
        self.union.as_ref()
    }
    /// <p>Specifies a transform that identifies, removes or masks PII data.</p>
    pub fn pii_detection(&self) -> ::std::option::Option<&crate::types::PiiDetection> {
        self.pii_detection.as_ref()
    }
    /// <p>Specifies a transform that groups rows by chosen fields and computes the aggregated value by specified function.</p>
    pub fn aggregate(&self) -> ::std::option::Option<&crate::types::Aggregate> {
        self.aggregate.as_ref()
    }
    /// <p>Specifies a transform that removes rows of repeating data from a data set.</p>
    pub fn drop_duplicates(&self) -> ::std::option::Option<&crate::types::DropDuplicates> {
        self.drop_duplicates.as_ref()
    }
    /// <p>Specifies a data target that writes to a goverened catalog.</p>
    pub fn governed_catalog_target(&self) -> ::std::option::Option<&crate::types::GovernedCatalogTarget> {
        self.governed_catalog_target.as_ref()
    }
    /// <p>Specifies a data source in a goverened Data Catalog.</p>
    pub fn governed_catalog_source(&self) -> ::std::option::Option<&crate::types::GovernedCatalogSource> {
        self.governed_catalog_source.as_ref()
    }
    /// <p>Specifies a Microsoft SQL server data source in the Glue Data Catalog.</p>
    pub fn microsoft_sql_server_catalog_source(&self) -> ::std::option::Option<&crate::types::MicrosoftSqlServerCatalogSource> {
        self.microsoft_sql_server_catalog_source.as_ref()
    }
    /// <p>Specifies a MySQL data source in the Glue Data Catalog.</p>
    pub fn my_sql_catalog_source(&self) -> ::std::option::Option<&crate::types::MySqlCatalogSource> {
        self.my_sql_catalog_source.as_ref()
    }
    /// <p>Specifies an Oracle data source in the Glue Data Catalog.</p>
    pub fn oracle_sql_catalog_source(&self) -> ::std::option::Option<&crate::types::OracleSqlCatalogSource> {
        self.oracle_sql_catalog_source.as_ref()
    }
    /// <p>Specifies a PostgresSQL data source in the Glue Data Catalog.</p>
    pub fn postgre_sql_catalog_source(&self) -> ::std::option::Option<&crate::types::PostgreSqlCatalogSource> {
        self.postgre_sql_catalog_source.as_ref()
    }
    /// <p>Specifies a target that uses Microsoft SQL.</p>
    pub fn microsoft_sql_server_catalog_target(&self) -> ::std::option::Option<&crate::types::MicrosoftSqlServerCatalogTarget> {
        self.microsoft_sql_server_catalog_target.as_ref()
    }
    /// <p>Specifies a target that uses MySQL.</p>
    pub fn my_sql_catalog_target(&self) -> ::std::option::Option<&crate::types::MySqlCatalogTarget> {
        self.my_sql_catalog_target.as_ref()
    }
    /// <p>Specifies a target that uses Oracle SQL.</p>
    pub fn oracle_sql_catalog_target(&self) -> ::std::option::Option<&crate::types::OracleSqlCatalogTarget> {
        self.oracle_sql_catalog_target.as_ref()
    }
    /// <p>Specifies a target that uses Postgres SQL.</p>
    pub fn postgre_sql_catalog_target(&self) -> ::std::option::Option<&crate::types::PostgreSqlCatalogTarget> {
        self.postgre_sql_catalog_target.as_ref()
    }
    /// <p>Specifies a custom visual transform created by a user.</p>
    pub fn dynamic_transform(&self) -> ::std::option::Option<&crate::types::DynamicTransform> {
        self.dynamic_transform.as_ref()
    }
    /// <p>Specifies your data quality evaluation criteria.</p>
    pub fn evaluate_data_quality(&self) -> ::std::option::Option<&crate::types::EvaluateDataQuality> {
        self.evaluate_data_quality.as_ref()
    }
    /// <p>Specifies a Hudi data source that is registered in the Glue Data Catalog. The data source must be stored in Amazon S3.</p>
    pub fn s3_catalog_hudi_source(&self) -> ::std::option::Option<&crate::types::S3CatalogHudiSource> {
        self.s3_catalog_hudi_source.as_ref()
    }
    /// <p>Specifies a Hudi data source that is registered in the Glue Data Catalog.</p>
    pub fn catalog_hudi_source(&self) -> ::std::option::Option<&crate::types::CatalogHudiSource> {
        self.catalog_hudi_source.as_ref()
    }
    /// <p>Specifies a Hudi data source stored in Amazon S3.</p>
    pub fn s3_hudi_source(&self) -> ::std::option::Option<&crate::types::S3HudiSource> {
        self.s3_hudi_source.as_ref()
    }
    /// <p>Specifies a target that writes to a Hudi data source in the Glue Data Catalog.</p>
    pub fn s3_hudi_catalog_target(&self) -> ::std::option::Option<&crate::types::S3HudiCatalogTarget> {
        self.s3_hudi_catalog_target.as_ref()
    }
    /// <p>Specifies a target that writes to a Hudi data source in Amazon S3.</p>
    pub fn s3_hudi_direct_target(&self) -> ::std::option::Option<&crate::types::S3HudiDirectTarget> {
        self.s3_hudi_direct_target.as_ref()
    }
    /// <p>Specifies the direct JDBC source connection.</p>
    pub fn direct_jdbc_source(&self) -> ::std::option::Option<&crate::types::DirectJdbcSource> {
        self.direct_jdbc_source.as_ref()
    }
    /// <p>Specifies a Delta Lake data source that is registered in the Glue Data Catalog. The data source must be stored in Amazon S3.</p>
    pub fn s3_catalog_delta_source(&self) -> ::std::option::Option<&crate::types::S3CatalogDeltaSource> {
        self.s3_catalog_delta_source.as_ref()
    }
    /// <p>Specifies a Delta Lake data source that is registered in the Glue Data Catalog.</p>
    pub fn catalog_delta_source(&self) -> ::std::option::Option<&crate::types::CatalogDeltaSource> {
        self.catalog_delta_source.as_ref()
    }
    /// <p>Specifies a Delta Lake data source stored in Amazon S3.</p>
    pub fn s3_delta_source(&self) -> ::std::option::Option<&crate::types::S3DeltaSource> {
        self.s3_delta_source.as_ref()
    }
    /// <p>Specifies a target that writes to a Delta Lake data source in the Glue Data Catalog.</p>
    pub fn s3_delta_catalog_target(&self) -> ::std::option::Option<&crate::types::S3DeltaCatalogTarget> {
        self.s3_delta_catalog_target.as_ref()
    }
    /// <p>Specifies a target that writes to a Delta Lake data source in Amazon S3.</p>
    pub fn s3_delta_direct_target(&self) -> ::std::option::Option<&crate::types::S3DeltaDirectTarget> {
        self.s3_delta_direct_target.as_ref()
    }
    /// <p>Specifies a target that writes to a data source in Amazon Redshift.</p>
    pub fn amazon_redshift_source(&self) -> ::std::option::Option<&crate::types::AmazonRedshiftSource> {
        self.amazon_redshift_source.as_ref()
    }
    /// <p>Specifies a target that writes to a data target in Amazon Redshift.</p>
    pub fn amazon_redshift_target(&self) -> ::std::option::Option<&crate::types::AmazonRedshiftTarget> {
        self.amazon_redshift_target.as_ref()
    }
    /// <p>Specifies your data quality evaluation criteria. Allows multiple input data and returns a collection of Dynamic Frames.</p>
    pub fn evaluate_data_quality_multi_frame(&self) -> ::std::option::Option<&crate::types::EvaluateDataQualityMultiFrame> {
        self.evaluate_data_quality_multi_frame.as_ref()
    }
    /// <p>Specifies a Glue DataBrew recipe node.</p>
    pub fn recipe(&self) -> ::std::option::Option<&crate::types::Recipe> {
        self.recipe.as_ref()
    }
    /// <p>Specifies a Snowflake data source.</p>
    pub fn snowflake_source(&self) -> ::std::option::Option<&crate::types::SnowflakeSource> {
        self.snowflake_source.as_ref()
    }
    /// <p>Specifies a target that writes to a Snowflake data source.</p>
    pub fn snowflake_target(&self) -> ::std::option::Option<&crate::types::SnowflakeTarget> {
        self.snowflake_target.as_ref()
    }
    /// <p>Specifies a source generated with standard connection options.</p>
    pub fn connector_data_source(&self) -> ::std::option::Option<&crate::types::ConnectorDataSource> {
        self.connector_data_source.as_ref()
    }
    /// <p>Specifies a target generated with standard connection options.</p>
    pub fn connector_data_target(&self) -> ::std::option::Option<&crate::types::ConnectorDataTarget> {
        self.connector_data_target.as_ref()
    }
}
impl CodeGenConfigurationNode {
    /// Creates a new builder-style object to manufacture [`CodeGenConfigurationNode`](crate::types::CodeGenConfigurationNode).
    pub fn builder() -> crate::types::builders::CodeGenConfigurationNodeBuilder {
        crate::types::builders::CodeGenConfigurationNodeBuilder::default()
    }
}

/// A builder for [`CodeGenConfigurationNode`](crate::types::CodeGenConfigurationNode).
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct CodeGenConfigurationNodeBuilder {
    pub(crate) athena_connector_source: ::std::option::Option<crate::types::AthenaConnectorSource>,
    pub(crate) jdbc_connector_source: ::std::option::Option<crate::types::JdbcConnectorSource>,
    pub(crate) spark_connector_source: ::std::option::Option<crate::types::SparkConnectorSource>,
    pub(crate) catalog_source: ::std::option::Option<crate::types::CatalogSource>,
    pub(crate) redshift_source: ::std::option::Option<crate::types::RedshiftSource>,
    pub(crate) s3_catalog_source: ::std::option::Option<crate::types::S3CatalogSource>,
    pub(crate) s3_csv_source: ::std::option::Option<crate::types::S3CsvSource>,
    pub(crate) s3_json_source: ::std::option::Option<crate::types::S3JsonSource>,
    pub(crate) s3_parquet_source: ::std::option::Option<crate::types::S3ParquetSource>,
    pub(crate) relational_catalog_source: ::std::option::Option<crate::types::RelationalCatalogSource>,
    pub(crate) dynamo_db_catalog_source: ::std::option::Option<crate::types::DynamoDbCatalogSource>,
    pub(crate) jdbc_connector_target: ::std::option::Option<crate::types::JdbcConnectorTarget>,
    pub(crate) spark_connector_target: ::std::option::Option<crate::types::SparkConnectorTarget>,
    pub(crate) catalog_target: ::std::option::Option<crate::types::BasicCatalogTarget>,
    pub(crate) redshift_target: ::std::option::Option<crate::types::RedshiftTarget>,
    pub(crate) s3_catalog_target: ::std::option::Option<crate::types::S3CatalogTarget>,
    pub(crate) s3_glue_parquet_target: ::std::option::Option<crate::types::S3GlueParquetTarget>,
    pub(crate) s3_direct_target: ::std::option::Option<crate::types::S3DirectTarget>,
    pub(crate) apply_mapping: ::std::option::Option<crate::types::ApplyMapping>,
    pub(crate) select_fields: ::std::option::Option<crate::types::SelectFields>,
    pub(crate) drop_fields: ::std::option::Option<crate::types::DropFields>,
    pub(crate) rename_field: ::std::option::Option<crate::types::RenameField>,
    pub(crate) spigot: ::std::option::Option<crate::types::Spigot>,
    pub(crate) join: ::std::option::Option<crate::types::Join>,
    pub(crate) split_fields: ::std::option::Option<crate::types::SplitFields>,
    pub(crate) select_from_collection: ::std::option::Option<crate::types::SelectFromCollection>,
    pub(crate) fill_missing_values: ::std::option::Option<crate::types::FillMissingValues>,
    pub(crate) filter: ::std::option::Option<crate::types::Filter>,
    pub(crate) custom_code: ::std::option::Option<crate::types::CustomCode>,
    pub(crate) spark_sql: ::std::option::Option<crate::types::SparkSql>,
    pub(crate) direct_kinesis_source: ::std::option::Option<crate::types::DirectKinesisSource>,
    pub(crate) direct_kafka_source: ::std::option::Option<crate::types::DirectKafkaSource>,
    pub(crate) catalog_kinesis_source: ::std::option::Option<crate::types::CatalogKinesisSource>,
    pub(crate) catalog_kafka_source: ::std::option::Option<crate::types::CatalogKafkaSource>,
    pub(crate) drop_null_fields: ::std::option::Option<crate::types::DropNullFields>,
    pub(crate) merge: ::std::option::Option<crate::types::Merge>,
    pub(crate) union: ::std::option::Option<crate::types::Union>,
    pub(crate) pii_detection: ::std::option::Option<crate::types::PiiDetection>,
    pub(crate) aggregate: ::std::option::Option<crate::types::Aggregate>,
    pub(crate) drop_duplicates: ::std::option::Option<crate::types::DropDuplicates>,
    pub(crate) governed_catalog_target: ::std::option::Option<crate::types::GovernedCatalogTarget>,
    pub(crate) governed_catalog_source: ::std::option::Option<crate::types::GovernedCatalogSource>,
    pub(crate) microsoft_sql_server_catalog_source: ::std::option::Option<crate::types::MicrosoftSqlServerCatalogSource>,
    pub(crate) my_sql_catalog_source: ::std::option::Option<crate::types::MySqlCatalogSource>,
    pub(crate) oracle_sql_catalog_source: ::std::option::Option<crate::types::OracleSqlCatalogSource>,
    pub(crate) postgre_sql_catalog_source: ::std::option::Option<crate::types::PostgreSqlCatalogSource>,
    pub(crate) microsoft_sql_server_catalog_target: ::std::option::Option<crate::types::MicrosoftSqlServerCatalogTarget>,
    pub(crate) my_sql_catalog_target: ::std::option::Option<crate::types::MySqlCatalogTarget>,
    pub(crate) oracle_sql_catalog_target: ::std::option::Option<crate::types::OracleSqlCatalogTarget>,
    pub(crate) postgre_sql_catalog_target: ::std::option::Option<crate::types::PostgreSqlCatalogTarget>,
    pub(crate) dynamic_transform: ::std::option::Option<crate::types::DynamicTransform>,
    pub(crate) evaluate_data_quality: ::std::option::Option<crate::types::EvaluateDataQuality>,
    pub(crate) s3_catalog_hudi_source: ::std::option::Option<crate::types::S3CatalogHudiSource>,
    pub(crate) catalog_hudi_source: ::std::option::Option<crate::types::CatalogHudiSource>,
    pub(crate) s3_hudi_source: ::std::option::Option<crate::types::S3HudiSource>,
    pub(crate) s3_hudi_catalog_target: ::std::option::Option<crate::types::S3HudiCatalogTarget>,
    pub(crate) s3_hudi_direct_target: ::std::option::Option<crate::types::S3HudiDirectTarget>,
    pub(crate) direct_jdbc_source: ::std::option::Option<crate::types::DirectJdbcSource>,
    pub(crate) s3_catalog_delta_source: ::std::option::Option<crate::types::S3CatalogDeltaSource>,
    pub(crate) catalog_delta_source: ::std::option::Option<crate::types::CatalogDeltaSource>,
    pub(crate) s3_delta_source: ::std::option::Option<crate::types::S3DeltaSource>,
    pub(crate) s3_delta_catalog_target: ::std::option::Option<crate::types::S3DeltaCatalogTarget>,
    pub(crate) s3_delta_direct_target: ::std::option::Option<crate::types::S3DeltaDirectTarget>,
    pub(crate) amazon_redshift_source: ::std::option::Option<crate::types::AmazonRedshiftSource>,
    pub(crate) amazon_redshift_target: ::std::option::Option<crate::types::AmazonRedshiftTarget>,
    pub(crate) evaluate_data_quality_multi_frame: ::std::option::Option<crate::types::EvaluateDataQualityMultiFrame>,
    pub(crate) recipe: ::std::option::Option<crate::types::Recipe>,
    pub(crate) snowflake_source: ::std::option::Option<crate::types::SnowflakeSource>,
    pub(crate) snowflake_target: ::std::option::Option<crate::types::SnowflakeTarget>,
    pub(crate) connector_data_source: ::std::option::Option<crate::types::ConnectorDataSource>,
    pub(crate) connector_data_target: ::std::option::Option<crate::types::ConnectorDataTarget>,
}
impl CodeGenConfigurationNodeBuilder {
    /// <p>Specifies a connector to an Amazon Athena data source.</p>
    pub fn athena_connector_source(mut self, input: crate::types::AthenaConnectorSource) -> Self {
        self.athena_connector_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a connector to an Amazon Athena data source.</p>
    pub fn set_athena_connector_source(mut self, input: ::std::option::Option<crate::types::AthenaConnectorSource>) -> Self {
        self.athena_connector_source = input;
        self
    }
    /// <p>Specifies a connector to an Amazon Athena data source.</p>
    pub fn get_athena_connector_source(&self) -> &::std::option::Option<crate::types::AthenaConnectorSource> {
        &self.athena_connector_source
    }
    /// <p>Specifies a connector to a JDBC data source.</p>
    pub fn jdbc_connector_source(mut self, input: crate::types::JdbcConnectorSource) -> Self {
        self.jdbc_connector_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a connector to a JDBC data source.</p>
    pub fn set_jdbc_connector_source(mut self, input: ::std::option::Option<crate::types::JdbcConnectorSource>) -> Self {
        self.jdbc_connector_source = input;
        self
    }
    /// <p>Specifies a connector to a JDBC data source.</p>
    pub fn get_jdbc_connector_source(&self) -> &::std::option::Option<crate::types::JdbcConnectorSource> {
        &self.jdbc_connector_source
    }
    /// <p>Specifies a connector to an Apache Spark data source.</p>
    pub fn spark_connector_source(mut self, input: crate::types::SparkConnectorSource) -> Self {
        self.spark_connector_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a connector to an Apache Spark data source.</p>
    pub fn set_spark_connector_source(mut self, input: ::std::option::Option<crate::types::SparkConnectorSource>) -> Self {
        self.spark_connector_source = input;
        self
    }
    /// <p>Specifies a connector to an Apache Spark data source.</p>
    pub fn get_spark_connector_source(&self) -> &::std::option::Option<crate::types::SparkConnectorSource> {
        &self.spark_connector_source
    }
    /// <p>Specifies a data store in the Glue Data Catalog.</p>
    pub fn catalog_source(mut self, input: crate::types::CatalogSource) -> Self {
        self.catalog_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a data store in the Glue Data Catalog.</p>
    pub fn set_catalog_source(mut self, input: ::std::option::Option<crate::types::CatalogSource>) -> Self {
        self.catalog_source = input;
        self
    }
    /// <p>Specifies a data store in the Glue Data Catalog.</p>
    pub fn get_catalog_source(&self) -> &::std::option::Option<crate::types::CatalogSource> {
        &self.catalog_source
    }
    /// <p>Specifies an Amazon Redshift data store.</p>
    pub fn redshift_source(mut self, input: crate::types::RedshiftSource) -> Self {
        self.redshift_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies an Amazon Redshift data store.</p>
    pub fn set_redshift_source(mut self, input: ::std::option::Option<crate::types::RedshiftSource>) -> Self {
        self.redshift_source = input;
        self
    }
    /// <p>Specifies an Amazon Redshift data store.</p>
    pub fn get_redshift_source(&self) -> &::std::option::Option<crate::types::RedshiftSource> {
        &self.redshift_source
    }
    /// <p>Specifies an Amazon S3 data store in the Glue Data Catalog.</p>
    pub fn s3_catalog_source(mut self, input: crate::types::S3CatalogSource) -> Self {
        self.s3_catalog_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies an Amazon S3 data store in the Glue Data Catalog.</p>
    pub fn set_s3_catalog_source(mut self, input: ::std::option::Option<crate::types::S3CatalogSource>) -> Self {
        self.s3_catalog_source = input;
        self
    }
    /// <p>Specifies an Amazon S3 data store in the Glue Data Catalog.</p>
    pub fn get_s3_catalog_source(&self) -> &::std::option::Option<crate::types::S3CatalogSource> {
        &self.s3_catalog_source
    }
    /// <p>Specifies a command-separated value (CSV) data store stored in Amazon S3.</p>
    pub fn s3_csv_source(mut self, input: crate::types::S3CsvSource) -> Self {
        self.s3_csv_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a command-separated value (CSV) data store stored in Amazon S3.</p>
    pub fn set_s3_csv_source(mut self, input: ::std::option::Option<crate::types::S3CsvSource>) -> Self {
        self.s3_csv_source = input;
        self
    }
    /// <p>Specifies a command-separated value (CSV) data store stored in Amazon S3.</p>
    pub fn get_s3_csv_source(&self) -> &::std::option::Option<crate::types::S3CsvSource> {
        &self.s3_csv_source
    }
    /// <p>Specifies a JSON data store stored in Amazon S3.</p>
    pub fn s3_json_source(mut self, input: crate::types::S3JsonSource) -> Self {
        self.s3_json_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a JSON data store stored in Amazon S3.</p>
    pub fn set_s3_json_source(mut self, input: ::std::option::Option<crate::types::S3JsonSource>) -> Self {
        self.s3_json_source = input;
        self
    }
    /// <p>Specifies a JSON data store stored in Amazon S3.</p>
    pub fn get_s3_json_source(&self) -> &::std::option::Option<crate::types::S3JsonSource> {
        &self.s3_json_source
    }
    /// <p>Specifies an Apache Parquet data store stored in Amazon S3.</p>
    pub fn s3_parquet_source(mut self, input: crate::types::S3ParquetSource) -> Self {
        self.s3_parquet_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies an Apache Parquet data store stored in Amazon S3.</p>
    pub fn set_s3_parquet_source(mut self, input: ::std::option::Option<crate::types::S3ParquetSource>) -> Self {
        self.s3_parquet_source = input;
        self
    }
    /// <p>Specifies an Apache Parquet data store stored in Amazon S3.</p>
    pub fn get_s3_parquet_source(&self) -> &::std::option::Option<crate::types::S3ParquetSource> {
        &self.s3_parquet_source
    }
    /// <p>Specifies a relational catalog data store in the Glue Data Catalog.</p>
    pub fn relational_catalog_source(mut self, input: crate::types::RelationalCatalogSource) -> Self {
        self.relational_catalog_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a relational catalog data store in the Glue Data Catalog.</p>
    pub fn set_relational_catalog_source(mut self, input: ::std::option::Option<crate::types::RelationalCatalogSource>) -> Self {
        self.relational_catalog_source = input;
        self
    }
    /// <p>Specifies a relational catalog data store in the Glue Data Catalog.</p>
    pub fn get_relational_catalog_source(&self) -> &::std::option::Option<crate::types::RelationalCatalogSource> {
        &self.relational_catalog_source
    }
    /// <p>Specifies a DynamoDBC Catalog data store in the Glue Data Catalog.</p>
    pub fn dynamo_db_catalog_source(mut self, input: crate::types::DynamoDbCatalogSource) -> Self {
        self.dynamo_db_catalog_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a DynamoDBC Catalog data store in the Glue Data Catalog.</p>
    pub fn set_dynamo_db_catalog_source(mut self, input: ::std::option::Option<crate::types::DynamoDbCatalogSource>) -> Self {
        self.dynamo_db_catalog_source = input;
        self
    }
    /// <p>Specifies a DynamoDBC Catalog data store in the Glue Data Catalog.</p>
    pub fn get_dynamo_db_catalog_source(&self) -> &::std::option::Option<crate::types::DynamoDbCatalogSource> {
        &self.dynamo_db_catalog_source
    }
    /// <p>Specifies a data target that writes to Amazon S3 in Apache Parquet columnar storage.</p>
    pub fn jdbc_connector_target(mut self, input: crate::types::JdbcConnectorTarget) -> Self {
        self.jdbc_connector_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a data target that writes to Amazon S3 in Apache Parquet columnar storage.</p>
    pub fn set_jdbc_connector_target(mut self, input: ::std::option::Option<crate::types::JdbcConnectorTarget>) -> Self {
        self.jdbc_connector_target = input;
        self
    }
    /// <p>Specifies a data target that writes to Amazon S3 in Apache Parquet columnar storage.</p>
    pub fn get_jdbc_connector_target(&self) -> &::std::option::Option<crate::types::JdbcConnectorTarget> {
        &self.jdbc_connector_target
    }
    /// <p>Specifies a target that uses an Apache Spark connector.</p>
    pub fn spark_connector_target(mut self, input: crate::types::SparkConnectorTarget) -> Self {
        self.spark_connector_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a target that uses an Apache Spark connector.</p>
    pub fn set_spark_connector_target(mut self, input: ::std::option::Option<crate::types::SparkConnectorTarget>) -> Self {
        self.spark_connector_target = input;
        self
    }
    /// <p>Specifies a target that uses an Apache Spark connector.</p>
    pub fn get_spark_connector_target(&self) -> &::std::option::Option<crate::types::SparkConnectorTarget> {
        &self.spark_connector_target
    }
    /// <p>Specifies a target that uses a Glue Data Catalog table.</p>
    pub fn catalog_target(mut self, input: crate::types::BasicCatalogTarget) -> Self {
        self.catalog_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a target that uses a Glue Data Catalog table.</p>
    pub fn set_catalog_target(mut self, input: ::std::option::Option<crate::types::BasicCatalogTarget>) -> Self {
        self.catalog_target = input;
        self
    }
    /// <p>Specifies a target that uses a Glue Data Catalog table.</p>
    pub fn get_catalog_target(&self) -> &::std::option::Option<crate::types::BasicCatalogTarget> {
        &self.catalog_target
    }
    /// <p>Specifies a target that uses Amazon Redshift.</p>
    pub fn redshift_target(mut self, input: crate::types::RedshiftTarget) -> Self {
        self.redshift_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a target that uses Amazon Redshift.</p>
    pub fn set_redshift_target(mut self, input: ::std::option::Option<crate::types::RedshiftTarget>) -> Self {
        self.redshift_target = input;
        self
    }
    /// <p>Specifies a target that uses Amazon Redshift.</p>
    pub fn get_redshift_target(&self) -> &::std::option::Option<crate::types::RedshiftTarget> {
        &self.redshift_target
    }
    /// <p>Specifies a data target that writes to Amazon S3 using the Glue Data Catalog.</p>
    pub fn s3_catalog_target(mut self, input: crate::types::S3CatalogTarget) -> Self {
        self.s3_catalog_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a data target that writes to Amazon S3 using the Glue Data Catalog.</p>
    pub fn set_s3_catalog_target(mut self, input: ::std::option::Option<crate::types::S3CatalogTarget>) -> Self {
        self.s3_catalog_target = input;
        self
    }
    /// <p>Specifies a data target that writes to Amazon S3 using the Glue Data Catalog.</p>
    pub fn get_s3_catalog_target(&self) -> &::std::option::Option<crate::types::S3CatalogTarget> {
        &self.s3_catalog_target
    }
    /// <p>Specifies a data target that writes to Amazon S3 in Apache Parquet columnar storage.</p>
    pub fn s3_glue_parquet_target(mut self, input: crate::types::S3GlueParquetTarget) -> Self {
        self.s3_glue_parquet_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a data target that writes to Amazon S3 in Apache Parquet columnar storage.</p>
    pub fn set_s3_glue_parquet_target(mut self, input: ::std::option::Option<crate::types::S3GlueParquetTarget>) -> Self {
        self.s3_glue_parquet_target = input;
        self
    }
    /// <p>Specifies a data target that writes to Amazon S3 in Apache Parquet columnar storage.</p>
    pub fn get_s3_glue_parquet_target(&self) -> &::std::option::Option<crate::types::S3GlueParquetTarget> {
        &self.s3_glue_parquet_target
    }
    /// <p>Specifies a data target that writes to Amazon S3.</p>
    pub fn s3_direct_target(mut self, input: crate::types::S3DirectTarget) -> Self {
        self.s3_direct_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a data target that writes to Amazon S3.</p>
    pub fn set_s3_direct_target(mut self, input: ::std::option::Option<crate::types::S3DirectTarget>) -> Self {
        self.s3_direct_target = input;
        self
    }
    /// <p>Specifies a data target that writes to Amazon S3.</p>
    pub fn get_s3_direct_target(&self) -> &::std::option::Option<crate::types::S3DirectTarget> {
        &self.s3_direct_target
    }
    /// <p>Specifies a transform that maps data property keys in the data source to data property keys in the data target. You can rename keys, modify the data types for keys, and choose which keys to drop from the dataset.</p>
    pub fn apply_mapping(mut self, input: crate::types::ApplyMapping) -> Self {
        self.apply_mapping = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that maps data property keys in the data source to data property keys in the data target. You can rename keys, modify the data types for keys, and choose which keys to drop from the dataset.</p>
    pub fn set_apply_mapping(mut self, input: ::std::option::Option<crate::types::ApplyMapping>) -> Self {
        self.apply_mapping = input;
        self
    }
    /// <p>Specifies a transform that maps data property keys in the data source to data property keys in the data target. You can rename keys, modify the data types for keys, and choose which keys to drop from the dataset.</p>
    pub fn get_apply_mapping(&self) -> &::std::option::Option<crate::types::ApplyMapping> {
        &self.apply_mapping
    }
    /// <p>Specifies a transform that chooses the data property keys that you want to keep.</p>
    pub fn select_fields(mut self, input: crate::types::SelectFields) -> Self {
        self.select_fields = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that chooses the data property keys that you want to keep.</p>
    pub fn set_select_fields(mut self, input: ::std::option::Option<crate::types::SelectFields>) -> Self {
        self.select_fields = input;
        self
    }
    /// <p>Specifies a transform that chooses the data property keys that you want to keep.</p>
    pub fn get_select_fields(&self) -> &::std::option::Option<crate::types::SelectFields> {
        &self.select_fields
    }
    /// <p>Specifies a transform that chooses the data property keys that you want to drop.</p>
    pub fn drop_fields(mut self, input: crate::types::DropFields) -> Self {
        self.drop_fields = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that chooses the data property keys that you want to drop.</p>
    pub fn set_drop_fields(mut self, input: ::std::option::Option<crate::types::DropFields>) -> Self {
        self.drop_fields = input;
        self
    }
    /// <p>Specifies a transform that chooses the data property keys that you want to drop.</p>
    pub fn get_drop_fields(&self) -> &::std::option::Option<crate::types::DropFields> {
        &self.drop_fields
    }
    /// <p>Specifies a transform that renames a single data property key.</p>
    pub fn rename_field(mut self, input: crate::types::RenameField) -> Self {
        self.rename_field = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that renames a single data property key.</p>
    pub fn set_rename_field(mut self, input: ::std::option::Option<crate::types::RenameField>) -> Self {
        self.rename_field = input;
        self
    }
    /// <p>Specifies a transform that renames a single data property key.</p>
    pub fn get_rename_field(&self) -> &::std::option::Option<crate::types::RenameField> {
        &self.rename_field
    }
    /// <p>Specifies a transform that writes samples of the data to an Amazon S3 bucket.</p>
    pub fn spigot(mut self, input: crate::types::Spigot) -> Self {
        self.spigot = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that writes samples of the data to an Amazon S3 bucket.</p>
    pub fn set_spigot(mut self, input: ::std::option::Option<crate::types::Spigot>) -> Self {
        self.spigot = input;
        self
    }
    /// <p>Specifies a transform that writes samples of the data to an Amazon S3 bucket.</p>
    pub fn get_spigot(&self) -> &::std::option::Option<crate::types::Spigot> {
        &self.spigot
    }
    /// <p>Specifies a transform that joins two datasets into one dataset using a comparison phrase on the specified data property keys. You can use inner, outer, left, right, left semi, and left anti joins.</p>
    pub fn join(mut self, input: crate::types::Join) -> Self {
        self.join = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that joins two datasets into one dataset using a comparison phrase on the specified data property keys. You can use inner, outer, left, right, left semi, and left anti joins.</p>
    pub fn set_join(mut self, input: ::std::option::Option<crate::types::Join>) -> Self {
        self.join = input;
        self
    }
    /// <p>Specifies a transform that joins two datasets into one dataset using a comparison phrase on the specified data property keys. You can use inner, outer, left, right, left semi, and left anti joins.</p>
    pub fn get_join(&self) -> &::std::option::Option<crate::types::Join> {
        &self.join
    }
    /// <p>Specifies a transform that splits data property keys into two <code>DynamicFrames</code>. The output is a collection of <code>DynamicFrames</code>: one with selected data property keys, and one with the remaining data property keys.</p>
    pub fn split_fields(mut self, input: crate::types::SplitFields) -> Self {
        self.split_fields = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that splits data property keys into two <code>DynamicFrames</code>. The output is a collection of <code>DynamicFrames</code>: one with selected data property keys, and one with the remaining data property keys.</p>
    pub fn set_split_fields(mut self, input: ::std::option::Option<crate::types::SplitFields>) -> Self {
        self.split_fields = input;
        self
    }
    /// <p>Specifies a transform that splits data property keys into two <code>DynamicFrames</code>. The output is a collection of <code>DynamicFrames</code>: one with selected data property keys, and one with the remaining data property keys.</p>
    pub fn get_split_fields(&self) -> &::std::option::Option<crate::types::SplitFields> {
        &self.split_fields
    }
    /// <p>Specifies a transform that chooses one <code>DynamicFrame</code> from a collection of <code>DynamicFrames</code>. The output is the selected <code>DynamicFrame</code> </p>
    pub fn select_from_collection(mut self, input: crate::types::SelectFromCollection) -> Self {
        self.select_from_collection = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that chooses one <code>DynamicFrame</code> from a collection of <code>DynamicFrames</code>. The output is the selected <code>DynamicFrame</code> </p>
    pub fn set_select_from_collection(mut self, input: ::std::option::Option<crate::types::SelectFromCollection>) -> Self {
        self.select_from_collection = input;
        self
    }
    /// <p>Specifies a transform that chooses one <code>DynamicFrame</code> from a collection of <code>DynamicFrames</code>. The output is the selected <code>DynamicFrame</code> </p>
    pub fn get_select_from_collection(&self) -> &::std::option::Option<crate::types::SelectFromCollection> {
        &self.select_from_collection
    }
    /// <p>Specifies a transform that locates records in the dataset that have missing values and adds a new field with a value determined by imputation. The input data set is used to train the machine learning model that determines what the missing value should be.</p>
    pub fn fill_missing_values(mut self, input: crate::types::FillMissingValues) -> Self {
        self.fill_missing_values = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that locates records in the dataset that have missing values and adds a new field with a value determined by imputation. The input data set is used to train the machine learning model that determines what the missing value should be.</p>
    pub fn set_fill_missing_values(mut self, input: ::std::option::Option<crate::types::FillMissingValues>) -> Self {
        self.fill_missing_values = input;
        self
    }
    /// <p>Specifies a transform that locates records in the dataset that have missing values and adds a new field with a value determined by imputation. The input data set is used to train the machine learning model that determines what the missing value should be.</p>
    pub fn get_fill_missing_values(&self) -> &::std::option::Option<crate::types::FillMissingValues> {
        &self.fill_missing_values
    }
    /// <p>Specifies a transform that splits a dataset into two, based on a filter condition.</p>
    pub fn filter(mut self, input: crate::types::Filter) -> Self {
        self.filter = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that splits a dataset into two, based on a filter condition.</p>
    pub fn set_filter(mut self, input: ::std::option::Option<crate::types::Filter>) -> Self {
        self.filter = input;
        self
    }
    /// <p>Specifies a transform that splits a dataset into two, based on a filter condition.</p>
    pub fn get_filter(&self) -> &::std::option::Option<crate::types::Filter> {
        &self.filter
    }
    /// <p>Specifies a transform that uses custom code you provide to perform the data transformation. The output is a collection of DynamicFrames.</p>
    pub fn custom_code(mut self, input: crate::types::CustomCode) -> Self {
        self.custom_code = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that uses custom code you provide to perform the data transformation. The output is a collection of DynamicFrames.</p>
    pub fn set_custom_code(mut self, input: ::std::option::Option<crate::types::CustomCode>) -> Self {
        self.custom_code = input;
        self
    }
    /// <p>Specifies a transform that uses custom code you provide to perform the data transformation. The output is a collection of DynamicFrames.</p>
    pub fn get_custom_code(&self) -> &::std::option::Option<crate::types::CustomCode> {
        &self.custom_code
    }
    /// <p>Specifies a transform where you enter a SQL query using Spark SQL syntax to transform the data. The output is a single <code>DynamicFrame</code>.</p>
    pub fn spark_sql(mut self, input: crate::types::SparkSql) -> Self {
        self.spark_sql = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform where you enter a SQL query using Spark SQL syntax to transform the data. The output is a single <code>DynamicFrame</code>.</p>
    pub fn set_spark_sql(mut self, input: ::std::option::Option<crate::types::SparkSql>) -> Self {
        self.spark_sql = input;
        self
    }
    /// <p>Specifies a transform where you enter a SQL query using Spark SQL syntax to transform the data. The output is a single <code>DynamicFrame</code>.</p>
    pub fn get_spark_sql(&self) -> &::std::option::Option<crate::types::SparkSql> {
        &self.spark_sql
    }
    /// <p>Specifies a direct Amazon Kinesis data source.</p>
    pub fn direct_kinesis_source(mut self, input: crate::types::DirectKinesisSource) -> Self {
        self.direct_kinesis_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a direct Amazon Kinesis data source.</p>
    pub fn set_direct_kinesis_source(mut self, input: ::std::option::Option<crate::types::DirectKinesisSource>) -> Self {
        self.direct_kinesis_source = input;
        self
    }
    /// <p>Specifies a direct Amazon Kinesis data source.</p>
    pub fn get_direct_kinesis_source(&self) -> &::std::option::Option<crate::types::DirectKinesisSource> {
        &self.direct_kinesis_source
    }
    /// <p>Specifies an Apache Kafka data store.</p>
    pub fn direct_kafka_source(mut self, input: crate::types::DirectKafkaSource) -> Self {
        self.direct_kafka_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies an Apache Kafka data store.</p>
    pub fn set_direct_kafka_source(mut self, input: ::std::option::Option<crate::types::DirectKafkaSource>) -> Self {
        self.direct_kafka_source = input;
        self
    }
    /// <p>Specifies an Apache Kafka data store.</p>
    pub fn get_direct_kafka_source(&self) -> &::std::option::Option<crate::types::DirectKafkaSource> {
        &self.direct_kafka_source
    }
    /// <p>Specifies a Kinesis data source in the Glue Data Catalog.</p>
    pub fn catalog_kinesis_source(mut self, input: crate::types::CatalogKinesisSource) -> Self {
        self.catalog_kinesis_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a Kinesis data source in the Glue Data Catalog.</p>
    pub fn set_catalog_kinesis_source(mut self, input: ::std::option::Option<crate::types::CatalogKinesisSource>) -> Self {
        self.catalog_kinesis_source = input;
        self
    }
    /// <p>Specifies a Kinesis data source in the Glue Data Catalog.</p>
    pub fn get_catalog_kinesis_source(&self) -> &::std::option::Option<crate::types::CatalogKinesisSource> {
        &self.catalog_kinesis_source
    }
    /// <p>Specifies an Apache Kafka data store in the Data Catalog.</p>
    pub fn catalog_kafka_source(mut self, input: crate::types::CatalogKafkaSource) -> Self {
        self.catalog_kafka_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies an Apache Kafka data store in the Data Catalog.</p>
    pub fn set_catalog_kafka_source(mut self, input: ::std::option::Option<crate::types::CatalogKafkaSource>) -> Self {
        self.catalog_kafka_source = input;
        self
    }
    /// <p>Specifies an Apache Kafka data store in the Data Catalog.</p>
    pub fn get_catalog_kafka_source(&self) -> &::std::option::Option<crate::types::CatalogKafkaSource> {
        &self.catalog_kafka_source
    }
    /// <p>Specifies a transform that removes columns from the dataset if all values in the column are 'null'. By default, Glue Studio will recognize null objects, but some values such as empty strings, strings that are "null", -1 integers or other placeholders such as zeros, are not automatically recognized as nulls.</p>
    pub fn drop_null_fields(mut self, input: crate::types::DropNullFields) -> Self {
        self.drop_null_fields = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that removes columns from the dataset if all values in the column are 'null'. By default, Glue Studio will recognize null objects, but some values such as empty strings, strings that are "null", -1 integers or other placeholders such as zeros, are not automatically recognized as nulls.</p>
    pub fn set_drop_null_fields(mut self, input: ::std::option::Option<crate::types::DropNullFields>) -> Self {
        self.drop_null_fields = input;
        self
    }
    /// <p>Specifies a transform that removes columns from the dataset if all values in the column are 'null'. By default, Glue Studio will recognize null objects, but some values such as empty strings, strings that are "null", -1 integers or other placeholders such as zeros, are not automatically recognized as nulls.</p>
    pub fn get_drop_null_fields(&self) -> &::std::option::Option<crate::types::DropNullFields> {
        &self.drop_null_fields
    }
    /// <p>Specifies a transform that merges a <code>DynamicFrame</code> with a staging <code>DynamicFrame</code> based on the specified primary keys to identify records. Duplicate records (records with the same primary keys) are not de-duplicated. </p>
    pub fn merge(mut self, input: crate::types::Merge) -> Self {
        self.merge = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that merges a <code>DynamicFrame</code> with a staging <code>DynamicFrame</code> based on the specified primary keys to identify records. Duplicate records (records with the same primary keys) are not de-duplicated. </p>
    pub fn set_merge(mut self, input: ::std::option::Option<crate::types::Merge>) -> Self {
        self.merge = input;
        self
    }
    /// <p>Specifies a transform that merges a <code>DynamicFrame</code> with a staging <code>DynamicFrame</code> based on the specified primary keys to identify records. Duplicate records (records with the same primary keys) are not de-duplicated. </p>
    pub fn get_merge(&self) -> &::std::option::Option<crate::types::Merge> {
        &self.merge
    }
    /// <p>Specifies a transform that combines the rows from two or more datasets into a single result.</p>
    pub fn union(mut self, input: crate::types::Union) -> Self {
        self.union = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that combines the rows from two or more datasets into a single result.</p>
    pub fn set_union(mut self, input: ::std::option::Option<crate::types::Union>) -> Self {
        self.union = input;
        self
    }
    /// <p>Specifies a transform that combines the rows from two or more datasets into a single result.</p>
    pub fn get_union(&self) -> &::std::option::Option<crate::types::Union> {
        &self.union
    }
    /// <p>Specifies a transform that identifies, removes or masks PII data.</p>
    pub fn pii_detection(mut self, input: crate::types::PiiDetection) -> Self {
        self.pii_detection = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that identifies, removes or masks PII data.</p>
    pub fn set_pii_detection(mut self, input: ::std::option::Option<crate::types::PiiDetection>) -> Self {
        self.pii_detection = input;
        self
    }
    /// <p>Specifies a transform that identifies, removes or masks PII data.</p>
    pub fn get_pii_detection(&self) -> &::std::option::Option<crate::types::PiiDetection> {
        &self.pii_detection
    }
    /// <p>Specifies a transform that groups rows by chosen fields and computes the aggregated value by specified function.</p>
    pub fn aggregate(mut self, input: crate::types::Aggregate) -> Self {
        self.aggregate = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that groups rows by chosen fields and computes the aggregated value by specified function.</p>
    pub fn set_aggregate(mut self, input: ::std::option::Option<crate::types::Aggregate>) -> Self {
        self.aggregate = input;
        self
    }
    /// <p>Specifies a transform that groups rows by chosen fields and computes the aggregated value by specified function.</p>
    pub fn get_aggregate(&self) -> &::std::option::Option<crate::types::Aggregate> {
        &self.aggregate
    }
    /// <p>Specifies a transform that removes rows of repeating data from a data set.</p>
    pub fn drop_duplicates(mut self, input: crate::types::DropDuplicates) -> Self {
        self.drop_duplicates = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a transform that removes rows of repeating data from a data set.</p>
    pub fn set_drop_duplicates(mut self, input: ::std::option::Option<crate::types::DropDuplicates>) -> Self {
        self.drop_duplicates = input;
        self
    }
    /// <p>Specifies a transform that removes rows of repeating data from a data set.</p>
    pub fn get_drop_duplicates(&self) -> &::std::option::Option<crate::types::DropDuplicates> {
        &self.drop_duplicates
    }
    /// <p>Specifies a data target that writes to a goverened catalog.</p>
    pub fn governed_catalog_target(mut self, input: crate::types::GovernedCatalogTarget) -> Self {
        self.governed_catalog_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a data target that writes to a goverened catalog.</p>
    pub fn set_governed_catalog_target(mut self, input: ::std::option::Option<crate::types::GovernedCatalogTarget>) -> Self {
        self.governed_catalog_target = input;
        self
    }
    /// <p>Specifies a data target that writes to a goverened catalog.</p>
    pub fn get_governed_catalog_target(&self) -> &::std::option::Option<crate::types::GovernedCatalogTarget> {
        &self.governed_catalog_target
    }
    /// <p>Specifies a data source in a goverened Data Catalog.</p>
    pub fn governed_catalog_source(mut self, input: crate::types::GovernedCatalogSource) -> Self {
        self.governed_catalog_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a data source in a goverened Data Catalog.</p>
    pub fn set_governed_catalog_source(mut self, input: ::std::option::Option<crate::types::GovernedCatalogSource>) -> Self {
        self.governed_catalog_source = input;
        self
    }
    /// <p>Specifies a data source in a goverened Data Catalog.</p>
    pub fn get_governed_catalog_source(&self) -> &::std::option::Option<crate::types::GovernedCatalogSource> {
        &self.governed_catalog_source
    }
    /// <p>Specifies a Microsoft SQL server data source in the Glue Data Catalog.</p>
    pub fn microsoft_sql_server_catalog_source(mut self, input: crate::types::MicrosoftSqlServerCatalogSource) -> Self {
        self.microsoft_sql_server_catalog_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a Microsoft SQL server data source in the Glue Data Catalog.</p>
    pub fn set_microsoft_sql_server_catalog_source(mut self, input: ::std::option::Option<crate::types::MicrosoftSqlServerCatalogSource>) -> Self {
        self.microsoft_sql_server_catalog_source = input;
        self
    }
    /// <p>Specifies a Microsoft SQL server data source in the Glue Data Catalog.</p>
    pub fn get_microsoft_sql_server_catalog_source(&self) -> &::std::option::Option<crate::types::MicrosoftSqlServerCatalogSource> {
        &self.microsoft_sql_server_catalog_source
    }
    /// <p>Specifies a MySQL data source in the Glue Data Catalog.</p>
    pub fn my_sql_catalog_source(mut self, input: crate::types::MySqlCatalogSource) -> Self {
        self.my_sql_catalog_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a MySQL data source in the Glue Data Catalog.</p>
    pub fn set_my_sql_catalog_source(mut self, input: ::std::option::Option<crate::types::MySqlCatalogSource>) -> Self {
        self.my_sql_catalog_source = input;
        self
    }
    /// <p>Specifies a MySQL data source in the Glue Data Catalog.</p>
    pub fn get_my_sql_catalog_source(&self) -> &::std::option::Option<crate::types::MySqlCatalogSource> {
        &self.my_sql_catalog_source
    }
    /// <p>Specifies an Oracle data source in the Glue Data Catalog.</p>
    pub fn oracle_sql_catalog_source(mut self, input: crate::types::OracleSqlCatalogSource) -> Self {
        self.oracle_sql_catalog_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies an Oracle data source in the Glue Data Catalog.</p>
    pub fn set_oracle_sql_catalog_source(mut self, input: ::std::option::Option<crate::types::OracleSqlCatalogSource>) -> Self {
        self.oracle_sql_catalog_source = input;
        self
    }
    /// <p>Specifies an Oracle data source in the Glue Data Catalog.</p>
    pub fn get_oracle_sql_catalog_source(&self) -> &::std::option::Option<crate::types::OracleSqlCatalogSource> {
        &self.oracle_sql_catalog_source
    }
    /// <p>Specifies a PostgresSQL data source in the Glue Data Catalog.</p>
    pub fn postgre_sql_catalog_source(mut self, input: crate::types::PostgreSqlCatalogSource) -> Self {
        self.postgre_sql_catalog_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a PostgresSQL data source in the Glue Data Catalog.</p>
    pub fn set_postgre_sql_catalog_source(mut self, input: ::std::option::Option<crate::types::PostgreSqlCatalogSource>) -> Self {
        self.postgre_sql_catalog_source = input;
        self
    }
    /// <p>Specifies a PostgresSQL data source in the Glue Data Catalog.</p>
    pub fn get_postgre_sql_catalog_source(&self) -> &::std::option::Option<crate::types::PostgreSqlCatalogSource> {
        &self.postgre_sql_catalog_source
    }
    /// <p>Specifies a target that uses Microsoft SQL.</p>
    pub fn microsoft_sql_server_catalog_target(mut self, input: crate::types::MicrosoftSqlServerCatalogTarget) -> Self {
        self.microsoft_sql_server_catalog_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a target that uses Microsoft SQL.</p>
    pub fn set_microsoft_sql_server_catalog_target(mut self, input: ::std::option::Option<crate::types::MicrosoftSqlServerCatalogTarget>) -> Self {
        self.microsoft_sql_server_catalog_target = input;
        self
    }
    /// <p>Specifies a target that uses Microsoft SQL.</p>
    pub fn get_microsoft_sql_server_catalog_target(&self) -> &::std::option::Option<crate::types::MicrosoftSqlServerCatalogTarget> {
        &self.microsoft_sql_server_catalog_target
    }
    /// <p>Specifies a target that uses MySQL.</p>
    pub fn my_sql_catalog_target(mut self, input: crate::types::MySqlCatalogTarget) -> Self {
        self.my_sql_catalog_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a target that uses MySQL.</p>
    pub fn set_my_sql_catalog_target(mut self, input: ::std::option::Option<crate::types::MySqlCatalogTarget>) -> Self {
        self.my_sql_catalog_target = input;
        self
    }
    /// <p>Specifies a target that uses MySQL.</p>
    pub fn get_my_sql_catalog_target(&self) -> &::std::option::Option<crate::types::MySqlCatalogTarget> {
        &self.my_sql_catalog_target
    }
    /// <p>Specifies a target that uses Oracle SQL.</p>
    pub fn oracle_sql_catalog_target(mut self, input: crate::types::OracleSqlCatalogTarget) -> Self {
        self.oracle_sql_catalog_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a target that uses Oracle SQL.</p>
    pub fn set_oracle_sql_catalog_target(mut self, input: ::std::option::Option<crate::types::OracleSqlCatalogTarget>) -> Self {
        self.oracle_sql_catalog_target = input;
        self
    }
    /// <p>Specifies a target that uses Oracle SQL.</p>
    pub fn get_oracle_sql_catalog_target(&self) -> &::std::option::Option<crate::types::OracleSqlCatalogTarget> {
        &self.oracle_sql_catalog_target
    }
    /// <p>Specifies a target that uses Postgres SQL.</p>
    pub fn postgre_sql_catalog_target(mut self, input: crate::types::PostgreSqlCatalogTarget) -> Self {
        self.postgre_sql_catalog_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a target that uses Postgres SQL.</p>
    pub fn set_postgre_sql_catalog_target(mut self, input: ::std::option::Option<crate::types::PostgreSqlCatalogTarget>) -> Self {
        self.postgre_sql_catalog_target = input;
        self
    }
    /// <p>Specifies a target that uses Postgres SQL.</p>
    pub fn get_postgre_sql_catalog_target(&self) -> &::std::option::Option<crate::types::PostgreSqlCatalogTarget> {
        &self.postgre_sql_catalog_target
    }
    /// <p>Specifies a custom visual transform created by a user.</p>
    pub fn dynamic_transform(mut self, input: crate::types::DynamicTransform) -> Self {
        self.dynamic_transform = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a custom visual transform created by a user.</p>
    pub fn set_dynamic_transform(mut self, input: ::std::option::Option<crate::types::DynamicTransform>) -> Self {
        self.dynamic_transform = input;
        self
    }
    /// <p>Specifies a custom visual transform created by a user.</p>
    pub fn get_dynamic_transform(&self) -> &::std::option::Option<crate::types::DynamicTransform> {
        &self.dynamic_transform
    }
    /// <p>Specifies your data quality evaluation criteria.</p>
    pub fn evaluate_data_quality(mut self, input: crate::types::EvaluateDataQuality) -> Self {
        self.evaluate_data_quality = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies your data quality evaluation criteria.</p>
    pub fn set_evaluate_data_quality(mut self, input: ::std::option::Option<crate::types::EvaluateDataQuality>) -> Self {
        self.evaluate_data_quality = input;
        self
    }
    /// <p>Specifies your data quality evaluation criteria.</p>
    pub fn get_evaluate_data_quality(&self) -> &::std::option::Option<crate::types::EvaluateDataQuality> {
        &self.evaluate_data_quality
    }
    /// <p>Specifies a Hudi data source that is registered in the Glue Data Catalog. The data source must be stored in Amazon S3.</p>
    pub fn s3_catalog_hudi_source(mut self, input: crate::types::S3CatalogHudiSource) -> Self {
        self.s3_catalog_hudi_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a Hudi data source that is registered in the Glue Data Catalog. The data source must be stored in Amazon S3.</p>
    pub fn set_s3_catalog_hudi_source(mut self, input: ::std::option::Option<crate::types::S3CatalogHudiSource>) -> Self {
        self.s3_catalog_hudi_source = input;
        self
    }
    /// <p>Specifies a Hudi data source that is registered in the Glue Data Catalog. The data source must be stored in Amazon S3.</p>
    pub fn get_s3_catalog_hudi_source(&self) -> &::std::option::Option<crate::types::S3CatalogHudiSource> {
        &self.s3_catalog_hudi_source
    }
    /// <p>Specifies a Hudi data source that is registered in the Glue Data Catalog.</p>
    pub fn catalog_hudi_source(mut self, input: crate::types::CatalogHudiSource) -> Self {
        self.catalog_hudi_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a Hudi data source that is registered in the Glue Data Catalog.</p>
    pub fn set_catalog_hudi_source(mut self, input: ::std::option::Option<crate::types::CatalogHudiSource>) -> Self {
        self.catalog_hudi_source = input;
        self
    }
    /// <p>Specifies a Hudi data source that is registered in the Glue Data Catalog.</p>
    pub fn get_catalog_hudi_source(&self) -> &::std::option::Option<crate::types::CatalogHudiSource> {
        &self.catalog_hudi_source
    }
    /// <p>Specifies a Hudi data source stored in Amazon S3.</p>
    pub fn s3_hudi_source(mut self, input: crate::types::S3HudiSource) -> Self {
        self.s3_hudi_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a Hudi data source stored in Amazon S3.</p>
    pub fn set_s3_hudi_source(mut self, input: ::std::option::Option<crate::types::S3HudiSource>) -> Self {
        self.s3_hudi_source = input;
        self
    }
    /// <p>Specifies a Hudi data source stored in Amazon S3.</p>
    pub fn get_s3_hudi_source(&self) -> &::std::option::Option<crate::types::S3HudiSource> {
        &self.s3_hudi_source
    }
    /// <p>Specifies a target that writes to a Hudi data source in the Glue Data Catalog.</p>
    pub fn s3_hudi_catalog_target(mut self, input: crate::types::S3HudiCatalogTarget) -> Self {
        self.s3_hudi_catalog_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a target that writes to a Hudi data source in the Glue Data Catalog.</p>
    pub fn set_s3_hudi_catalog_target(mut self, input: ::std::option::Option<crate::types::S3HudiCatalogTarget>) -> Self {
        self.s3_hudi_catalog_target = input;
        self
    }
    /// <p>Specifies a target that writes to a Hudi data source in the Glue Data Catalog.</p>
    pub fn get_s3_hudi_catalog_target(&self) -> &::std::option::Option<crate::types::S3HudiCatalogTarget> {
        &self.s3_hudi_catalog_target
    }
    /// <p>Specifies a target that writes to a Hudi data source in Amazon S3.</p>
    pub fn s3_hudi_direct_target(mut self, input: crate::types::S3HudiDirectTarget) -> Self {
        self.s3_hudi_direct_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a target that writes to a Hudi data source in Amazon S3.</p>
    pub fn set_s3_hudi_direct_target(mut self, input: ::std::option::Option<crate::types::S3HudiDirectTarget>) -> Self {
        self.s3_hudi_direct_target = input;
        self
    }
    /// <p>Specifies a target that writes to a Hudi data source in Amazon S3.</p>
    pub fn get_s3_hudi_direct_target(&self) -> &::std::option::Option<crate::types::S3HudiDirectTarget> {
        &self.s3_hudi_direct_target
    }
    /// <p>Specifies the direct JDBC source connection.</p>
    pub fn direct_jdbc_source(mut self, input: crate::types::DirectJdbcSource) -> Self {
        self.direct_jdbc_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies the direct JDBC source connection.</p>
    pub fn set_direct_jdbc_source(mut self, input: ::std::option::Option<crate::types::DirectJdbcSource>) -> Self {
        self.direct_jdbc_source = input;
        self
    }
    /// <p>Specifies the direct JDBC source connection.</p>
    pub fn get_direct_jdbc_source(&self) -> &::std::option::Option<crate::types::DirectJdbcSource> {
        &self.direct_jdbc_source
    }
    /// <p>Specifies a Delta Lake data source that is registered in the Glue Data Catalog. The data source must be stored in Amazon S3.</p>
    pub fn s3_catalog_delta_source(mut self, input: crate::types::S3CatalogDeltaSource) -> Self {
        self.s3_catalog_delta_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a Delta Lake data source that is registered in the Glue Data Catalog. The data source must be stored in Amazon S3.</p>
    pub fn set_s3_catalog_delta_source(mut self, input: ::std::option::Option<crate::types::S3CatalogDeltaSource>) -> Self {
        self.s3_catalog_delta_source = input;
        self
    }
    /// <p>Specifies a Delta Lake data source that is registered in the Glue Data Catalog. The data source must be stored in Amazon S3.</p>
    pub fn get_s3_catalog_delta_source(&self) -> &::std::option::Option<crate::types::S3CatalogDeltaSource> {
        &self.s3_catalog_delta_source
    }
    /// <p>Specifies a Delta Lake data source that is registered in the Glue Data Catalog.</p>
    pub fn catalog_delta_source(mut self, input: crate::types::CatalogDeltaSource) -> Self {
        self.catalog_delta_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a Delta Lake data source that is registered in the Glue Data Catalog.</p>
    pub fn set_catalog_delta_source(mut self, input: ::std::option::Option<crate::types::CatalogDeltaSource>) -> Self {
        self.catalog_delta_source = input;
        self
    }
    /// <p>Specifies a Delta Lake data source that is registered in the Glue Data Catalog.</p>
    pub fn get_catalog_delta_source(&self) -> &::std::option::Option<crate::types::CatalogDeltaSource> {
        &self.catalog_delta_source
    }
    /// <p>Specifies a Delta Lake data source stored in Amazon S3.</p>
    pub fn s3_delta_source(mut self, input: crate::types::S3DeltaSource) -> Self {
        self.s3_delta_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a Delta Lake data source stored in Amazon S3.</p>
    pub fn set_s3_delta_source(mut self, input: ::std::option::Option<crate::types::S3DeltaSource>) -> Self {
        self.s3_delta_source = input;
        self
    }
    /// <p>Specifies a Delta Lake data source stored in Amazon S3.</p>
    pub fn get_s3_delta_source(&self) -> &::std::option::Option<crate::types::S3DeltaSource> {
        &self.s3_delta_source
    }
    /// <p>Specifies a target that writes to a Delta Lake data source in the Glue Data Catalog.</p>
    pub fn s3_delta_catalog_target(mut self, input: crate::types::S3DeltaCatalogTarget) -> Self {
        self.s3_delta_catalog_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a target that writes to a Delta Lake data source in the Glue Data Catalog.</p>
    pub fn set_s3_delta_catalog_target(mut self, input: ::std::option::Option<crate::types::S3DeltaCatalogTarget>) -> Self {
        self.s3_delta_catalog_target = input;
        self
    }
    /// <p>Specifies a target that writes to a Delta Lake data source in the Glue Data Catalog.</p>
    pub fn get_s3_delta_catalog_target(&self) -> &::std::option::Option<crate::types::S3DeltaCatalogTarget> {
        &self.s3_delta_catalog_target
    }
    /// <p>Specifies a target that writes to a Delta Lake data source in Amazon S3.</p>
    pub fn s3_delta_direct_target(mut self, input: crate::types::S3DeltaDirectTarget) -> Self {
        self.s3_delta_direct_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a target that writes to a Delta Lake data source in Amazon S3.</p>
    pub fn set_s3_delta_direct_target(mut self, input: ::std::option::Option<crate::types::S3DeltaDirectTarget>) -> Self {
        self.s3_delta_direct_target = input;
        self
    }
    /// <p>Specifies a target that writes to a Delta Lake data source in Amazon S3.</p>
    pub fn get_s3_delta_direct_target(&self) -> &::std::option::Option<crate::types::S3DeltaDirectTarget> {
        &self.s3_delta_direct_target
    }
    /// <p>Specifies a target that writes to a data source in Amazon Redshift.</p>
    pub fn amazon_redshift_source(mut self, input: crate::types::AmazonRedshiftSource) -> Self {
        self.amazon_redshift_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a target that writes to a data source in Amazon Redshift.</p>
    pub fn set_amazon_redshift_source(mut self, input: ::std::option::Option<crate::types::AmazonRedshiftSource>) -> Self {
        self.amazon_redshift_source = input;
        self
    }
    /// <p>Specifies a target that writes to a data source in Amazon Redshift.</p>
    pub fn get_amazon_redshift_source(&self) -> &::std::option::Option<crate::types::AmazonRedshiftSource> {
        &self.amazon_redshift_source
    }
    /// <p>Specifies a target that writes to a data target in Amazon Redshift.</p>
    pub fn amazon_redshift_target(mut self, input: crate::types::AmazonRedshiftTarget) -> Self {
        self.amazon_redshift_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a target that writes to a data target in Amazon Redshift.</p>
    pub fn set_amazon_redshift_target(mut self, input: ::std::option::Option<crate::types::AmazonRedshiftTarget>) -> Self {
        self.amazon_redshift_target = input;
        self
    }
    /// <p>Specifies a target that writes to a data target in Amazon Redshift.</p>
    pub fn get_amazon_redshift_target(&self) -> &::std::option::Option<crate::types::AmazonRedshiftTarget> {
        &self.amazon_redshift_target
    }
    /// <p>Specifies your data quality evaluation criteria. Allows multiple input data and returns a collection of Dynamic Frames.</p>
    pub fn evaluate_data_quality_multi_frame(mut self, input: crate::types::EvaluateDataQualityMultiFrame) -> Self {
        self.evaluate_data_quality_multi_frame = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies your data quality evaluation criteria. Allows multiple input data and returns a collection of Dynamic Frames.</p>
    pub fn set_evaluate_data_quality_multi_frame(mut self, input: ::std::option::Option<crate::types::EvaluateDataQualityMultiFrame>) -> Self {
        self.evaluate_data_quality_multi_frame = input;
        self
    }
    /// <p>Specifies your data quality evaluation criteria. Allows multiple input data and returns a collection of Dynamic Frames.</p>
    pub fn get_evaluate_data_quality_multi_frame(&self) -> &::std::option::Option<crate::types::EvaluateDataQualityMultiFrame> {
        &self.evaluate_data_quality_multi_frame
    }
    /// <p>Specifies a Glue DataBrew recipe node.</p>
    pub fn recipe(mut self, input: crate::types::Recipe) -> Self {
        self.recipe = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a Glue DataBrew recipe node.</p>
    pub fn set_recipe(mut self, input: ::std::option::Option<crate::types::Recipe>) -> Self {
        self.recipe = input;
        self
    }
    /// <p>Specifies a Glue DataBrew recipe node.</p>
    pub fn get_recipe(&self) -> &::std::option::Option<crate::types::Recipe> {
        &self.recipe
    }
    /// <p>Specifies a Snowflake data source.</p>
    pub fn snowflake_source(mut self, input: crate::types::SnowflakeSource) -> Self {
        self.snowflake_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a Snowflake data source.</p>
    pub fn set_snowflake_source(mut self, input: ::std::option::Option<crate::types::SnowflakeSource>) -> Self {
        self.snowflake_source = input;
        self
    }
    /// <p>Specifies a Snowflake data source.</p>
    pub fn get_snowflake_source(&self) -> &::std::option::Option<crate::types::SnowflakeSource> {
        &self.snowflake_source
    }
    /// <p>Specifies a target that writes to a Snowflake data source.</p>
    pub fn snowflake_target(mut self, input: crate::types::SnowflakeTarget) -> Self {
        self.snowflake_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a target that writes to a Snowflake data source.</p>
    pub fn set_snowflake_target(mut self, input: ::std::option::Option<crate::types::SnowflakeTarget>) -> Self {
        self.snowflake_target = input;
        self
    }
    /// <p>Specifies a target that writes to a Snowflake data source.</p>
    pub fn get_snowflake_target(&self) -> &::std::option::Option<crate::types::SnowflakeTarget> {
        &self.snowflake_target
    }
    /// <p>Specifies a source generated with standard connection options.</p>
    pub fn connector_data_source(mut self, input: crate::types::ConnectorDataSource) -> Self {
        self.connector_data_source = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a source generated with standard connection options.</p>
    pub fn set_connector_data_source(mut self, input: ::std::option::Option<crate::types::ConnectorDataSource>) -> Self {
        self.connector_data_source = input;
        self
    }
    /// <p>Specifies a source generated with standard connection options.</p>
    pub fn get_connector_data_source(&self) -> &::std::option::Option<crate::types::ConnectorDataSource> {
        &self.connector_data_source
    }
    /// <p>Specifies a target generated with standard connection options.</p>
    pub fn connector_data_target(mut self, input: crate::types::ConnectorDataTarget) -> Self {
        self.connector_data_target = ::std::option::Option::Some(input);
        self
    }
    /// <p>Specifies a target generated with standard connection options.</p>
    pub fn set_connector_data_target(mut self, input: ::std::option::Option<crate::types::ConnectorDataTarget>) -> Self {
        self.connector_data_target = input;
        self
    }
    /// <p>Specifies a target generated with standard connection options.</p>
    pub fn get_connector_data_target(&self) -> &::std::option::Option<crate::types::ConnectorDataTarget> {
        &self.connector_data_target
    }
    /// Consumes the builder and constructs a [`CodeGenConfigurationNode`](crate::types::CodeGenConfigurationNode).
    pub fn build(self) -> crate::types::CodeGenConfigurationNode {
        crate::types::CodeGenConfigurationNode {
            athena_connector_source: self.athena_connector_source,
            jdbc_connector_source: self.jdbc_connector_source,
            spark_connector_source: self.spark_connector_source,
            catalog_source: self.catalog_source,
            redshift_source: self.redshift_source,
            s3_catalog_source: self.s3_catalog_source,
            s3_csv_source: self.s3_csv_source,
            s3_json_source: self.s3_json_source,
            s3_parquet_source: self.s3_parquet_source,
            relational_catalog_source: self.relational_catalog_source,
            dynamo_db_catalog_source: self.dynamo_db_catalog_source,
            jdbc_connector_target: self.jdbc_connector_target,
            spark_connector_target: self.spark_connector_target,
            catalog_target: self.catalog_target,
            redshift_target: self.redshift_target,
            s3_catalog_target: self.s3_catalog_target,
            s3_glue_parquet_target: self.s3_glue_parquet_target,
            s3_direct_target: self.s3_direct_target,
            apply_mapping: self.apply_mapping,
            select_fields: self.select_fields,
            drop_fields: self.drop_fields,
            rename_field: self.rename_field,
            spigot: self.spigot,
            join: self.join,
            split_fields: self.split_fields,
            select_from_collection: self.select_from_collection,
            fill_missing_values: self.fill_missing_values,
            filter: self.filter,
            custom_code: self.custom_code,
            spark_sql: self.spark_sql,
            direct_kinesis_source: self.direct_kinesis_source,
            direct_kafka_source: self.direct_kafka_source,
            catalog_kinesis_source: self.catalog_kinesis_source,
            catalog_kafka_source: self.catalog_kafka_source,
            drop_null_fields: self.drop_null_fields,
            merge: self.merge,
            union: self.union,
            pii_detection: self.pii_detection,
            aggregate: self.aggregate,
            drop_duplicates: self.drop_duplicates,
            governed_catalog_target: self.governed_catalog_target,
            governed_catalog_source: self.governed_catalog_source,
            microsoft_sql_server_catalog_source: self.microsoft_sql_server_catalog_source,
            my_sql_catalog_source: self.my_sql_catalog_source,
            oracle_sql_catalog_source: self.oracle_sql_catalog_source,
            postgre_sql_catalog_source: self.postgre_sql_catalog_source,
            microsoft_sql_server_catalog_target: self.microsoft_sql_server_catalog_target,
            my_sql_catalog_target: self.my_sql_catalog_target,
            oracle_sql_catalog_target: self.oracle_sql_catalog_target,
            postgre_sql_catalog_target: self.postgre_sql_catalog_target,
            dynamic_transform: self.dynamic_transform,
            evaluate_data_quality: self.evaluate_data_quality,
            s3_catalog_hudi_source: self.s3_catalog_hudi_source,
            catalog_hudi_source: self.catalog_hudi_source,
            s3_hudi_source: self.s3_hudi_source,
            s3_hudi_catalog_target: self.s3_hudi_catalog_target,
            s3_hudi_direct_target: self.s3_hudi_direct_target,
            direct_jdbc_source: self.direct_jdbc_source,
            s3_catalog_delta_source: self.s3_catalog_delta_source,
            catalog_delta_source: self.catalog_delta_source,
            s3_delta_source: self.s3_delta_source,
            s3_delta_catalog_target: self.s3_delta_catalog_target,
            s3_delta_direct_target: self.s3_delta_direct_target,
            amazon_redshift_source: self.amazon_redshift_source,
            amazon_redshift_target: self.amazon_redshift_target,
            evaluate_data_quality_multi_frame: self.evaluate_data_quality_multi_frame,
            recipe: self.recipe,
            snowflake_source: self.snowflake_source,
            snowflake_target: self.snowflake_target,
            connector_data_source: self.connector_data_source,
            connector_data_target: self.connector_data_target,
        }
    }
}