|
215 | 215 | {"shape":"InvalidJobException"} |
216 | 216 | ] |
217 | 217 | }, |
| 218 | + "ListActionExecutions":{ |
| 219 | + "name":"ListActionExecutions", |
| 220 | + "http":{ |
| 221 | + "method":"POST", |
| 222 | + "requestUri":"/" |
| 223 | + }, |
| 224 | + "input":{"shape":"ListActionExecutionsInput"}, |
| 225 | + "output":{"shape":"ListActionExecutionsOutput"}, |
| 226 | + "errors":[ |
| 227 | + {"shape":"ValidationException"}, |
| 228 | + {"shape":"PipelineNotFoundException"}, |
| 229 | + {"shape":"InvalidNextTokenException"}, |
| 230 | + {"shape":"PipelineExecutionNotFoundException"} |
| 231 | + ] |
| 232 | + }, |
218 | 233 | "ListActionTypes":{ |
219 | 234 | "name":"ListActionTypes", |
220 | 235 | "http":{ |
|
623 | 638 | "errorDetails":{"shape":"ErrorDetails"} |
624 | 639 | } |
625 | 640 | }, |
| 641 | + "ActionExecutionDetail":{ |
| 642 | + "type":"structure", |
| 643 | + "members":{ |
| 644 | + "pipelineExecutionId":{"shape":"PipelineExecutionId"}, |
| 645 | + "actionExecutionId":{"shape":"ActionExecutionId"}, |
| 646 | + "pipelineVersion":{"shape":"PipelineVersion"}, |
| 647 | + "stageName":{"shape":"StageName"}, |
| 648 | + "actionName":{"shape":"ActionName"}, |
| 649 | + "startTime":{"shape":"Timestamp"}, |
| 650 | + "lastUpdateTime":{"shape":"Timestamp"}, |
| 651 | + "status":{"shape":"ActionExecutionStatus"}, |
| 652 | + "input":{"shape":"ActionExecutionInput"}, |
| 653 | + "output":{"shape":"ActionExecutionOutput"} |
| 654 | + } |
| 655 | + }, |
| 656 | + "ActionExecutionDetailList":{ |
| 657 | + "type":"list", |
| 658 | + "member":{"shape":"ActionExecutionDetail"} |
| 659 | + }, |
| 660 | + "ActionExecutionFilter":{ |
| 661 | + "type":"structure", |
| 662 | + "members":{ |
| 663 | + "pipelineExecutionId":{"shape":"PipelineExecutionId"} |
| 664 | + } |
| 665 | + }, |
| 666 | + "ActionExecutionId":{"type":"string"}, |
| 667 | + "ActionExecutionInput":{ |
| 668 | + "type":"structure", |
| 669 | + "members":{ |
| 670 | + "actionTypeId":{"shape":"ActionTypeId"}, |
| 671 | + "configuration":{"shape":"ActionConfigurationMap"}, |
| 672 | + "roleArn":{"shape":"RoleArn"}, |
| 673 | + "region":{"shape":"AWSRegionName"}, |
| 674 | + "inputArtifacts":{"shape":"ArtifactDetailList"} |
| 675 | + } |
| 676 | + }, |
| 677 | + "ActionExecutionOutput":{ |
| 678 | + "type":"structure", |
| 679 | + "members":{ |
| 680 | + "outputArtifacts":{"shape":"ArtifactDetailList"}, |
| 681 | + "executionResult":{"shape":"ActionExecutionResult"} |
| 682 | + } |
| 683 | + }, |
| 684 | + "ActionExecutionResult":{ |
| 685 | + "type":"structure", |
| 686 | + "members":{ |
| 687 | + "externalExecutionId":{"shape":"ExternalExecutionId"}, |
| 688 | + "externalExecutionSummary":{"shape":"ExternalExecutionSummary"}, |
| 689 | + "externalExecutionUrl":{"shape":"Url"} |
| 690 | + } |
| 691 | + }, |
626 | 692 | "ActionExecutionStatus":{ |
627 | 693 | "type":"string", |
628 | 694 | "enum":[ |
|
780 | 846 | "location":{"shape":"ArtifactLocation"} |
781 | 847 | } |
782 | 848 | }, |
| 849 | + "ArtifactDetail":{ |
| 850 | + "type":"structure", |
| 851 | + "members":{ |
| 852 | + "name":{"shape":"ArtifactName"}, |
| 853 | + "s3location":{"shape":"S3Location"} |
| 854 | + } |
| 855 | + }, |
| 856 | + "ArtifactDetailList":{ |
| 857 | + "type":"list", |
| 858 | + "member":{"shape":"ArtifactDetail"} |
| 859 | + }, |
783 | 860 | "ArtifactDetails":{ |
784 | 861 | "type":"structure", |
785 | 862 | "required":[ |
|
1076 | 1153 | "max":2048, |
1077 | 1154 | "min":1 |
1078 | 1155 | }, |
| 1156 | + "ExternalExecutionId":{"type":"string"}, |
| 1157 | + "ExternalExecutionSummary":{"type":"string"}, |
1079 | 1158 | "FailureDetails":{ |
1080 | 1159 | "type":"structure", |
1081 | 1160 | "required":[ |
|
1331 | 1410 | }, |
1332 | 1411 | "exception":true |
1333 | 1412 | }, |
| 1413 | + "ListActionExecutionsInput":{ |
| 1414 | + "type":"structure", |
| 1415 | + "required":["pipelineName"], |
| 1416 | + "members":{ |
| 1417 | + "pipelineName":{"shape":"PipelineName"}, |
| 1418 | + "filter":{"shape":"ActionExecutionFilter"}, |
| 1419 | + "maxResults":{"shape":"MaxResults"}, |
| 1420 | + "nextToken":{"shape":"NextToken"} |
| 1421 | + } |
| 1422 | + }, |
| 1423 | + "ListActionExecutionsOutput":{ |
| 1424 | + "type":"structure", |
| 1425 | + "members":{ |
| 1426 | + "actionExecutionDetails":{"shape":"ActionExecutionDetailList"}, |
| 1427 | + "nextToken":{"shape":"NextToken"} |
| 1428 | + } |
| 1429 | + }, |
1334 | 1430 | "ListActionTypesInput":{ |
1335 | 1431 | "type":"structure", |
1336 | 1432 | "members":{ |
|
1794 | 1890 | "objectKey":{"shape":"S3ObjectKey"} |
1795 | 1891 | } |
1796 | 1892 | }, |
| 1893 | + "S3Bucket":{ |
| 1894 | + "type":"string", |
| 1895 | + "max":63, |
| 1896 | + "min":3 |
| 1897 | + }, |
1797 | 1898 | "S3BucketName":{"type":"string"}, |
| 1899 | + "S3Key":{ |
| 1900 | + "type":"string", |
| 1901 | + "max":100, |
| 1902 | + "min":1 |
| 1903 | + }, |
| 1904 | + "S3Location":{ |
| 1905 | + "type":"structure", |
| 1906 | + "members":{ |
| 1907 | + "bucket":{"shape":"S3Bucket"}, |
| 1908 | + "key":{"shape":"S3Key"} |
| 1909 | + } |
| 1910 | + }, |
1798 | 1911 | "S3ObjectKey":{"type":"string"}, |
1799 | 1912 | "SecretAccessKey":{"type":"string"}, |
1800 | 1913 | "SessionToken":{"type":"string"}, |
|
0 commit comments