1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Defines a batch.
type Batch struct {
// The job name of the batch.
//
// This member is required.
BatchJobName *string
// The batch job parameters of the batch.
BatchJobParameters map[string]string
// The export data set names of the batch.
ExportDataSetNames []string
noSmithyDocumentSerde
}
// Defines a batch step input.
type BatchStepInput struct {
// The batch job name of the batch step input.
//
// This member is required.
BatchJobName *string
// The resource of the batch step input.
//
// This member is required.
Resource MainframeResourceSummary
// The batch job parameters of the batch step input.
BatchJobParameters map[string]string
// The export data set names of the batch step input.
ExportDataSetNames []string
// The properties of the batch step input.
Properties *MainframeActionProperties
noSmithyDocumentSerde
}
// Defines a batch step output.
type BatchStepOutput struct {
// The data set details of the batch step output.
DataSetDetails []DataSet
// The data set export location of the batch step output.
DataSetExportLocation *string
// The Database Migration Service (DMS) output location of the batch step output.
DmsOutputLocation *string
noSmithyDocumentSerde
}
// Summarizes a batch job.
type BatchSummary struct {
// The step input of the batch summary.
//
// This member is required.
StepInput *BatchStepInput
// The step output of the batch summary.
StepOutput *BatchStepOutput
noSmithyDocumentSerde
}
// Specifies the CloudFormation template and its parameters.
type CloudFormation struct {
// The template location of the CloudFormation template.
//
// This member is required.
TemplateLocation *string
// The CloudFormation properties in the CloudFormation template.
Parameters map[string]string
noSmithyDocumentSerde
}
// Specifies the CloudFormation action.
type CloudFormationAction struct {
// The resource of the CloudFormation action.
//
// This member is required.
Resource *string
// The action type of the CloudFormation action.
ActionType CloudFormationActionType
noSmithyDocumentSerde
}
// Specifies the CloudFormation step summary.
//
// The following types satisfy this interface:
//
// CloudFormationStepSummaryMemberCreateCloudformation
// CloudFormationStepSummaryMemberDeleteCloudformation
type CloudFormationStepSummary interface {
isCloudFormationStepSummary()
}
// Creates the CloudFormation summary of the step.
type CloudFormationStepSummaryMemberCreateCloudformation struct {
Value CreateCloudFormationSummary
noSmithyDocumentSerde
}
func (*CloudFormationStepSummaryMemberCreateCloudformation) isCloudFormationStepSummary() {}
// Deletes the CloudFormation summary of the CloudFormation step summary.
type CloudFormationStepSummaryMemberDeleteCloudformation struct {
Value DeleteCloudFormationSummary
noSmithyDocumentSerde
}
func (*CloudFormationStepSummaryMemberDeleteCloudformation) isCloudFormationStepSummary() {}
// Compares the action.
type CompareAction struct {
// The input of the compare action.
//
// This member is required.
Input Input
// The output of the compare action.
Output Output
noSmithyDocumentSerde
}
// Specifies the compare action summary.
type CompareActionSummary struct {
// The type of the compare action summary.
//
// This member is required.
Type File
noSmithyDocumentSerde
}
// Compares the database Change Data Capture (CDC) step input.
type CompareDatabaseCDCStepInput struct {
// The source location of the compare database CDC step input.
//
// This member is required.
SourceLocation *string
// The source metadata of the compare database CDC step input.
//
// This member is required.
SourceMetadata *SourceDatabaseMetadata
// The target location of the compare database CDC step input.
//
// This member is required.
TargetLocation *string
// The target metadata location of the compare database CDC step input.
//
// This member is required.
TargetMetadata *TargetDatabaseMetadata
// The output location of the compare database CDC step input.
OutputLocation *string
noSmithyDocumentSerde
}
// Compares the database CDC step output.
type CompareDatabaseCDCStepOutput struct {
// The comparison output of the compare database CDC step output.
//
// This member is required.
ComparisonOutputLocation *string
// The comparison status of the compare database CDC step output.
//
// This member is required.
ComparisonStatus ComparisonStatusEnum
noSmithyDocumentSerde
}
// Compares the database CDC summary.
type CompareDatabaseCDCSummary struct {
// The step input of the compare database CDC summary.
//
// This member is required.
StepInput *CompareDatabaseCDCStepInput
// The step output of the compare database CDC summary.
StepOutput *CompareDatabaseCDCStepOutput
noSmithyDocumentSerde
}
// Specifies the compare data sets step input.
type CompareDataSetsStepInput struct {
// The source data sets of the compare data sets step input location.
//
// This member is required.
SourceDataSets []DataSet
// The source location of the compare data sets step input location.
//
// This member is required.
SourceLocation *string
// The target data sets of the compare data sets step input location.
//
// This member is required.
TargetDataSets []DataSet
// The target location of the compare data sets step input location.
//
// This member is required.
TargetLocation *string
noSmithyDocumentSerde
}
// Specifies the compare data sets step output.
type CompareDataSetsStepOutput struct {
// The comparison output location of the compare data sets step output.
//
// This member is required.
ComparisonOutputLocation *string
// The comparison status of the compare data sets step output.
//
// This member is required.
ComparisonStatus ComparisonStatusEnum
noSmithyDocumentSerde
}
// Compares data sets summary.
type CompareDataSetsSummary struct {
// The step input of the compare data sets summary.
//
// This member is required.
StepInput *CompareDataSetsStepInput
// The step output of the compare data sets summary.
StepOutput *CompareDataSetsStepOutput
noSmithyDocumentSerde
}
// Compares the file type.
//
// The following types satisfy this interface:
//
// CompareFileTypeMemberDatabaseCDC
// CompareFileTypeMemberDatasets
type CompareFileType interface {
isCompareFileType()
}
// The database CDC of the compare file type.
type CompareFileTypeMemberDatabaseCDC struct {
Value CompareDatabaseCDCSummary
noSmithyDocumentSerde
}
func (*CompareFileTypeMemberDatabaseCDC) isCompareFileType() {}
// The data sets in the compare file type.
type CompareFileTypeMemberDatasets struct {
Value CompareDataSetsSummary
noSmithyDocumentSerde
}
func (*CompareFileTypeMemberDatasets) isCompareFileType() {}
// Creates the CloudFormation step input.
type CreateCloudFormationStepInput struct {
// The template location of the CloudFormation step input.
//
// This member is required.
TemplateLocation *string
// The CloudFormation properties of the CloudFormation step input.
Parameters map[string]string
noSmithyDocumentSerde
}
// Creates a CloudFormation step output.
type CreateCloudFormationStepOutput struct {
// The stack ID of the CloudFormation step output.
//
// This member is required.
StackId *string
// The exports of the CloudFormation step output.
Exports map[string]string
noSmithyDocumentSerde
}
// Creates a CloudFormation summary.
type CreateCloudFormationSummary struct {
// The step input of the CloudFormation summary.
//
// This member is required.
StepInput *CreateCloudFormationStepInput
// The step output of the CloudFormation summary.
StepOutput *CreateCloudFormationStepOutput
noSmithyDocumentSerde
}
// Defines the Change Data Capture (CDC) of the database.
type DatabaseCDC struct {
// The source metadata of the database CDC.
//
// This member is required.
SourceMetadata *SourceDatabaseMetadata
// The target metadata of the database CDC.
//
// This member is required.
TargetMetadata *TargetDatabaseMetadata
noSmithyDocumentSerde
}
// Defines a data set.
type DataSet struct {
// The CCSID of the data set.
//
// This member is required.
Ccsid *string
// The format of the data set.
//
// This member is required.
Format Format
// The length of the data set.
//
// This member is required.
Length *int32
// The name of the data set.
//
// This member is required.
Name *string
// The type of the data set.
//
// This member is required.
Type DataSetType
noSmithyDocumentSerde
}
// Deletes the CloudFormation step input.
type DeleteCloudFormationStepInput struct {
// The stack ID of the deleted CloudFormation step input.
//
// This member is required.
StackId *string
noSmithyDocumentSerde
}
// Deletes the CloudFormation summary step output.
type DeleteCloudFormationStepOutput struct {
noSmithyDocumentSerde
}
// Deletes the CloudFormation summary.
type DeleteCloudFormationSummary struct {
// The step input of the deleted CloudFormation summary.
//
// This member is required.
StepInput *DeleteCloudFormationStepInput
// The step output of the deleted CloudFormation summary.
StepOutput *DeleteCloudFormationStepOutput
noSmithyDocumentSerde
}
// Defines a file.
//
// The following types satisfy this interface:
//
// FileMemberFileType
type File interface {
isFile()
}
// The file type of the file.
type FileMemberFileType struct {
Value CompareFileType
noSmithyDocumentSerde
}
func (*FileMemberFileType) isFile() {}
// Specifies a file metadata.
//
// The following types satisfy this interface:
//
// FileMetadataMemberDatabaseCDC
// FileMetadataMemberDataSets
type FileMetadata interface {
isFileMetadata()
}
// The database CDC of the file metadata.
type FileMetadataMemberDatabaseCDC struct {
Value DatabaseCDC
noSmithyDocumentSerde
}
func (*FileMetadataMemberDatabaseCDC) isFileMetadata() {}
// The data sets of the file metadata.
type FileMetadataMemberDataSets struct {
Value []DataSet
noSmithyDocumentSerde
}
func (*FileMetadataMemberDataSets) isFileMetadata() {}
// Specifies the input.
//
// The following types satisfy this interface:
//
// InputMemberFile
type Input interface {
isInput()
}
// The file in the input.
type InputMemberFile struct {
Value InputFile
noSmithyDocumentSerde
}
func (*InputMemberFile) isInput() {}
// Specifies the input file.
type InputFile struct {
// The file metadata of the input file.
//
// This member is required.
FileMetadata FileMetadata
// The source location of the input file.
//
// This member is required.
SourceLocation *string
// The target location of the input file.
//
// This member is required.
TargetLocation *string
noSmithyDocumentSerde
}
// Specifies the AWS Mainframe Modernization managed action properties.
type M2ManagedActionProperties struct {
// Force stops the AWS Mainframe Modernization managed action properties.
ForceStop *bool
// The import data set location of the AWS Mainframe Modernization managed action
// properties.
ImportDataSetLocation *string
noSmithyDocumentSerde
}
// Specifies the AWS Mainframe Modernization managed application.
type M2ManagedApplication struct {
// The application ID of the AWS Mainframe Modernization managed application.
//
// This member is required.
ApplicationId *string
// The runtime of the AWS Mainframe Modernization managed application.
//
// This member is required.
Runtime M2ManagedRuntime
// The listener port of the AWS Mainframe Modernization managed application.
ListenerPort *string
// The VPC endpoint service name of the AWS Mainframe Modernization managed
// application.
VpcEndpointServiceName *string
noSmithyDocumentSerde
}
// Specifies the AWS Mainframe Modernization managed application action.
type M2ManagedApplicationAction struct {
// The action type of the AWS Mainframe Modernization managed application action.
//
// This member is required.
ActionType M2ManagedActionType
// The resource of the AWS Mainframe Modernization managed application action.
//
// This member is required.
Resource *string
// The properties of the AWS Mainframe Modernization managed application action.
Properties *M2ManagedActionProperties
noSmithyDocumentSerde
}
// Specifies the AWS Mainframe Modernization managed application step input.
type M2ManagedApplicationStepInput struct {
// The action type of the AWS Mainframe Modernization managed application step
// input.
//
// This member is required.
ActionType M2ManagedActionType
// The application ID of the AWS Mainframe Modernization managed application step
// input.
//
// This member is required.
ApplicationId *string
// The runtime of the AWS Mainframe Modernization managed application step input.
//
// This member is required.
Runtime *string
// The listener port of the AWS Mainframe Modernization managed application step
// input.
ListenerPort *int32
// The properties of the AWS Mainframe Modernization managed application step
// input.
Properties *M2ManagedActionProperties
// The VPC endpoint service name of the AWS Mainframe Modernization managed
// application step input.
VpcEndpointServiceName *string
noSmithyDocumentSerde
}
// Specifies the AWS Mainframe Modernization managed application step output.
type M2ManagedApplicationStepOutput struct {
// The import data set summary of the AWS Mainframe Modernization managed
// application step output.
ImportDataSetSummary map[string]string
noSmithyDocumentSerde
}
// Specifies the AWS Mainframe Modernization managed application step summary.
type M2ManagedApplicationStepSummary struct {
// The step input of the AWS Mainframe Modernization managed application step
// summary.
//
// This member is required.
StepInput *M2ManagedApplicationStepInput
// The step output of the AWS Mainframe Modernization managed application step
// summary.
StepOutput *M2ManagedApplicationStepOutput
noSmithyDocumentSerde
}
// Specifies the AWS Mainframe Modernization managed application summary.
type M2ManagedApplicationSummary struct {
// The application ID of the AWS Mainframe Modernization managed application
// summary.
//
// This member is required.
ApplicationId *string
// The runtime of the AWS Mainframe Modernization managed application summary.
//
// This member is required.
Runtime M2ManagedRuntime
// The listener port of the AWS Mainframe Modernization managed application
// summary.
ListenerPort *int32
noSmithyDocumentSerde
}
// Specifies the AWS Mainframe Modernization non-managed application.
type M2NonManagedApplication struct {
// The listener port of the AWS Mainframe Modernization non-managed application.
//
// This member is required.
ListenerPort *string
// The runtime of the AWS Mainframe Modernization non-managed application.
//
// This member is required.
Runtime M2NonManagedRuntime
// The VPC endpoint service name of the AWS Mainframe Modernization non-managed
// application.
//
// This member is required.
VpcEndpointServiceName *string
// The web application name of the AWS Mainframe Modernization non-managed
// application.
WebAppName *string
noSmithyDocumentSerde
}
// Specifies the AWS Mainframe Modernization non-managed application action.
type M2NonManagedApplicationAction struct {
// The action type of the AWS Mainframe Modernization non-managed application
// action.
//
// This member is required.
ActionType M2NonManagedActionType
// The resource of the AWS Mainframe Modernization non-managed application action.
//
// This member is required.
Resource *string
noSmithyDocumentSerde
}
// Specifies the AWS Mainframe Modernization non-managed application step input.
type M2NonManagedApplicationStepInput struct {
// The action type of the AWS Mainframe Modernization non-managed application step
// input.
//
// This member is required.
ActionType M2NonManagedActionType
// The listener port of the AWS Mainframe Modernization non-managed application
// step input.
//
// This member is required.
ListenerPort *int32
// The runtime of the AWS Mainframe Modernization non-managed application step
// input.
//
// This member is required.
Runtime M2NonManagedRuntime
// The VPC endpoint service name of the AWS Mainframe Modernization non-managed
// application step input.
//
// This member is required.
VpcEndpointServiceName *string
// The web app name of the AWS Mainframe Modernization non-managed application
// step input.
WebAppName *string
noSmithyDocumentSerde
}
// Specifies the AWS Mainframe Modernization non-managed application step output.
type M2NonManagedApplicationStepOutput struct {
noSmithyDocumentSerde
}
// Specifies the AWS Mainframe Modernization non-managed application step summary.
type M2NonManagedApplicationStepSummary struct {
// The step input of the AWS Mainframe Modernization non-managed application step
// summary.
//
// This member is required.
StepInput *M2NonManagedApplicationStepInput
// The step output of the AWS Mainframe Modernization non-managed application step
// summary.
StepOutput *M2NonManagedApplicationStepOutput
noSmithyDocumentSerde
}
// Specifies the AWS Mainframe Modernization non-managed application summary.
type M2NonManagedApplicationSummary struct {
// The listener port of the AWS Mainframe Modernization non-managed application
// summary.
//
// This member is required.
ListenerPort *int32
// The runtime of the AWS Mainframe Modernization non-managed application summary.
//
// This member is required.
Runtime M2NonManagedRuntime
// The VPC endpoint service name of the AWS Mainframe Modernization non-managed
// application summary.
//
// This member is required.
VpcEndpointServiceName *string
// The web application name of the AWS Mainframe Modernization non-managed
// application summary.
WebAppName *string
noSmithyDocumentSerde
}
// Specifies the mainframe action.
type MainframeAction struct {
// The action type of the mainframe action.
//
// This member is required.
ActionType MainframeActionType
// The resource of the mainframe action.
//
// This member is required.
Resource *string
// The properties of the mainframe action.
Properties *MainframeActionProperties
noSmithyDocumentSerde
}
// Specifies the mainframe action properties.
type MainframeActionProperties struct {
// The DMS task ARN of the mainframe action properties.
DmsTaskArn *string
noSmithyDocumentSerde
}
// Specifies the mainframe action summary.
//
// The following types satisfy this interface:
//
// MainframeActionSummaryMemberBatch
// MainframeActionSummaryMemberTn3270
type MainframeActionSummary interface {
isMainframeActionSummary()
}
// The batch of the mainframe action summary.
type MainframeActionSummaryMemberBatch struct {
Value BatchSummary
noSmithyDocumentSerde
}
func (*MainframeActionSummaryMemberBatch) isMainframeActionSummary() {}
// The tn3270 port of the mainframe action summary.
type MainframeActionSummaryMemberTn3270 struct {
Value TN3270Summary
noSmithyDocumentSerde
}
func (*MainframeActionSummaryMemberTn3270) isMainframeActionSummary() {}
// Specifies the mainframe action type.
//
// The following types satisfy this interface:
//
// MainframeActionTypeMemberBatch
// MainframeActionTypeMemberTn3270
type MainframeActionType interface {
isMainframeActionType()
}
// The batch of the mainframe action type.
type MainframeActionTypeMemberBatch struct {
Value Batch
noSmithyDocumentSerde
}
func (*MainframeActionTypeMemberBatch) isMainframeActionType() {}
// The tn3270 port of the mainframe action type.
type MainframeActionTypeMemberTn3270 struct {
Value TN3270
noSmithyDocumentSerde
}
func (*MainframeActionTypeMemberTn3270) isMainframeActionType() {}
// Specifies the mainframe resource summary.
//
// The following types satisfy this interface:
//
// MainframeResourceSummaryMemberM2ManagedApplication
// MainframeResourceSummaryMemberM2NonManagedApplication
type MainframeResourceSummary interface {
isMainframeResourceSummary()
}
// The AWS Mainframe Modernization managed application in the mainframe resource
// summary.
type MainframeResourceSummaryMemberM2ManagedApplication struct {
Value M2ManagedApplicationSummary
noSmithyDocumentSerde
}
func (*MainframeResourceSummaryMemberM2ManagedApplication) isMainframeResourceSummary() {}
// The AWS Mainframe Modernization non-managed application in the mainframe
// resource summary.
type MainframeResourceSummaryMemberM2NonManagedApplication struct {
Value M2NonManagedApplicationSummary
noSmithyDocumentSerde
}
func (*MainframeResourceSummaryMemberM2NonManagedApplication) isMainframeResourceSummary() {}
// Specifies an output.
//
// The following types satisfy this interface:
//
// OutputMemberFile
type Output interface {
isOutput()
}
// The file of the output.
type OutputMemberFile struct {
Value OutputFile
noSmithyDocumentSerde
}
func (*OutputMemberFile) isOutput() {}
// Specifies an output file.
type OutputFile struct {
// The file location of the output file.
FileLocation *string
noSmithyDocumentSerde
}
// Specifies a resource.
type Resource struct {
// The name of the resource.
//
// This member is required.
Name *string
// The type of the resource.
//
// This member is required.
Type ResourceType
noSmithyDocumentSerde
}
// Specifies a resource action.
//
// The following types satisfy this interface:
//
// ResourceActionMemberCloudFormationAction
// ResourceActionMemberM2ManagedApplicationAction
// ResourceActionMemberM2NonManagedApplicationAction
type ResourceAction interface {
isResourceAction()
}
// The CloudFormation action of the resource action.
type ResourceActionMemberCloudFormationAction struct {
Value CloudFormationAction
noSmithyDocumentSerde
}
func (*ResourceActionMemberCloudFormationAction) isResourceAction() {}
// The AWS Mainframe Modernization managed application action of the resource
// action.
type ResourceActionMemberM2ManagedApplicationAction struct {
Value M2ManagedApplicationAction
noSmithyDocumentSerde
}
func (*ResourceActionMemberM2ManagedApplicationAction) isResourceAction() {}
// The AWS Mainframe Modernization non-managed application action of the resource
// action.
type ResourceActionMemberM2NonManagedApplicationAction struct {
Value M2NonManagedApplicationAction
noSmithyDocumentSerde
}
func (*ResourceActionMemberM2NonManagedApplicationAction) isResourceAction() {}
// Specifies the resource action summary.
//
// The following types satisfy this interface:
//
// ResourceActionSummaryMemberCloudFormation
// ResourceActionSummaryMemberM2ManagedApplication
// ResourceActionSummaryMemberM2NonManagedApplication
type ResourceActionSummary interface {
isResourceActionSummary()
}
// The CloudFormation template of the resource action summary.
type ResourceActionSummaryMemberCloudFormation struct {
Value CloudFormationStepSummary
noSmithyDocumentSerde
}
func (*ResourceActionSummaryMemberCloudFormation) isResourceActionSummary() {}
// The AWS Mainframe Modernization managed application of the resource action
// summary.
type ResourceActionSummaryMemberM2ManagedApplication struct {
Value M2ManagedApplicationStepSummary
noSmithyDocumentSerde
}
func (*ResourceActionSummaryMemberM2ManagedApplication) isResourceActionSummary() {}
// The AWS Mainframe Modernization non-managed application of the resource action
// summary.
type ResourceActionSummaryMemberM2NonManagedApplication struct {
Value M2NonManagedApplicationStepSummary
noSmithyDocumentSerde
}
func (*ResourceActionSummaryMemberM2NonManagedApplication) isResourceActionSummary() {}
// Specifies the resource type.
//
// The following types satisfy this interface:
//
// ResourceTypeMemberCloudFormation
// ResourceTypeMemberM2ManagedApplication
// ResourceTypeMemberM2NonManagedApplication
type ResourceType interface {
isResourceType()
}
// The CloudFormation template of the resource type.
type ResourceTypeMemberCloudFormation struct {
Value CloudFormation
noSmithyDocumentSerde
}
func (*ResourceTypeMemberCloudFormation) isResourceType() {}
// The AWS Mainframe Modernization managed application of the resource type.
type ResourceTypeMemberM2ManagedApplication struct {
Value M2ManagedApplication
noSmithyDocumentSerde
}
func (*ResourceTypeMemberM2ManagedApplication) isResourceType() {}
// The AWS Mainframe Modernization non-managed application of the resource type.
type ResourceTypeMemberM2NonManagedApplication struct {
Value M2NonManagedApplication
noSmithyDocumentSerde
}
func (*ResourceTypeMemberM2NonManagedApplication) isResourceType() {}
// Specifies the script.
type Script struct {
// The script location of the scripts.
//
// This member is required.
ScriptLocation *string
// The type of the scripts.
//
// This member is required.
Type ScriptType
noSmithyDocumentSerde
}
// Specifies the scripts summary.
type ScriptSummary struct {
// The script location of the script summary.
//
// This member is required.
ScriptLocation *string
// The type of the script summary.
//
// This member is required.
Type ScriptType
noSmithyDocumentSerde
}
// Specifies the service settings.
type ServiceSettings struct {
// The KMS key ID of the service settings.
KmsKeyId *string
noSmithyDocumentSerde
}
// Specifies the source database metadata.
type SourceDatabaseMetadata struct {
// The capture tool of the source database metadata.
//
// This member is required.
CaptureTool CaptureTool
// The type of the source database metadata.
//
// This member is required.
Type SourceDatabase
noSmithyDocumentSerde
}
// Defines a step.
type Step struct {
// The action of the step.
//
// This member is required.
Action StepAction
// The name of the step.
//
// This member is required.
Name *string
// The description of the step.
Description *string
noSmithyDocumentSerde
}
// Specifies a step action.
//
// The following types satisfy this interface:
//
// StepActionMemberCompareAction
// StepActionMemberMainframeAction
// StepActionMemberResourceAction
type StepAction interface {
isStepAction()
}
// The compare action of the step action.
type StepActionMemberCompareAction struct {
Value CompareAction
noSmithyDocumentSerde
}
func (*StepActionMemberCompareAction) isStepAction() {}
// The mainframe action of the step action.
type StepActionMemberMainframeAction struct {
Value MainframeAction
noSmithyDocumentSerde
}
func (*StepActionMemberMainframeAction) isStepAction() {}
// The resource action of the step action.
type StepActionMemberResourceAction struct {
Value ResourceAction
noSmithyDocumentSerde
}
func (*StepActionMemberResourceAction) isStepAction() {}
// Defines the step run summary.
//
// The following types satisfy this interface:
//
// StepRunSummaryMemberCompareAction
// StepRunSummaryMemberMainframeAction
// StepRunSummaryMemberResourceAction
type StepRunSummary interface {
isStepRunSummary()
}
// The compare action of the step run summary.
type StepRunSummaryMemberCompareAction struct {
Value CompareActionSummary
noSmithyDocumentSerde
}
func (*StepRunSummaryMemberCompareAction) isStepRunSummary() {}
// The mainframe action of the step run summary.
type StepRunSummaryMemberMainframeAction struct {
Value MainframeActionSummary
noSmithyDocumentSerde
}
func (*StepRunSummaryMemberMainframeAction) isStepRunSummary() {}
// The resource action of the step run summary.
type StepRunSummaryMemberResourceAction struct {
Value ResourceActionSummary
noSmithyDocumentSerde
}
func (*StepRunSummaryMemberResourceAction) isStepRunSummary() {}
// Specifies a target database metadata.
type TargetDatabaseMetadata struct {
// The capture tool of the target database metadata.
//
// This member is required.
CaptureTool CaptureTool
// The type of the target database metadata.
//
// This member is required.
Type TargetDatabase
noSmithyDocumentSerde
}
// Specifies the latest version of a test case.
type TestCaseLatestVersion struct {
// The status of the test case latest version.
//
// This member is required.
Status TestCaseLifecycle
// The version of the test case latest version.
//
// This member is required.
Version *int32
// The status reason of the test case latest version.
StatusReason *string
noSmithyDocumentSerde
}
// Specifies the test case run summary.
type TestCaseRunSummary struct {
// The run start time of the test case run summary.
//
// This member is required.
RunStartTime *time.Time
// The status of the test case run summary.
//
// This member is required.
Status TestCaseRunStatus
// The test case id of the test case run summary.
//
// This member is required.
TestCaseId *string
// The test case version of the test case run summary.
//
// This member is required.
TestCaseVersion *int32
// The test run id of the test case run summary.
//
// This member is required.
TestRunId *string
// The run end time of the test case run summary.
RunEndTime *time.Time
// The status reason of the test case run summary.
StatusReason *string
noSmithyDocumentSerde
}
// Specifies test cases.
//
// The following types satisfy this interface:
//
// TestCasesMemberSequential
type TestCases interface {
isTestCases()
}
// The sequential of the test case.
type TestCasesMemberSequential struct {
Value []string
noSmithyDocumentSerde
}
func (*TestCasesMemberSequential) isTestCases() {}
// Specifies a test case summary.
type TestCaseSummary struct {
// The creation time of the test case summary.
//
// This member is required.
CreationTime *time.Time
// The last update time of the test case summary.
//
// This member is required.
LastUpdateTime *time.Time
// The latest version of the test case summary.
//
// This member is required.
LatestVersion *int32
// The name of the test case summary.
//
// This member is required.
Name *string
// The status of the test case summary.
//
// This member is required.
Status TestCaseLifecycle
// The test case Amazon Resource Name (ARN) of the test case summary.
//
// This member is required.
TestCaseArn *string
// The test case ID of the test case summary.
//
// This member is required.
TestCaseId *string
// The status reason of the test case summary.
StatusReason *string
noSmithyDocumentSerde
}
// Specifies the latest version of the test configuration.
type TestConfigurationLatestVersion struct {
// The status of the test configuration latest version.
//
// This member is required.
Status TestConfigurationLifecycle
// The version of the test configuration latest version.
//
// This member is required.
Version *int32
// The status reason of the test configuration latest version.
StatusReason *string
noSmithyDocumentSerde
}
// Specifies a test configuration summary.
type TestConfigurationSummary struct {
// The creation time of the test configuration summary.
//
// This member is required.
CreationTime *time.Time
// The last update time of the test configuration summary.
//
// This member is required.
LastUpdateTime *time.Time
// The latest version of the test configuration summary.
//
// This member is required.
LatestVersion *int32
// The name of the test configuration summary.
//
// This member is required.
Name *string
// The status of the test configuration summary.
//
// This member is required.
Status TestConfigurationLifecycle
// The test configuration ARN of the test configuration summary.
//
// This member is required.
TestConfigurationArn *string
// The test configuration ID of the test configuration summary.
//
// This member is required.
TestConfigurationId *string
// The status reason of the test configuration summary.
StatusReason *string
noSmithyDocumentSerde
}
// Specifies a test run step summary.
type TestRunStepSummary struct {
// The run start time of the test run step summary.
//
// This member is required.
RunStartTime *time.Time
// The status of the test run step summary.
//
// This member is required.
Status StepRunStatus
// The step name of the test run step summary.
//
// This member is required.
StepName *string
// The test run ID of the test run step summary.
//
// This member is required.
TestRunId *string
// The after step of the test run step summary.
AfterStep *bool
// The before step of the test run step summary.
BeforeStep *bool
// The run end time of the test run step summary.
RunEndTime *time.Time
// The status reason of the test run step summary.
StatusReason *string
// The test case ID of the test run step summary.
TestCaseId *string
// The test case version of the test run step summary.
TestCaseVersion *int32
// The test suite ID of the test run step summary.
TestSuiteId *string
// The test suite version of the test run step summary.
TestSuiteVersion *int32
noSmithyDocumentSerde
}
// Specifies a test run summary.
type TestRunSummary struct {
// The run start time of the test run summary.
//
// This member is required.
RunStartTime *time.Time
// The status of the test run summary.
//
// This member is required.
Status TestRunStatus
// The test run ARN of the test run summary.
//
// This member is required.
TestRunArn *string
// The test run ID of the test run summary.
//
// This member is required.
TestRunId *string
// The test suite ID of the test run summary.
//
// This member is required.
TestSuiteId *string
// The test suite version of the test run summary.
//
// This member is required.
TestSuiteVersion *int32
// The run end time of the test run summary.
RunEndTime *time.Time
// The status reason of the test run summary.
StatusReason *string
// The test configuration ID of the test run summary.
TestConfigurationId *string
// The test configuration version of the test run summary.
TestConfigurationVersion *int32
noSmithyDocumentSerde
}
// Specifies the latest version of a test suite.
type TestSuiteLatestVersion struct {
// The status of the test suite latest version.
//
// This member is required.
Status TestSuiteLifecycle
// The version of the test suite latest version.
//
// This member is required.
Version *int32
// The status reason of the test suite latest version.
StatusReason *string
noSmithyDocumentSerde
}
// Specifies the test suite summary.
type TestSuiteSummary struct {
// The creation time of the test suite summary.
//
// This member is required.
CreationTime *time.Time
// The last update time of the test suite summary.
//
// This member is required.
LastUpdateTime *time.Time
// The latest version of the test suite summary.
//
// This member is required.
LatestVersion *int32
// The name of the test suite summary.
//
// This member is required.
Name *string
// The status of the test suite summary.
//
// This member is required.
Status TestSuiteLifecycle
// The test suite Amazon Resource Name (ARN) of the test suite summary.
//
// This member is required.
TestSuiteArn *string
// The test suite ID of the test suite summary.
//
// This member is required.
TestSuiteId *string
// The status reason of the test suite summary.
StatusReason *string
noSmithyDocumentSerde
}
// Specifies the TN3270 protocol.
type TN3270 struct {
// The script of the TN3270 protocol.
//
// This member is required.
Script *Script
// The data set names of the TN3270 protocol.
ExportDataSetNames []string
noSmithyDocumentSerde
}
// Specifies a TN3270 step input.
type TN3270StepInput struct {
// The resource of the TN3270 step input.
//
// This member is required.
Resource MainframeResourceSummary
// The script of the TN3270 step input.
//
// This member is required.
Script *ScriptSummary
// The export data set names of the TN3270 step input.
ExportDataSetNames []string
// The properties of the TN3270 step input.
Properties *MainframeActionProperties
noSmithyDocumentSerde
}
// Specifies a TN3270 step output.
type TN3270StepOutput struct {
// The script output location of the TN3270 step output.
//
// This member is required.
ScriptOutputLocation *string
// The data set details of the TN3270 step output.
DataSetDetails []DataSet
// The data set export location of the TN3270 step output.
DataSetExportLocation *string
// The output location of the TN3270 step output.
DmsOutputLocation *string
noSmithyDocumentSerde
}
// Specifies a TN3270 summary.
type TN3270Summary struct {
// The step input of the TN3270 summary.
//
// This member is required.
StepInput *TN3270StepInput
// The step output of the TN3270 summary.
StepOutput *TN3270StepOutput
noSmithyDocumentSerde
}
// Specifies a validation exception field.
type ValidationExceptionField struct {
// The message stating reason for why service validation failed.
//
// This member is required.
Message *string
// The name of the validation exception field.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
// UnknownUnionMember is returned when a union member is returned over the wire,
// but has an unknown tag.
type UnknownUnionMember struct {
Tag string
Value []byte
noSmithyDocumentSerde
}
func (*UnknownUnionMember) isCloudFormationStepSummary() {}
func (*UnknownUnionMember) isCompareFileType() {}
func (*UnknownUnionMember) isFile() {}
func (*UnknownUnionMember) isFileMetadata() {}
func (*UnknownUnionMember) isInput() {}
func (*UnknownUnionMember) isMainframeActionSummary() {}
func (*UnknownUnionMember) isMainframeActionType() {}
func (*UnknownUnionMember) isMainframeResourceSummary() {}
func (*UnknownUnionMember) isOutput() {}
func (*UnknownUnionMember) isResourceAction() {}
func (*UnknownUnionMember) isResourceActionSummary() {}
func (*UnknownUnionMember) isResourceType() {}
func (*UnknownUnionMember) isStepAction() {}
func (*UnknownUnionMember) isStepRunSummary() {}
func (*UnknownUnionMember) isTestCases() {}
|