1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Represents information about an action configuration.
type ActionConfiguration struct {
// The configuration data for the action.
Configuration map[string]string
noSmithyDocumentSerde
}
// Represents information about an action configuration property.
type ActionConfigurationProperty struct {
// Whether the configuration property is a key.
//
// This member is required.
Key bool
// The name of the action configuration property.
//
// This member is required.
Name *string
// Whether the configuration property is a required value.
//
// This member is required.
Required bool
// Whether the configuration property is secret. Secrets are hidden from all calls
// except for GetJobDetails , GetThirdPartyJobDetails , PollForJobs , and
// PollForThirdPartyJobs . When updating a pipeline, passing * * * * * without
// changing any other values of the action preserves the previous value of the
// secret.
//
// This member is required.
Secret bool
// The description of the action configuration property that is displayed to users.
Description *string
// Indicates that the property is used with PollForJobs . When creating a custom
// action, an action can have up to one queryable property. If it has one, that
// property must be both required and not secret. If you create a pipeline with a
// custom action type, and that custom action contains a queryable property, the
// value for that configuration property is subject to other restrictions. The
// value must be less than or equal to twenty (20) characters. The value can
// contain only alphanumeric characters, underscores, and hyphens.
Queryable bool
// The type of the configuration property.
Type ActionConfigurationPropertyType
noSmithyDocumentSerde
}
// Represents the context of an action in the stage of a pipeline to a job worker.
type ActionContext struct {
// The system-generated unique ID that corresponds to an action's execution.
ActionExecutionId *string
// The name of the action in the context of a job.
Name *string
noSmithyDocumentSerde
}
// Represents information about an action declaration.
type ActionDeclaration struct {
// Specifies the action type and the provider of the action.
//
// This member is required.
ActionTypeId *ActionTypeId
// The action declaration's name.
//
// This member is required.
Name *string
// The action's configuration. These are key-value pairs that specify input values
// for an action. For more information, see Action Structure Requirements in
// CodePipeline (https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#action-requirements)
// . For the list of configuration properties for the CloudFormation action type in
// CodePipeline, see Configuration Properties Reference (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/continuous-delivery-codepipeline-action-reference.html)
// in the CloudFormation User Guide. For template snippets with examples, see
// Using Parameter Override Functions with CodePipeline Pipelines (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/continuous-delivery-codepipeline-parameter-override-functions.html)
// in the CloudFormation User Guide. The values can be represented in either JSON
// or YAML format. For example, the JSON configuration item format is as follows:
// JSON: "Configuration" : { Key : Value },
Configuration map[string]string
// The name or ID of the artifact consumed by the action, such as a test or build
// artifact.
InputArtifacts []InputArtifact
// The variable namespace associated with the action. All variables produced as
// output by this action fall under this namespace.
Namespace *string
// The name or ID of the result of the action declaration, such as a test or build
// artifact.
OutputArtifacts []OutputArtifact
// The action declaration's Amazon Web Services Region, such as us-east-1.
Region *string
// The ARN of the IAM service role that performs the declared action. This is
// assumed through the roleArn for the pipeline.
RoleArn *string
// The order in which actions are run.
RunOrder *int32
noSmithyDocumentSerde
}
// Represents information about the run of an action.
type ActionExecution struct {
// ID of the workflow action execution in the current stage. Use the
// GetPipelineState action to retrieve the current action execution details of the
// current stage. For older executions, this field might be empty. The action
// execution ID is available for executions run on or after March 2020.
ActionExecutionId *string
// The details of an error returned by a URL external to Amazon Web Services.
ErrorDetails *ErrorDetails
// The external ID of the run of the action.
ExternalExecutionId *string
// The URL of a resource external to Amazon Web Services that is used when running
// the action (for example, an external repository URL).
ExternalExecutionUrl *string
// The last status change of the action.
LastStatusChange *time.Time
// The ARN of the user who last changed the pipeline.
LastUpdatedBy *string
// A percentage of completeness of the action as it runs.
PercentComplete *int32
// The status of the action, or for a completed action, the last status of the
// action.
Status ActionExecutionStatus
// A summary of the run of the action.
Summary *string
// The system-generated token used to identify a unique approval request. The
// token for each open approval request can be obtained using the GetPipelineState
// command. It is used to validate that the approval request corresponding to this
// token is still valid.
Token *string
noSmithyDocumentSerde
}
// Returns information about an execution of an action, including the action
// execution ID, and the name, version, and timing of the action.
type ActionExecutionDetail struct {
// The action execution ID.
ActionExecutionId *string
// The name of the action.
ActionName *string
// Input details for the action execution, such as role ARN, Region, and input
// artifacts.
Input *ActionExecutionInput
// The last update time of the action execution.
LastUpdateTime *time.Time
// Output details for the action execution, such as the action execution result.
Output *ActionExecutionOutput
// The pipeline execution ID for the action execution.
PipelineExecutionId *string
// The version of the pipeline where the action was run.
PipelineVersion *int32
// The name of the stage that contains the action.
StageName *string
// The start time of the action execution.
StartTime *time.Time
// The status of the action execution. Status categories are InProgress , Succeeded
// , and Failed .
Status ActionExecutionStatus
noSmithyDocumentSerde
}
// Filter values for the action execution.
type ActionExecutionFilter struct {
// The pipeline execution ID used to filter action execution history.
PipelineExecutionId *string
noSmithyDocumentSerde
}
// Input information used for an action execution.
type ActionExecutionInput struct {
// Represents information about an action type.
ActionTypeId *ActionTypeId
// Configuration data for an action execution.
Configuration map[string]string
// Details of input artifacts of the action that correspond to the action
// execution.
InputArtifacts []ArtifactDetail
// The variable namespace associated with the action. All variables produced as
// output by this action fall under this namespace.
Namespace *string
// The Amazon Web Services Region for the action, such as us-east-1.
Region *string
// Configuration data for an action execution with all variable references
// replaced with their real values for the execution.
ResolvedConfiguration map[string]string
// The ARN of the IAM service role that performs the declared action. This is
// assumed through the roleArn for the pipeline.
RoleArn *string
noSmithyDocumentSerde
}
// Output details listed for an action execution, such as the action execution
// result.
type ActionExecutionOutput struct {
// Execution result information listed in the output details for an action
// execution.
ExecutionResult *ActionExecutionResult
// Details of output artifacts of the action that correspond to the action
// execution.
OutputArtifacts []ArtifactDetail
// The outputVariables field shows the key-value pairs that were output as part of
// that execution.
OutputVariables map[string]string
noSmithyDocumentSerde
}
// Execution result information, such as the external execution ID.
type ActionExecutionResult struct {
// The action provider's external ID for the action execution.
ExternalExecutionId *string
// The action provider's summary for the action execution.
ExternalExecutionSummary *string
// The deepest external link to the external resource (for example, a repository
// URL or deployment endpoint) that is used when running the action.
ExternalExecutionUrl *string
noSmithyDocumentSerde
}
// Represents information about the version (or revision) of an action.
type ActionRevision struct {
// The date and time when the most recent version of the action was created, in
// timestamp format.
//
// This member is required.
Created *time.Time
// The unique identifier of the change that set the state to this revision (for
// example, a deployment ID or timestamp).
//
// This member is required.
RevisionChangeId *string
// The system-generated unique ID that identifies the revision number of the
// action.
//
// This member is required.
RevisionId *string
noSmithyDocumentSerde
}
// Represents information about the state of an action.
type ActionState struct {
// The name of the action.
ActionName *string
// Represents information about the version (or revision) of an action.
CurrentRevision *ActionRevision
// A URL link for more information about the state of the action, such as a
// deployment group details page.
EntityUrl *string
// Represents information about the run of an action.
LatestExecution *ActionExecution
// A URL link for more information about the revision, such as a commit details
// page.
RevisionUrl *string
noSmithyDocumentSerde
}
// Returns information about the details of an action type.
type ActionType struct {
// Represents information about an action type.
//
// This member is required.
Id *ActionTypeId
// The details of the input artifact for the action, such as its commit ID.
//
// This member is required.
InputArtifactDetails *ArtifactDetails
// The details of the output artifact of the action, such as its commit ID.
//
// This member is required.
OutputArtifactDetails *ArtifactDetails
// The configuration properties for the action type.
ActionConfigurationProperties []ActionConfigurationProperty
// The settings for the action type.
Settings *ActionTypeSettings
noSmithyDocumentSerde
}
// Information about parameters for artifacts associated with the action type,
// such as the minimum and maximum artifacts allowed.
type ActionTypeArtifactDetails struct {
// The maximum number of artifacts that can be used with the actiontype. For
// example, you should specify a minimum and maximum of zero input artifacts for an
// action type with a category of source .
//
// This member is required.
MaximumCount int32
// The minimum number of artifacts that can be used with the action type. For
// example, you should specify a minimum and maximum of zero input artifacts for an
// action type with a category of source .
//
// This member is required.
MinimumCount int32
noSmithyDocumentSerde
}
// The parameters for the action type definition that are provided when the action
// type is created or updated.
type ActionTypeDeclaration struct {
// Information about the executor for an action type that was created with any
// supported integration model.
//
// This member is required.
Executor *ActionTypeExecutor
// The action category, owner, provider, and version of the action type to be
// updated.
//
// This member is required.
Id *ActionTypeIdentifier
// Details for the artifacts, such as application files, to be worked on by the
// action. For example, the minimum and maximum number of input artifacts allowed.
//
// This member is required.
InputArtifactDetails *ActionTypeArtifactDetails
// Details for the output artifacts, such as a built application, that are the
// result of the action. For example, the minimum and maximum number of output
// artifacts allowed.
//
// This member is required.
OutputArtifactDetails *ActionTypeArtifactDetails
// The description for the action type to be updated.
Description *string
// Details identifying the accounts with permissions to use the action type.
Permissions *ActionTypePermissions
// The properties of the action type to be updated.
Properties []ActionTypeProperty
// The links associated with the action type to be updated.
Urls *ActionTypeUrls
noSmithyDocumentSerde
}
// The action engine, or executor, for an action type created for a provider,
// where the action is to be used by customers of the provider. The action engine
// is associated with the model used to create and update the action, such as the
// Lambda integration model.
type ActionTypeExecutor struct {
// The action configuration properties for the action type. These properties are
// specified in the action definition when the action type is created.
//
// This member is required.
Configuration *ExecutorConfiguration
// The integration model used to create and update the action type, Lambda or
// JobWorker .
//
// This member is required.
Type ExecutorType
// The timeout in seconds for the job. An action execution can have multiple jobs.
// This is the timeout for a single job, not the entire action execution.
JobTimeout *int32
// The policy statement that specifies the permissions in the CodePipeline
// customer account that are needed to successfully run an action. To grant
// permission to another account, specify the account ID as the Principal, a
// domain-style identifier defined by the service, for example
// codepipeline.amazonaws.com . The size of the passed JSON policy document cannot
// exceed 2048 characters.
PolicyStatementsTemplate *string
noSmithyDocumentSerde
}
// Represents information about an action type.
type ActionTypeId struct {
// A category defines what kind of action can be taken in the stage, and
// constrains the provider type for the action. Valid categories are limited to one
// of the following values.
// - Source
// - Build
// - Test
// - Deploy
// - Invoke
// - Approval
//
// This member is required.
Category ActionCategory
// The creator of the action being called. There are three valid values for the
// Owner field in the action category section within your pipeline structure: AWS ,
// ThirdParty , and Custom . For more information, see Valid Action Types and
// Providers in CodePipeline (https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#actions-valid-providers)
// .
//
// This member is required.
Owner ActionOwner
// The provider of the service being called by the action. Valid providers are
// determined by the action category. For example, an action in the Deploy category
// type might have a provider of CodeDeploy, which would be specified as CodeDeploy
// . For more information, see Valid Action Types and Providers in CodePipeline (https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#actions-valid-providers)
// .
//
// This member is required.
Provider *string
// A string that describes the action version.
//
// This member is required.
Version *string
noSmithyDocumentSerde
}
// Specifies the category, owner, provider, and version of the action type.
type ActionTypeIdentifier struct {
// Defines what kind of action can be taken in the stage, one of the following:
// - Source
// - Build
// - Test
// - Deploy
// - Approval
// - Invoke
//
// This member is required.
Category ActionCategory
// The creator of the action type being called: AWS or ThirdParty .
//
// This member is required.
Owner *string
// The provider of the action type being called. The provider name is supplied
// when the action type is created.
//
// This member is required.
Provider *string
// A string that describes the action type version.
//
// This member is required.
Version *string
noSmithyDocumentSerde
}
// Details identifying the users with permissions to use the action type.
type ActionTypePermissions struct {
// A list of Amazon Web Services account IDs with access to use the action type in
// their pipelines.
//
// This member is required.
AllowedAccounts []string
noSmithyDocumentSerde
}
// Represents information about each property specified in the action
// configuration, such as the description and key name that display for the
// customer using the action type.
type ActionTypeProperty struct {
// Whether the configuration property is a key.
//
// This member is required.
Key bool
// The property name that is displayed to users.
//
// This member is required.
Name *string
// Whether to omit the field value entered by the customer in the log. If true ,
// the value is not saved in CloudTrail logs for the action execution.
//
// This member is required.
NoEcho bool
// Whether the configuration property is an optional value.
//
// This member is required.
Optional bool
// The description of the property that is displayed to users.
Description *string
// Indicates that the property is used with polling. An action type can have up to
// one queryable property. If it has one, that property must be both required and
// not secret.
Queryable bool
noSmithyDocumentSerde
}
// Returns information about the settings for an action type.
type ActionTypeSettings struct {
// The URL returned to the CodePipeline console that provides a deep link to the
// resources of the external system, such as the configuration page for a
// CodeDeploy deployment group. This link is provided as part of the action display
// in the pipeline.
EntityUrlTemplate *string
// The URL returned to the CodePipeline console that contains a link to the
// top-level landing page for the external system, such as the console page for
// CodeDeploy. This link is shown on the pipeline view page in the CodePipeline
// console and provides a link to the execution entity of the external action.
ExecutionUrlTemplate *string
// The URL returned to the CodePipeline console that contains a link to the page
// where customers can update or change the configuration of the external action.
RevisionUrlTemplate *string
// The URL of a sign-up page where users can sign up for an external service and
// perform initial configuration of the action provided by that service.
ThirdPartyConfigurationUrl *string
noSmithyDocumentSerde
}
// Returns information about URLs for web pages that display to customers as links
// on the pipeline view, such as an external configuration page for the action
// type.
type ActionTypeUrls struct {
// The URL returned to the CodePipeline console that contains a link to the page
// where customers can configure the external action.
ConfigurationUrl *string
// The URL returned to the CodePipeline console that provides a deep link to the
// resources of the external system, such as a status page. This link is provided
// as part of the action display in the pipeline.
EntityUrlTemplate *string
// The link to an execution page for the action type in progress. For example, for
// a CodeDeploy action, this link is shown on the pipeline view page in the
// CodePipeline console, and it links to a CodeDeploy status page.
ExecutionUrlTemplate *string
// The URL returned to the CodePipeline console that contains a link to the page
// where customers can update or change the configuration of the external action.
RevisionUrlTemplate *string
noSmithyDocumentSerde
}
// Represents information about the result of an approval request.
type ApprovalResult struct {
// The response submitted by a reviewer assigned to an approval action request.
//
// This member is required.
Status ApprovalStatus
// The summary of the current status of the approval request.
//
// This member is required.
Summary *string
noSmithyDocumentSerde
}
// Artifacts are the files that are worked on by actions in the pipeline. See the
// action configuration for each action for details about artifact parameters. For
// example, the S3 source action artifact is a file name (or file path), and the
// files are generally provided as a ZIP file. Example artifact name:
// SampleApp_Windows.zip
type Artifact struct {
// The location of an artifact.
Location *ArtifactLocation
// The artifact's name.
Name *string
// The artifact's revision ID. Depending on the type of object, this could be a
// commit ID (GitHub) or a revision ID (Amazon S3).
Revision *string
noSmithyDocumentSerde
}
// Artifact details for the action execution, such as the artifact location.
type ArtifactDetail struct {
// The artifact object name for the action execution.
Name *string
// The Amazon S3 artifact location for the action execution.
S3location *S3Location
noSmithyDocumentSerde
}
// Returns information about the details of an artifact.
type ArtifactDetails struct {
// The maximum number of artifacts allowed for the action type.
//
// This member is required.
MaximumCount int32
// The minimum number of artifacts allowed for the action type.
//
// This member is required.
MinimumCount int32
noSmithyDocumentSerde
}
// Represents information about the location of an artifact.
type ArtifactLocation struct {
// The S3 bucket that contains the artifact.
S3Location *S3ArtifactLocation
// The type of artifact in the location.
Type ArtifactLocationType
noSmithyDocumentSerde
}
// Represents revision details of an artifact.
type ArtifactRevision struct {
// The date and time when the most recent revision of the artifact was created, in
// timestamp format.
Created *time.Time
// The name of an artifact. This name might be system-generated, such as "MyApp",
// or defined by the user when an action is created.
Name *string
// An additional identifier for a revision, such as a commit date or, for
// artifacts stored in Amazon S3 buckets, the ETag value.
RevisionChangeIdentifier *string
// The revision ID of the artifact.
RevisionId *string
// Summary information about the most recent revision of the artifact. For GitHub
// and CodeCommit repositories, the commit message. For Amazon S3 buckets or
// actions, the user-provided content of a codepipeline-artifact-revision-summary
// key specified in the object metadata.
RevisionSummary *string
// The commit ID for the artifact revision. For artifacts stored in GitHub or
// CodeCommit repositories, the commit ID is linked to a commit details page.
RevisionUrl *string
noSmithyDocumentSerde
}
// The S3 bucket where artifacts for the pipeline are stored. You must include
// either artifactStore or artifactStores in your pipeline, but you cannot use
// both. If you create a cross-region action in your pipeline, you must use
// artifactStores .
type ArtifactStore struct {
// The S3 bucket used for storing the artifacts for a pipeline. You can specify
// the name of an S3 bucket but not a folder in the bucket. A folder to contain the
// pipeline artifacts is created for you based on the name of the pipeline. You can
// use any S3 bucket in the same Amazon Web Services Region as the pipeline to
// store your pipeline artifacts.
//
// This member is required.
Location *string
// The type of the artifact store, such as S3.
//
// This member is required.
Type ArtifactStoreType
// The encryption key used to encrypt the data in the artifact store, such as an
// Amazon Web Services Key Management Service key. If this is undefined, the
// default key for Amazon S3 is used.
EncryptionKey *EncryptionKey
noSmithyDocumentSerde
}
// Represents an Amazon Web Services session credentials object. These credentials
// are temporary credentials that are issued by Amazon Web Services Secure Token
// Service (STS). They can be used to access input and output artifacts in the S3
// bucket used to store artifact for the pipeline in CodePipeline.
type AWSSessionCredentials struct {
// The access key for the session.
//
// This member is required.
AccessKeyId *string
// The secret access key for the session.
//
// This member is required.
SecretAccessKey *string
// The token for the session.
//
// This member is required.
SessionToken *string
noSmithyDocumentSerde
}
// Reserved for future use.
type BlockerDeclaration struct {
// Reserved for future use.
//
// This member is required.
Name *string
// Reserved for future use.
//
// This member is required.
Type BlockerType
noSmithyDocumentSerde
}
// Represents information about a current revision.
type CurrentRevision struct {
// The change identifier for the current revision.
//
// This member is required.
ChangeIdentifier *string
// The revision ID of the current version of an artifact.
//
// This member is required.
Revision *string
// The date and time when the most recent revision of the artifact was created, in
// timestamp format.
Created *time.Time
// The summary of the most recent revision of the artifact.
RevisionSummary *string
noSmithyDocumentSerde
}
// Represents information about the key used to encrypt data in the artifact
// store, such as an Amazon Web Services Key Management Service (Key Management
// Service) key.
type EncryptionKey struct {
// The ID used to identify the key. For an Amazon Web Services KMS key, you can
// use the key ID, the key ARN, or the alias ARN. Aliases are recognized only in
// the account that created the KMS key. For cross-account actions, you can only
// use the key ID or key ARN to identify the key. Cross-account actions involve
// using the role from the other account (AccountB), so specifying the key ID will
// use the key from the other account (AccountB).
//
// This member is required.
Id *string
// The type of encryption key, such as an Amazon Web Services KMS key. When
// creating or updating a pipeline, the value must be set to 'KMS'.
//
// This member is required.
Type EncryptionKeyType
noSmithyDocumentSerde
}
// Represents information about an error in CodePipeline.
type ErrorDetails struct {
// The system ID or number code of the error.
Code *string
// The text of the error message.
Message *string
noSmithyDocumentSerde
}
// The details of the actions taken and results produced on an artifact as it
// passes through stages in the pipeline.
type ExecutionDetails struct {
// The system-generated unique ID of this action used to identify this job worker
// in any external systems, such as CodeDeploy.
ExternalExecutionId *string
// The percentage of work completed on the action, represented on a scale of 0 to
// 100 percent.
PercentComplete *int32
// The summary of the current status of the actions.
Summary *string
noSmithyDocumentSerde
}
// The interaction or event that started a pipeline execution.
type ExecutionTrigger struct {
// Detail related to the event that started a pipeline execution, such as the
// webhook ARN of the webhook that triggered the pipeline execution or the user ARN
// for a user-initiated start-pipeline-execution CLI command.
TriggerDetail *string
// The type of change-detection method, command, or user interaction that started
// a pipeline execution.
TriggerType TriggerType
noSmithyDocumentSerde
}
// The action engine, or executor, related to the supported integration model used
// to create and update the action type. The available executor types are Lambda
// and JobWorker .
type ExecutorConfiguration struct {
// Details about the JobWorker executor of the action type.
JobWorkerExecutorConfiguration *JobWorkerExecutorConfiguration
// Details about the Lambda executor of the action type.
LambdaExecutorConfiguration *LambdaExecutorConfiguration
noSmithyDocumentSerde
}
// Represents information about failure details.
type FailureDetails struct {
// The message about the failure.
//
// This member is required.
Message *string
// The type of the failure.
//
// This member is required.
Type FailureType
// The external ID of the run of the action that failed.
ExternalExecutionId *string
noSmithyDocumentSerde
}
// A type of trigger configuration for Git-based source actions. You can specify
// the Git configuration trigger type for all third-party Git-based source actions
// that are supported by the CodeStarSourceConnection action type. V2 type
// pipelines, along with triggers on Git tags and pipeline-level variables, are not
// currently supported for CloudFormation and CDK resources in CodePipeline. For
// more information about V2 type pipelines, see Pipeline types (https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html)
// in the CodePipeline User Guide.
type GitConfiguration struct {
// The name of the pipeline source action where the trigger configuration, such as
// Git tags, is specified. The trigger configuration will start the pipeline upon
// the specified change only. You can only specify one trigger configuration per
// source action.
//
// This member is required.
SourceActionName *string
// The field where the repository event that will start the pipeline, such as
// pushing Git tags, is specified with details. Git tags is the only supported
// event type.
Push []GitPushFilter
noSmithyDocumentSerde
}
// The event criteria that specify when a specified repository event will start
// the pipeline for the specified trigger configuration, such as the lists of Git
// tags to include and exclude.
type GitPushFilter struct {
// The field that contains the details for the Git tags trigger configuration.
Tags *GitTagFilterCriteria
noSmithyDocumentSerde
}
// The Git tags specified as filter criteria for whether a Git tag repository
// event will start the pipeline.
type GitTagFilterCriteria struct {
// The list of patterns of Git tags that, when pushed, are to be excluded from
// starting the pipeline.
Excludes []string
// The list of patterns of Git tags that, when pushed, are to be included as
// criteria that starts the pipeline.
Includes []string
noSmithyDocumentSerde
}
// Represents information about an artifact to be worked on, such as a test or
// build artifact.
type InputArtifact struct {
// The name of the artifact to be worked on (for example, "My App"). Artifacts are
// the files that are worked on by actions in the pipeline. See the action
// configuration for each action for details about artifact parameters. For
// example, the S3 source action input artifact is a file name (or file path), and
// the files are generally provided as a ZIP file. Example artifact name:
// SampleApp_Windows.zip The input artifact of an action must exactly match the
// output artifact declared in a preceding action, but the input artifact does not
// have to be the next action in strict sequence from the action that provided the
// output artifact. Actions in parallel can declare different output artifacts,
// which are in turn consumed by different following actions.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// Represents information about a job.
type Job struct {
// The ID of the Amazon Web Services account to use when performing the job.
AccountId *string
// Other data about a job.
Data *JobData
// The unique system-generated ID of the job.
Id *string
// A system-generated random number that CodePipeline uses to ensure that the job
// is being worked on by only one job worker. Use this number in an AcknowledgeJob
// request.
Nonce *string
noSmithyDocumentSerde
}
// Represents other information about a job required for a job worker to complete
// the job.
type JobData struct {
// Represents information about an action configuration.
ActionConfiguration *ActionConfiguration
// Represents information about an action type.
ActionTypeId *ActionTypeId
// Represents an Amazon Web Services session credentials object. These credentials
// are temporary credentials that are issued by Amazon Web Services Secure Token
// Service (STS). They can be used to access input and output artifacts in the S3
// bucket used to store artifacts for the pipeline in CodePipeline.
ArtifactCredentials *AWSSessionCredentials
// A system-generated token, such as a deployment ID, required by a job to
// continue the job asynchronously.
ContinuationToken *string
// Represents information about the key used to encrypt data in the artifact
// store, such as an KMS key.
EncryptionKey *EncryptionKey
// The artifact supplied to the job.
InputArtifacts []Artifact
// The output of the job.
OutputArtifacts []Artifact
// Represents information about a pipeline to a job worker. Includes pipelineArn
// and pipelineExecutionId for custom jobs.
PipelineContext *PipelineContext
noSmithyDocumentSerde
}
// Represents information about the details of a job.
type JobDetails struct {
// The Amazon Web Services account ID associated with the job.
AccountId *string
// Represents other information about a job required for a job worker to complete
// the job.
Data *JobData
// The unique system-generated ID of the job.
Id *string
noSmithyDocumentSerde
}
// Details about the polling configuration for the JobWorker action engine, or
// executor.
type JobWorkerExecutorConfiguration struct {
// The accounts in which the job worker is configured and might poll for jobs as
// part of the action execution.
PollingAccounts []string
// The service Principals in which the job worker is configured and might poll for
// jobs as part of the action execution.
PollingServicePrincipals []string
noSmithyDocumentSerde
}
// Details about the configuration for the Lambda action engine, or executor.
type LambdaExecutorConfiguration struct {
// The ARN of the Lambda function used by the action engine.
//
// This member is required.
LambdaFunctionArn *string
noSmithyDocumentSerde
}
// The detail returned for each webhook after listing webhooks, such as the
// webhook URL, the webhook name, and the webhook ARN.
type ListWebhookItem struct {
// The detail returned for each webhook, such as the webhook authentication type
// and filter rules.
//
// This member is required.
Definition *WebhookDefinition
// A unique URL generated by CodePipeline. When a POST request is made to this
// URL, the defined pipeline is started as long as the body of the post request
// satisfies the defined authentication and filtering conditions. Deleting and
// re-creating a webhook makes the old URL invalid and generates a new one.
//
// This member is required.
Url *string
// The Amazon Resource Name (ARN) of the webhook.
Arn *string
// The number code of the error.
ErrorCode *string
// The text of the error message about the webhook.
ErrorMessage *string
// The date and time a webhook was last successfully triggered, in timestamp
// format.
LastTriggered *time.Time
// Specifies the tags applied to the webhook.
Tags []Tag
noSmithyDocumentSerde
}
// Represents information about the output of an action.
type OutputArtifact struct {
// The name of the output of an artifact, such as "My App". The input artifact of
// an action must exactly match the output artifact declared in a preceding action,
// but the input artifact does not have to be the next action in strict sequence
// from the action that provided the output artifact. Actions in parallel can
// declare different output artifacts, which are in turn consumed by different
// following actions. Output artifact names must be unique within a pipeline.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// Represents information about a pipeline to a job worker. PipelineContext
// contains pipelineArn and pipelineExecutionId for custom action jobs. The
// pipelineArn and pipelineExecutionId fields are not populated for ThirdParty
// action jobs.
type PipelineContext struct {
// The context of an action to a job worker in the stage of a pipeline.
Action *ActionContext
// The Amazon Resource Name (ARN) of the pipeline.
PipelineArn *string
// The execution ID of the pipeline.
PipelineExecutionId *string
// The name of the pipeline. This is a user-specified value. Pipeline names must
// be unique across all pipeline names under an Amazon Web Services account.
PipelineName *string
// The stage of the pipeline.
Stage *StageContext
noSmithyDocumentSerde
}
// Represents the structure of actions and stages to be performed in the pipeline.
type PipelineDeclaration struct {
// The name of the pipeline.
//
// This member is required.
Name *string
// The Amazon Resource Name (ARN) for CodePipeline to use to either perform
// actions with no actionRoleArn , or to use to assume roles for actions with an
// actionRoleArn .
//
// This member is required.
RoleArn *string
// The stage in which to perform the action.
//
// This member is required.
Stages []StageDeclaration
// Represents information about the S3 bucket where artifacts are stored for the
// pipeline. You must include either artifactStore or artifactStores in your
// pipeline, but you cannot use both. If you create a cross-region action in your
// pipeline, you must use artifactStores .
ArtifactStore *ArtifactStore
// A mapping of artifactStore objects and their corresponding Amazon Web Services
// Regions. There must be an artifact store for the pipeline Region and for each
// cross-region action in the pipeline. You must include either artifactStore or
// artifactStores in your pipeline, but you cannot use both. If you create a
// cross-region action in your pipeline, you must use artifactStores .
ArtifactStores map[string]ArtifactStore
// CodePipeline provides the following pipeline types, which differ in
// characteristics and price, so that you can tailor your pipeline features and
// cost to the needs of your applications.
// - V1 type pipelines have a JSON structure that contains standard pipeline,
// stage, and action-level parameters.
// - V2 type pipelines have the same structure as a V1 type, along with
// additional parameters for release safety and trigger configuration.
// Including V2 parameters, such as triggers on Git tags, in the pipeline JSON
// when creating or updating a pipeline will result in the pipeline having the V2
// type of pipeline and the associated costs. For information about pricing for
// CodePipeline, see Pricing (https://aws.amazon.com/codepipeline/pricing/) . For
// information about which type of pipeline to choose, see What type of pipeline
// is right for me? (https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types-planning.html)
// . V2 type pipelines, along with triggers on Git tags and pipeline-level
// variables, are not currently supported for CloudFormation and CDK resources in
// CodePipeline. For more information about V2 type pipelines, see Pipeline types (https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html)
// in the CodePipeline User Guide.
PipelineType PipelineType
// The trigger configuration specifying a type of event, such as Git tags, that
// starts the pipeline. When a trigger configuration is specified, default change
// detection for repository and branch commits is disabled.
Triggers []PipelineTriggerDeclaration
// A list that defines the pipeline variables for a pipeline resource. Variable
// names can have alphanumeric and underscore characters, and the values must match
// [A-Za-z0-9@\-_]+ .
Variables []PipelineVariableDeclaration
// The version number of the pipeline. A new pipeline always has a version number
// of 1. This number is incremented when a pipeline is updated.
Version *int32
noSmithyDocumentSerde
}
// Represents information about an execution of a pipeline.
type PipelineExecution struct {
// A list of ArtifactRevision objects included in a pipeline execution.
ArtifactRevisions []ArtifactRevision
// The ID of the pipeline execution.
PipelineExecutionId *string
// The name of the pipeline with the specified pipeline execution.
PipelineName *string
// The version number of the pipeline with the specified pipeline execution.
PipelineVersion *int32
// The status of the pipeline execution.
// - Cancelled: The pipeline’s definition was updated before the pipeline
// execution could be completed.
// - InProgress: The pipeline execution is currently running.
// - Stopped: The pipeline execution was manually stopped. For more information,
// see Stopped Executions (https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-executions-stopped)
// .
// - Stopping: The pipeline execution received a request to be manually stopped.
// Depending on the selected stop mode, the execution is either completing or
// abandoning in-progress actions. For more information, see Stopped Executions (https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-executions-stopped)
// .
// - Succeeded: The pipeline execution was completed successfully.
// - Superseded: While this pipeline execution was waiting for the next stage to
// be completed, a newer pipeline execution advanced and continued through the
// pipeline instead. For more information, see Superseded Executions (https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-superseded)
// .
// - Failed: The pipeline execution was not completed successfully.
Status PipelineExecutionStatus
// A summary that contains a description of the pipeline execution status.
StatusSummary *string
// The interaction or event that started a pipeline execution.
Trigger *ExecutionTrigger
// A list of pipeline variables used for the pipeline execution.
Variables []ResolvedPipelineVariable
noSmithyDocumentSerde
}
// Summary information about a pipeline execution.
type PipelineExecutionSummary struct {
// The date and time of the last change to the pipeline execution, in timestamp
// format.
LastUpdateTime *time.Time
// The ID of the pipeline execution.
PipelineExecutionId *string
// A list of the source artifact revisions that initiated a pipeline execution.
SourceRevisions []SourceRevision
// The date and time when the pipeline execution began, in timestamp format.
StartTime *time.Time
// The status of the pipeline execution.
// - InProgress: The pipeline execution is currently running.
// - Stopped: The pipeline execution was manually stopped. For more information,
// see Stopped Executions (https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-executions-stopped)
// .
// - Stopping: The pipeline execution received a request to be manually stopped.
// Depending on the selected stop mode, the execution is either completing or
// abandoning in-progress actions. For more information, see Stopped Executions (https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-executions-stopped)
// .
// - Succeeded: The pipeline execution was completed successfully.
// - Superseded: While this pipeline execution was waiting for the next stage to
// be completed, a newer pipeline execution advanced and continued through the
// pipeline instead. For more information, see Superseded Executions (https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-superseded)
// .
// - Failed: The pipeline execution was not completed successfully.
Status PipelineExecutionStatus
// The interaction that stopped a pipeline execution.
StopTrigger *StopExecutionTrigger
// The interaction or event that started a pipeline execution, such as automated
// change detection or a StartPipelineExecution API call.
Trigger *ExecutionTrigger
noSmithyDocumentSerde
}
// Information about a pipeline.
type PipelineMetadata struct {
// The date and time the pipeline was created, in timestamp format.
Created *time.Time
// The Amazon Resource Name (ARN) of the pipeline.
PipelineArn *string
// The date and time that polling for source changes (periodic checks) was stopped
// for the pipeline, in timestamp format. You can migrate (update) a polling
// pipeline to use event-based change detection. For example, for a pipeline with a
// CodeCommit source, we recommend you migrate (update) your pipeline to use
// CloudWatch Events. To learn more, see Migrate polling pipelines to use
// event-based change detection (https://docs.aws.amazon.com/codepipeline/latest/userguide/update-change-detection.html)
// in the CodePipeline User Guide.
PollingDisabledAt *time.Time
// The date and time the pipeline was last updated, in timestamp format.
Updated *time.Time
noSmithyDocumentSerde
}
// Returns a summary of a pipeline.
type PipelineSummary struct {
// The date and time the pipeline was created, in timestamp format.
Created *time.Time
// The name of the pipeline.
Name *string
// CodePipeline provides the following pipeline types, which differ in
// characteristics and price, so that you can tailor your pipeline features and
// cost to the needs of your applications.
// - V1 type pipelines have a JSON structure that contains standard pipeline,
// stage, and action-level parameters.
// - V2 type pipelines have the same structure as a V1 type, along with
// additional parameters for release safety and trigger configuration.
// Including V2 parameters, such as triggers on Git tags, in the pipeline JSON
// when creating or updating a pipeline will result in the pipeline having the V2
// type of pipeline and the associated costs. For information about pricing for
// CodePipeline, see Pricing (https://aws.amazon.com/codepipeline/pricing/) . For
// information about which type of pipeline to choose, see What type of pipeline
// is right for me? (https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types-planning.html)
// . V2 type pipelines, along with triggers on Git tags and pipeline-level
// variables, are not currently supported for CloudFormation and CDK resources in
// CodePipeline. For more information about V2 type pipelines, see Pipeline types (https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html)
// in the CodePipeline User Guide.
PipelineType PipelineType
// The date and time of the last update to the pipeline, in timestamp format.
Updated *time.Time
// The version number of the pipeline.
Version *int32
noSmithyDocumentSerde
}
// Represents information about the specified trigger configuration, such as the
// filter criteria and the source stage for the action that contains the trigger.
// This is only supported for the CodeStarSourceConnection action type. When a
// trigger configuration is specified, default change detection for repository and
// branch commits is disabled. V2 type pipelines, along with triggers on Git tags
// and pipeline-level variables, are not currently supported for CloudFormation and
// CDK resources in CodePipeline. For more information about V2 type pipelines, see
// Pipeline types (https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html)
// in the CodePipeline User Guide.
type PipelineTriggerDeclaration struct {
// Provides the filter criteria and the source stage for the repository event that
// starts the pipeline, such as Git tags.
//
// This member is required.
GitConfiguration *GitConfiguration
// The source provider for the event, such as connections configured for a
// repository with Git tags, for the specified trigger configuration.
//
// This member is required.
ProviderType PipelineTriggerProviderType
noSmithyDocumentSerde
}
// A pipeline-level variable used for a pipeline execution. V2 type pipelines,
// along with triggers on Git tags and pipeline-level variables, are not currently
// supported for CloudFormation and CDK resources in CodePipeline. For more
// information about V2 type pipelines, see Pipeline types (https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html)
// in the CodePipeline User Guide.
type PipelineVariable struct {
// The name of a pipeline-level variable.
//
// This member is required.
Name *string
// The value of a pipeline-level variable.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// A variable declared at the pipeline level. V2 type pipelines, along with
// triggers on Git tags and pipeline-level variables, are not currently supported
// for CloudFormation and CDK resources in CodePipeline. For more information about
// V2 type pipelines, see Pipeline types (https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html)
// in the CodePipeline User Guide.
type PipelineVariableDeclaration struct {
// The name of a pipeline-level variable.
//
// This member is required.
Name *string
// The value of a pipeline-level variable.
DefaultValue *string
// The description of a pipeline-level variable. It's used to add additional
// context about the variable, and not being used at time when pipeline executes.
Description *string
noSmithyDocumentSerde
}
// A pipeline-level variable used for a pipeline execution.
type ResolvedPipelineVariable struct {
// The name of a pipeline-level variable.
Name *string
// The resolved value of a pipeline-level variable.
ResolvedValue *string
noSmithyDocumentSerde
}
// The location of the S3 bucket that contains a revision.
type S3ArtifactLocation struct {
// The name of the S3 bucket.
//
// This member is required.
BucketName *string
// The key of the object in the S3 bucket, which uniquely identifies the object in
// the bucket.
//
// This member is required.
ObjectKey *string
noSmithyDocumentSerde
}
// The Amazon S3 artifact location for an action's artifacts.
type S3Location struct {
// The Amazon S3 artifact bucket for an action's artifacts.
Bucket *string
// The artifact name.
Key *string
noSmithyDocumentSerde
}
// Information about the version (or revision) of a source artifact that initiated
// a pipeline execution.
type SourceRevision struct {
// The name of the action that processed the revision to the source artifact.
//
// This member is required.
ActionName *string
// The system-generated unique ID that identifies the revision number of the
// artifact.
RevisionId *string
// Summary information about the most recent revision of the artifact. For GitHub
// and CodeCommit repositories, the commit message. For Amazon S3 buckets or
// actions, the user-provided content of a codepipeline-artifact-revision-summary
// key specified in the object metadata.
RevisionSummary *string
// The commit ID for the artifact revision. For artifacts stored in GitHub or
// CodeCommit repositories, the commit ID is linked to a commit details page.
RevisionUrl *string
noSmithyDocumentSerde
}
// A list that allows you to specify, or override, the source revision for a
// pipeline execution that's being started. A source revision is the version with
// all the changes to your application code, or source artifact, for the pipeline
// execution.
type SourceRevisionOverride struct {
// The name of the action where the override will be applied.
//
// This member is required.
ActionName *string
// The type of source revision, based on the source provider. For example, the
// revision type for the CodeCommit action provider is the commit ID.
//
// This member is required.
RevisionType SourceRevisionType
// The source revision, or version of your source artifact, with the changes that
// you want to run in the pipeline execution.
//
// This member is required.
RevisionValue *string
noSmithyDocumentSerde
}
// Represents information about a stage to a job worker.
type StageContext struct {
// The name of the stage.
Name *string
noSmithyDocumentSerde
}
// Represents information about a stage and its definition.
type StageDeclaration struct {
// The actions included in a stage.
//
// This member is required.
Actions []ActionDeclaration
// The name of the stage.
//
// This member is required.
Name *string
// Reserved for future use.
Blockers []BlockerDeclaration
noSmithyDocumentSerde
}
// Represents information about the run of a stage.
type StageExecution struct {
// The ID of the pipeline execution associated with the stage.
//
// This member is required.
PipelineExecutionId *string
// The status of the stage, or for a completed stage, the last status of the
// stage. A status of cancelled means that the pipeline’s definition was updated
// before the stage execution could be completed.
//
// This member is required.
Status StageExecutionStatus
noSmithyDocumentSerde
}
// Represents information about the state of the stage.
type StageState struct {
// The state of the stage.
ActionStates []ActionState
// Represents information about the run of a stage.
InboundExecution *StageExecution
// The state of the inbound transition, which is either enabled or disabled.
InboundTransitionState *TransitionState
// Information about the latest execution in the stage, including its ID and
// status.
LatestExecution *StageExecution
// The name of the stage.
StageName *string
noSmithyDocumentSerde
}
// The interaction that stopped a pipeline execution.
type StopExecutionTrigger struct {
// The user-specified reason the pipeline was stopped.
Reason *string
noSmithyDocumentSerde
}
// A tag is a key-value pair that is used to manage the resource.
type Tag struct {
// The tag's key.
//
// This member is required.
Key *string
// The tag's value.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// A response to a PollForThirdPartyJobs request returned by CodePipeline when
// there is a job to be worked on by a partner action.
type ThirdPartyJob struct {
// The clientToken portion of the clientId and clientToken pair used to verify
// that the calling entity is allowed access to the job and its details.
ClientId *string
// The identifier used to identify the job in CodePipeline.
JobId *string
noSmithyDocumentSerde
}
// Represents information about the job data for a partner action.
type ThirdPartyJobData struct {
// Represents information about an action configuration.
ActionConfiguration *ActionConfiguration
// Represents information about an action type.
ActionTypeId *ActionTypeId
// Represents an Amazon Web Services session credentials object. These credentials
// are temporary credentials that are issued by Amazon Web Services Secure Token
// Service (STS). They can be used to access input and output artifacts in the S3
// bucket used to store artifact for the pipeline in CodePipeline.
ArtifactCredentials *AWSSessionCredentials
// A system-generated token, such as a CodeDeploy deployment ID, that a job
// requires to continue the job asynchronously.
ContinuationToken *string
// The encryption key used to encrypt and decrypt data in the artifact store for
// the pipeline, such as an Amazon Web Services Key Management Service (Amazon Web
// Services KMS) key. This is optional and might not be present.
EncryptionKey *EncryptionKey
// The name of the artifact that is worked on by the action, if any. This name
// might be system-generated, such as "MyApp", or it might be defined by the user
// when the action is created. The input artifact name must match the name of an
// output artifact generated by an action in an earlier action or stage of the
// pipeline.
InputArtifacts []Artifact
// The name of the artifact that is the result of the action, if any. This name
// might be system-generated, such as "MyBuiltApp", or it might be defined by the
// user when the action is created.
OutputArtifacts []Artifact
// Represents information about a pipeline to a job worker. Does not include
// pipelineArn and pipelineExecutionId for ThirdParty jobs.
PipelineContext *PipelineContext
noSmithyDocumentSerde
}
// The details of a job sent in response to a GetThirdPartyJobDetails request.
type ThirdPartyJobDetails struct {
// The data to be returned by the third party job worker.
Data *ThirdPartyJobData
// The identifier used to identify the job details in CodePipeline.
Id *string
// A system-generated random number that CodePipeline uses to ensure that the job
// is being worked on by only one job worker. Use this number in an
// AcknowledgeThirdPartyJob request.
Nonce *string
noSmithyDocumentSerde
}
// Represents information about the state of transitions between one stage and
// another stage.
type TransitionState struct {
// The user-specified reason why the transition between two stages of a pipeline
// was disabled.
DisabledReason *string
// Whether the transition between stages is enabled (true) or disabled (false).
Enabled bool
// The timestamp when the transition state was last changed.
LastChangedAt *time.Time
// The ID of the user who last changed the transition state.
LastChangedBy *string
noSmithyDocumentSerde
}
// The authentication applied to incoming webhook trigger requests.
type WebhookAuthConfiguration struct {
// The property used to configure acceptance of webhooks in an IP address range.
// For IP, only the AllowedIPRange property must be set. This property must be set
// to a valid CIDR range.
AllowedIPRange *string
// The property used to configure GitHub authentication. For GITHUB_HMAC, only the
// SecretToken property must be set.
SecretToken *string
noSmithyDocumentSerde
}
// Represents information about a webhook and its definition.
type WebhookDefinition struct {
// Supported options are GITHUB_HMAC, IP, and UNAUTHENTICATED.
// - For information about the authentication scheme implemented by GITHUB_HMAC,
// see Securing your webhooks (https://developer.github.com/webhooks/securing/)
// on the GitHub Developer website.
// - IP rejects webhooks trigger requests unless they originate from an IP
// address in the IP range whitelisted in the authentication configuration.
// - UNAUTHENTICATED accepts all webhook trigger requests regardless of origin.
//
// This member is required.
Authentication WebhookAuthenticationType
// Properties that configure the authentication applied to incoming webhook
// trigger requests. The required properties depend on the authentication type. For
// GITHUB_HMAC, only the SecretToken property must be set. For IP, only the
// AllowedIPRange property must be set to a valid CIDR range. For UNAUTHENTICATED,
// no properties can be set.
//
// This member is required.
AuthenticationConfiguration *WebhookAuthConfiguration
// A list of rules applied to the body/payload sent in the POST request to a
// webhook URL. All defined rules must pass for the request to be accepted and the
// pipeline started.
//
// This member is required.
Filters []WebhookFilterRule
// The name of the webhook.
//
// This member is required.
Name *string
// The name of the action in a pipeline you want to connect to the webhook. The
// action must be from the source (first) stage of the pipeline.
//
// This member is required.
TargetAction *string
// The name of the pipeline you want to connect to the webhook.
//
// This member is required.
TargetPipeline *string
noSmithyDocumentSerde
}
// The event criteria that specify when a webhook notification is sent to your URL.
type WebhookFilterRule struct {
// A JsonPath expression that is applied to the body/payload of the webhook. The
// value selected by the JsonPath expression must match the value specified in the
// MatchEquals field. Otherwise, the request is ignored. For more information, see
// Java JsonPath implementation (https://github.com/json-path/JsonPath) in GitHub.
//
// This member is required.
JsonPath *string
// The value selected by the JsonPath expression must match what is supplied in
// the MatchEquals field. Otherwise, the request is ignored. Properties from the
// target action configuration can be included as placeholders in this value by
// surrounding the action configuration key with curly brackets. For example, if
// the value supplied here is "refs/heads/{Branch}" and the target action has an
// action configuration property called "Branch" with a value of "main", the
// MatchEquals value is evaluated as "refs/heads/main". For a list of action
// configuration properties for built-in action types, see Pipeline Structure
// Reference Action Requirements (https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#action-requirements)
// .
MatchEquals *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|