Skip to content

Commit dbe9925

Browse files
author
AWS
committed
AWS CodePipeline Update: Add ability to override timeout on action level.
1 parent 65ac2b5 commit dbe9925

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS CodePipeline",
4+
"contributor": "",
5+
"description": "Add ability to override timeout on action level."
6+
}

services/codepipeline/src/main/resources/codegen-resources/service-2.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -866,6 +866,10 @@
866866
"namespace":{
867867
"shape":"ActionNamespace",
868868
"documentation":"<p>The variable namespace associated with the action. All variables produced as output by this action fall under this namespace.</p>"
869+
},
870+
"timeoutInMinutes":{
871+
"shape":"ActionTimeout",
872+
"documentation":"<p>A timeout duration in minutes that can be applied against the ActionType’s default timeout value specified in <a href=\"https://docs.aws.amazon.com/codepipeline/latest/userguide/limits.html\">Quotas for CodePipeline </a>. This attribute is available only to the manual approval ActionType.</p>"
869873
}
870874
},
871875
"documentation":"<p>Represents information about an action declaration.</p>"
@@ -1154,6 +1158,12 @@
11541158
"type":"list",
11551159
"member":{"shape":"ActionState"}
11561160
},
1161+
"ActionTimeout":{
1162+
"type":"integer",
1163+
"box":true,
1164+
"max":86400,
1165+
"min":5
1166+
},
11571167
"ActionType":{
11581168
"type":"structure",
11591169
"required":[

0 commit comments

Comments
 (0)