File tree 1 file changed +12
-0
lines changed
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,8 @@ type CodePipelineEventDetail struct {
93
93
Region string `json:"region"`
94
94
95
95
Type CodePipelineEventDetailType `json:"type,omitempty"`
96
+
97
+ ExecutionResult CodePipelineEventDetailExecutionResult `json:"execution-result,omitempty"`
96
98
}
97
99
98
100
type CodePipelineEventDetailType struct {
@@ -105,3 +107,13 @@ type CodePipelineEventDetailType struct {
105
107
// From published EventBridge schema registry this is always int64 not string as documented
106
108
Version int64 `json:"version"`
107
109
}
110
+
111
+ type CodePipelineEventDetailExecutionResult struct {
112
+ ExternalExecutionUrl string `json:"external-execution-url"`
113
+
114
+ ExternalExecutionSummary string `json:"external-execution-summary"`
115
+
116
+ ExternalExecutionID string `json:"external-execution-id"`
117
+
118
+ ErrorCode string `json:"error-code,omitempty"`
119
+ }
You can’t perform that action at this time.
0 commit comments