Skip to content

Commit 8e07042

Browse files
author
AWS
committed
AWS CodePipeline Update: CodePipeline now supports overriding S3 Source Object Key during StartPipelineExecution, as part of Source Overrides.
1 parent b4fb83b commit 8e07042

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
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": "CodePipeline now supports overriding S3 Source Object Key during StartPipelineExecution, as part of Source Overrides."
6+
}

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

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"serviceId":"CodePipeline",
1212
"signatureVersion":"v4",
1313
"targetPrefix":"CodePipeline_20150709",
14-
"uid":"codepipeline-2015-07-09"
14+
"uid":"codepipeline-2015-07-09",
15+
"auth":["aws.auth#sigv4"]
1516
},
1617
"operations":{
1718
"AcknowledgeJob":{
@@ -297,7 +298,7 @@
297298
{"shape":"PipelineNotFoundException"},
298299
{"shape":"InvalidNextTokenException"}
299300
],
300-
"documentation":"<p>Gets a summary of the most recent executions for a pipeline.</p>"
301+
"documentation":"<p>Gets a summary of the most recent executions for a pipeline.</p> <note> <p>When applying the filter for pipeline executions that have succeeded in the stage, the operation returns all executions in the current pipeline version beginning on February 1, 2024.</p> </note>"
301302
},
302303
"ListPipelines":{
303304
"name":"ListPipelines",
@@ -2812,7 +2813,7 @@
28122813
},
28132814
"maxResults":{
28142815
"shape":"MaxResults",
2815-
"documentation":"<p>The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. Action execution history is retained for up to 12 months, based on action execution start times. Default value is 100. </p> <note> <p>Detailed execution history is available for executions run on or after February 21, 2019.</p> </note>"
2816+
"documentation":"<p>The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. Action execution history is retained for up to 12 months, based on action execution start times. Default value is 100. </p>"
28162817
},
28172818
"nextToken":{
28182819
"shape":"NextToken",
@@ -4102,7 +4103,7 @@
41024103
"documentation":"<p>The source revision, or version of your source artifact, with the changes that you want to run in the pipeline execution.</p>"
41034104
}
41044105
},
4105-
"documentation":"<p>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.</p>"
4106+
"documentation":"<p>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.</p> <note> <p>For the <code>S3_OBJECT_VERSION_ID</code> and <code>S3_OBJECT_KEY</code> types of source revisions, either of the types can be used independently, or they can be used together to override the source with a specific ObjectKey and VersionID.</p> </note>"
41064107
},
41074108
"SourceRevisionOverrideList":{
41084109
"type":"list",
@@ -4115,7 +4116,8 @@
41154116
"enum":[
41164117
"COMMIT_ID",
41174118
"IMAGE_DIGEST",
4118-
"S3_OBJECT_VERSION_ID"
4119+
"S3_OBJECT_VERSION_ID",
4120+
"S3_OBJECT_KEY"
41194121
]
41204122
},
41214123
"StageActionDeclarationList":{

0 commit comments

Comments
 (0)