aws-sdk-codepipeline 1.68.0 → 1.70.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -276,6 +276,17 @@ module Aws::CodePipeline
276
276
  # produced as output by this action fall under this namespace.
277
277
  # @return [String]
278
278
  #
279
+ # @!attribute [rw] timeout_in_minutes
280
+ # A timeout duration in minutes that can be applied against the
281
+ # ActionType’s default timeout value specified in [Quotas for
282
+ # CodePipeline ][1]. This attribute is available only to the manual
283
+ # approval ActionType.
284
+ #
285
+ #
286
+ #
287
+ # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/limits.html
288
+ # @return [Integer]
289
+ #
279
290
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionDeclaration AWS API Documentation
280
291
  #
281
292
  class ActionDeclaration < Struct.new(
@@ -287,7 +298,8 @@ module Aws::CodePipeline
287
298
  :input_artifacts,
288
299
  :role_arn,
289
300
  :region,
290
- :namespace)
301
+ :namespace,
302
+ :timeout_in_minutes)
291
303
  SENSITIVE = []
292
304
  include Aws::Structure
293
305
  end
@@ -395,6 +407,10 @@ module Aws::CodePipeline
395
407
  # The last update time of the action execution.
396
408
  # @return [Time]
397
409
  #
410
+ # @!attribute [rw] updated_by
411
+ # The ARN of the user who changed the pipeline execution details.
412
+ # @return [String]
413
+ #
398
414
  # @!attribute [rw] status
399
415
  # The status of the action execution. Status categories are
400
416
  # `InProgress`, `Succeeded`, and `Failed`.
@@ -420,6 +436,7 @@ module Aws::CodePipeline
420
436
  :action_name,
421
437
  :start_time,
422
438
  :last_update_time,
439
+ :updated_by,
423
440
  :status,
424
441
  :input,
425
442
  :output)
@@ -433,10 +450,20 @@ module Aws::CodePipeline
433
450
  # The pipeline execution ID used to filter action execution history.
434
451
  # @return [String]
435
452
  #
453
+ # @!attribute [rw] latest_in_pipeline_execution
454
+ # The latest execution in the pipeline.
455
+ #
456
+ # <note markdown="1"> Filtering on the latest execution is available for executions run on
457
+ # or after February 08, 2024.
458
+ #
459
+ # </note>
460
+ # @return [Types::LatestInPipelineExecutionFilter]
461
+ #
436
462
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionExecutionFilter AWS API Documentation
437
463
  #
438
464
  class ActionExecutionFilter < Struct.new(
439
- :pipeline_execution_id)
465
+ :pipeline_execution_id,
466
+ :latest_in_pipeline_execution)
440
467
  SENSITIVE = []
441
468
  include Aws::Structure
442
469
  end
@@ -533,12 +560,17 @@ module Aws::CodePipeline
533
560
  # action.
534
561
  # @return [String]
535
562
  #
563
+ # @!attribute [rw] error_details
564
+ # Represents information about an error in CodePipeline.
565
+ # @return [Types::ErrorDetails]
566
+ #
536
567
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionExecutionResult AWS API Documentation
537
568
  #
538
569
  class ActionExecutionResult < Struct.new(
539
570
  :external_execution_id,
540
571
  :external_execution_summary,
541
- :external_execution_url)
572
+ :external_execution_url,
573
+ :error_details)
542
574
  SENSITIVE = []
543
575
  include Aws::Structure
544
576
  end
@@ -1262,6 +1294,19 @@ module Aws::CodePipeline
1262
1294
  include Aws::Structure
1263
1295
  end
1264
1296
 
1297
+ # The pipeline has reached the limit for concurrent pipeline executions.
1298
+ #
1299
+ # @!attribute [rw] message
1300
+ # @return [String]
1301
+ #
1302
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ConcurrentPipelineExecutionsLimitExceededException AWS API Documentation
1303
+ #
1304
+ class ConcurrentPipelineExecutionsLimitExceededException < Struct.new(
1305
+ :message)
1306
+ SENSITIVE = []
1307
+ include Aws::Structure
1308
+ end
1309
+
1265
1310
  # Your request cannot be handled because the pipeline is busy handling
1266
1311
  # ongoing activities. Try again later.
1267
1312
  #
@@ -1989,6 +2034,28 @@ module Aws::CodePipeline
1989
2034
  include Aws::Structure
1990
2035
  end
1991
2036
 
2037
+ # The Git repository branches specified as filter criteria to start the
2038
+ # pipeline.
2039
+ #
2040
+ # @!attribute [rw] includes
2041
+ # The list of patterns of Git branches that, when a commit is pushed,
2042
+ # are to be included as criteria that starts the pipeline.
2043
+ # @return [Array<String>]
2044
+ #
2045
+ # @!attribute [rw] excludes
2046
+ # The list of patterns of Git branches that, when a commit is pushed,
2047
+ # are to be excluded from starting the pipeline.
2048
+ # @return [Array<String>]
2049
+ #
2050
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GitBranchFilterCriteria AWS API Documentation
2051
+ #
2052
+ class GitBranchFilterCriteria < Struct.new(
2053
+ :includes,
2054
+ :excludes)
2055
+ SENSITIVE = []
2056
+ include Aws::Structure
2057
+ end
2058
+
1992
2059
  # A type of trigger configuration for Git-based source actions.
1993
2060
  #
1994
2061
  # <note markdown="1"> You can specify the Git configuration trigger type for all third-party
@@ -1997,17 +2064,6 @@ module Aws::CodePipeline
1997
2064
  #
1998
2065
  # </note>
1999
2066
  #
2000
- # <note markdown="1"> V2 type pipelines, along with triggers on Git tags and pipeline-level
2001
- # variables, are not currently supported for CloudFormation and CDK
2002
- # resources in CodePipeline. For more information about V2 type
2003
- # pipelines, see [Pipeline types][1] in the *CodePipeline User Guide*.
2004
- #
2005
- # </note>
2006
- #
2007
- #
2008
- #
2009
- # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html
2010
- #
2011
2067
  # @!attribute [rw] source_action_name
2012
2068
  # The name of the pipeline source action where the trigger
2013
2069
  # configuration, such as Git tags, is specified. The trigger
@@ -2022,17 +2078,70 @@ module Aws::CodePipeline
2022
2078
  # @!attribute [rw] push
2023
2079
  # The field where the repository event that will start the pipeline,
2024
2080
  # such as pushing Git tags, is specified with details.
2025
- #
2026
- # <note markdown="1"> Git tags is the only supported event type.
2027
- #
2028
- # </note>
2029
2081
  # @return [Array<Types::GitPushFilter>]
2030
2082
  #
2083
+ # @!attribute [rw] pull_request
2084
+ # The field where the repository event that will start the pipeline is
2085
+ # specified as pull requests.
2086
+ # @return [Array<Types::GitPullRequestFilter>]
2087
+ #
2031
2088
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GitConfiguration AWS API Documentation
2032
2089
  #
2033
2090
  class GitConfiguration < Struct.new(
2034
2091
  :source_action_name,
2035
- :push)
2092
+ :push,
2093
+ :pull_request)
2094
+ SENSITIVE = []
2095
+ include Aws::Structure
2096
+ end
2097
+
2098
+ # The Git repository file paths specified as filter criteria to start
2099
+ # the pipeline.
2100
+ #
2101
+ # @!attribute [rw] includes
2102
+ # The list of patterns of Git repository file paths that, when a
2103
+ # commit is pushed, are to be included as criteria that starts the
2104
+ # pipeline.
2105
+ # @return [Array<String>]
2106
+ #
2107
+ # @!attribute [rw] excludes
2108
+ # The list of patterns of Git repository file paths that, when a
2109
+ # commit is pushed, are to be excluded from starting the pipeline.
2110
+ # @return [Array<String>]
2111
+ #
2112
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GitFilePathFilterCriteria AWS API Documentation
2113
+ #
2114
+ class GitFilePathFilterCriteria < Struct.new(
2115
+ :includes,
2116
+ :excludes)
2117
+ SENSITIVE = []
2118
+ include Aws::Structure
2119
+ end
2120
+
2121
+ # The event criteria for the pull request trigger configuration, such as
2122
+ # the lists of branches or file paths to include and exclude.
2123
+ #
2124
+ # @!attribute [rw] events
2125
+ # The field that specifies which pull request events to filter on
2126
+ # (opened, updated, closed) for the trigger configuration.
2127
+ # @return [Array<String>]
2128
+ #
2129
+ # @!attribute [rw] branches
2130
+ # The field that specifies to filter on branches for the pull request
2131
+ # trigger configuration.
2132
+ # @return [Types::GitBranchFilterCriteria]
2133
+ #
2134
+ # @!attribute [rw] file_paths
2135
+ # The field that specifies to filter on file paths for the pull
2136
+ # request trigger configuration.
2137
+ # @return [Types::GitFilePathFilterCriteria]
2138
+ #
2139
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GitPullRequestFilter AWS API Documentation
2140
+ #
2141
+ class GitPullRequestFilter < Struct.new(
2142
+ :events,
2143
+ :branches,
2144
+ :file_paths)
2036
2145
  SENSITIVE = []
2037
2146
  include Aws::Structure
2038
2147
  end
@@ -2046,10 +2155,22 @@ module Aws::CodePipeline
2046
2155
  # configuration.
2047
2156
  # @return [Types::GitTagFilterCriteria]
2048
2157
  #
2158
+ # @!attribute [rw] branches
2159
+ # The field that specifies to filter on branches for the push trigger
2160
+ # configuration.
2161
+ # @return [Types::GitBranchFilterCriteria]
2162
+ #
2163
+ # @!attribute [rw] file_paths
2164
+ # The field that specifies to filter on file paths for the push
2165
+ # trigger configuration.
2166
+ # @return [Types::GitFilePathFilterCriteria]
2167
+ #
2049
2168
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GitPushFilter AWS API Documentation
2050
2169
  #
2051
2170
  class GitPushFilter < Struct.new(
2052
- :tags)
2171
+ :tags,
2172
+ :branches,
2173
+ :file_paths)
2053
2174
  SENSITIVE = []
2054
2175
  include Aws::Structure
2055
2176
  end
@@ -2364,6 +2485,36 @@ module Aws::CodePipeline
2364
2485
  include Aws::Structure
2365
2486
  end
2366
2487
 
2488
+ # The field that specifies to filter on the latest execution in the
2489
+ # pipeline.
2490
+ #
2491
+ # <note markdown="1"> Filtering on the latest execution is available for executions run on
2492
+ # or after February 08, 2024.
2493
+ #
2494
+ # </note>
2495
+ #
2496
+ # @!attribute [rw] pipeline_execution_id
2497
+ # The execution ID for the latest execution in the pipeline.
2498
+ # @return [String]
2499
+ #
2500
+ # @!attribute [rw] start_time_range
2501
+ # The start time to filter on for the latest execution in the
2502
+ # pipeline. Valid options:
2503
+ #
2504
+ # * All
2505
+ #
2506
+ # * Latest
2507
+ # @return [String]
2508
+ #
2509
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/LatestInPipelineExecutionFilter AWS API Documentation
2510
+ #
2511
+ class LatestInPipelineExecutionFilter < Struct.new(
2512
+ :pipeline_execution_id,
2513
+ :start_time_range)
2514
+ SENSITIVE = []
2515
+ include Aws::Structure
2516
+ end
2517
+
2367
2518
  # The number of pipelines associated with the Amazon Web Services
2368
2519
  # account has exceeded the limit allowed for the account.
2369
2520
  #
@@ -2843,6 +2994,11 @@ module Aws::CodePipeline
2843
2994
  # updated.
2844
2995
  # @return [Integer]
2845
2996
  #
2997
+ # @!attribute [rw] execution_mode
2998
+ # The method that the pipeline will use to handle multiple executions.
2999
+ # The default mode is SUPERSEDED.
3000
+ # @return [String]
3001
+ #
2846
3002
  # @!attribute [rw] pipeline_type
2847
3003
  # CodePipeline provides the following pipeline types, which differ in
2848
3004
  # characteristics and price, so that you can tailor your pipeline
@@ -2865,21 +3021,18 @@ module Aws::CodePipeline
2865
3021
  # For information about which type of pipeline to choose, see [What
2866
3022
  # type of pipeline is right for me?][2].
2867
3023
  #
2868
- # <note markdown="1"> V2 type pipelines, along with triggers on Git tags and
2869
- # pipeline-level variables, are not currently supported for
2870
- # CloudFormation and CDK resources in CodePipeline. For more
2871
- # information about V2 type pipelines, see [Pipeline types][3] in the
2872
- # *CodePipeline User Guide*.
2873
- #
2874
- # </note>
2875
3024
  #
2876
3025
  #
2877
- #
2878
- # [1]: https://aws.amazon.com/codepipeline/pricing/
3026
+ # [1]: http://aws.amazon.com/codepipeline/pricing/
2879
3027
  # [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types-planning.html
2880
- # [3]: https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html
2881
3028
  # @return [String]
2882
3029
  #
3030
+ # @!attribute [rw] variables
3031
+ # A list that defines the pipeline variables for a pipeline resource.
3032
+ # Variable names can have alphanumeric and underscore characters, and
3033
+ # the values must match `[A-Za-z0-9@\-_]+`.
3034
+ # @return [Array<Types::PipelineVariableDeclaration>]
3035
+ #
2883
3036
  # @!attribute [rw] triggers
2884
3037
  # The trigger configuration specifying a type of event, such as Git
2885
3038
  # tags, that starts the pipeline.
@@ -2890,12 +3043,6 @@ module Aws::CodePipeline
2890
3043
  # </note>
2891
3044
  # @return [Array<Types::PipelineTriggerDeclaration>]
2892
3045
  #
2893
- # @!attribute [rw] variables
2894
- # A list that defines the pipeline variables for a pipeline resource.
2895
- # Variable names can have alphanumeric and underscore characters, and
2896
- # the values must match `[A-Za-z0-9@\-_]+`.
2897
- # @return [Array<Types::PipelineVariableDeclaration>]
2898
- #
2899
3046
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PipelineDeclaration AWS API Documentation
2900
3047
  #
2901
3048
  class PipelineDeclaration < Struct.new(
@@ -2905,9 +3052,10 @@ module Aws::CodePipeline
2905
3052
  :artifact_stores,
2906
3053
  :stages,
2907
3054
  :version,
3055
+ :execution_mode,
2908
3056
  :pipeline_type,
2909
- :triggers,
2910
- :variables)
3057
+ :variables,
3058
+ :triggers)
2911
3059
  SENSITIVE = []
2912
3060
  include Aws::Structure
2913
3061
  end
@@ -2968,13 +3116,18 @@ module Aws::CodePipeline
2968
3116
  # execution.
2969
3117
  # @return [Array<Types::ArtifactRevision>]
2970
3118
  #
3119
+ # @!attribute [rw] variables
3120
+ # A list of pipeline variables used for the pipeline execution.
3121
+ # @return [Array<Types::ResolvedPipelineVariable>]
3122
+ #
2971
3123
  # @!attribute [rw] trigger
2972
3124
  # The interaction or event that started a pipeline execution.
2973
3125
  # @return [Types::ExecutionTrigger]
2974
3126
  #
2975
- # @!attribute [rw] variables
2976
- # A list of pipeline variables used for the pipeline execution.
2977
- # @return [Array<Types::ResolvedPipelineVariable>]
3127
+ # @!attribute [rw] execution_mode
3128
+ # The method that the pipeline will use to handle multiple executions.
3129
+ # The default mode is SUPERSEDED.
3130
+ # @return [String]
2978
3131
  #
2979
3132
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PipelineExecution AWS API Documentation
2980
3133
  #
@@ -2985,8 +3138,9 @@ module Aws::CodePipeline
2985
3138
  :status,
2986
3139
  :status_summary,
2987
3140
  :artifact_revisions,
3141
+ :variables,
2988
3142
  :trigger,
2989
- :variables)
3143
+ :execution_mode)
2990
3144
  SENSITIVE = []
2991
3145
  include Aws::Structure
2992
3146
  end
@@ -3070,6 +3224,11 @@ module Aws::CodePipeline
3070
3224
  # The interaction that stopped a pipeline execution.
3071
3225
  # @return [Types::StopExecutionTrigger]
3072
3226
  #
3227
+ # @!attribute [rw] execution_mode
3228
+ # The method that the pipeline will use to handle multiple executions.
3229
+ # The default mode is SUPERSEDED.
3230
+ # @return [String]
3231
+ #
3073
3232
  # @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PipelineExecutionSummary AWS API Documentation
3074
3233
  #
3075
3234
  class PipelineExecutionSummary < Struct.new(
@@ -3079,7 +3238,8 @@ module Aws::CodePipeline
3079
3238
  :last_update_time,
3080
3239
  :source_revisions,
3081
3240
  :trigger,
3082
- :stop_trigger)
3241
+ :stop_trigger,
3242
+ :execution_mode)
3083
3243
  SENSITIVE = []
3084
3244
  include Aws::Structure
3085
3245
  end
@@ -3168,19 +3328,15 @@ module Aws::CodePipeline
3168
3328
  # For information about which type of pipeline to choose, see [What
3169
3329
  # type of pipeline is right for me?][2].
3170
3330
  #
3171
- # <note markdown="1"> V2 type pipelines, along with triggers on Git tags and
3172
- # pipeline-level variables, are not currently supported for
3173
- # CloudFormation and CDK resources in CodePipeline. For more
3174
- # information about V2 type pipelines, see [Pipeline types][3] in the
3175
- # *CodePipeline User Guide*.
3176
3331
  #
3177
- # </note>
3178
3332
  #
3179
- #
3180
- #
3181
- # [1]: https://aws.amazon.com/codepipeline/pricing/
3333
+ # [1]: http://aws.amazon.com/codepipeline/pricing/
3182
3334
  # [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types-planning.html
3183
- # [3]: https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html
3335
+ # @return [String]
3336
+ #
3337
+ # @!attribute [rw] execution_mode
3338
+ # The method that the pipeline will use to handle multiple executions.
3339
+ # The default mode is SUPERSEDED.
3184
3340
  # @return [String]
3185
3341
  #
3186
3342
  # @!attribute [rw] created
@@ -3198,6 +3354,7 @@ module Aws::CodePipeline
3198
3354
  :name,
3199
3355
  :version,
3200
3356
  :pipeline_type,
3357
+ :execution_mode,
3201
3358
  :created,
3202
3359
  :updated)
3203
3360
  SENSITIVE = []
@@ -3217,17 +3374,6 @@ module Aws::CodePipeline
3217
3374
  #
3218
3375
  # </note>
3219
3376
  #
3220
- # <note markdown="1"> V2 type pipelines, along with triggers on Git tags and pipeline-level
3221
- # variables, are not currently supported for CloudFormation and CDK
3222
- # resources in CodePipeline. For more information about V2 type
3223
- # pipelines, see [Pipeline types][1] in the *CodePipeline User Guide*.
3224
- #
3225
- # </note>
3226
- #
3227
- #
3228
- #
3229
- # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html
3230
- #
3231
3377
  # @!attribute [rw] provider_type
3232
3378
  # The source provider for the event, such as connections configured
3233
3379
  # for a repository with Git tags, for the specified trigger
@@ -3250,17 +3396,6 @@ module Aws::CodePipeline
3250
3396
 
3251
3397
  # A pipeline-level variable used for a pipeline execution.
3252
3398
  #
3253
- # <note markdown="1"> V2 type pipelines, along with triggers on Git tags and pipeline-level
3254
- # variables, are not currently supported for CloudFormation and CDK
3255
- # resources in CodePipeline. For more information about V2 type
3256
- # pipelines, see [Pipeline types][1] in the *CodePipeline User Guide*.
3257
- #
3258
- # </note>
3259
- #
3260
- #
3261
- #
3262
- # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html
3263
- #
3264
3399
  # @!attribute [rw] name
3265
3400
  # The name of a pipeline-level variable.
3266
3401
  # @return [String]
@@ -3280,17 +3415,6 @@ module Aws::CodePipeline
3280
3415
 
3281
3416
  # A variable declared at the pipeline level.
3282
3417
  #
3283
- # <note markdown="1"> V2 type pipelines, along with triggers on Git tags and pipeline-level
3284
- # variables, are not currently supported for CloudFormation and CDK
3285
- # resources in CodePipeline. For more information about V2 type
3286
- # pipelines, see [Pipeline types][1] in the *CodePipeline User Guide*.
3287
- #
3288
- # </note>
3289
- #
3290
- #
3291
- #
3292
- # [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html
3293
- #
3294
3418
  # @!attribute [rw] name
3295
3419
  # The name of a pipeline-level variable.
3296
3420
  # @return [String]
@@ -3962,6 +4086,10 @@ module Aws::CodePipeline
3962
4086
  # Represents information about the run of a stage.
3963
4087
  # @return [Types::StageExecution]
3964
4088
  #
4089
+ # @!attribute [rw] inbound_executions
4090
+ # The inbound executions for a stage.
4091
+ # @return [Array<Types::StageExecution>]
4092
+ #
3965
4093
  # @!attribute [rw] inbound_transition_state
3966
4094
  # The state of the inbound transition, which is either enabled or
3967
4095
  # disabled.
@@ -3981,6 +4109,7 @@ module Aws::CodePipeline
3981
4109
  class StageState < Struct.new(
3982
4110
  :stage_name,
3983
4111
  :inbound_execution,
4112
+ :inbound_executions,
3984
4113
  :inbound_transition_state,
3985
4114
  :action_states,
3986
4115
  :latest_execution)
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-codepipeline/customizations'
52
52
  # @!group service
53
53
  module Aws::CodePipeline
54
54
 
55
- GEM_VERSION = '1.68.0'
55
+ GEM_VERSION = '1.70.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -198,13 +198,22 @@ module Aws
198
198
  ]?,
199
199
  role_arn: ::String?,
200
200
  region: ::String?,
201
- namespace: ::String?
201
+ namespace: ::String?,
202
+ timeout_in_minutes: ::Integer?
202
203
  },
203
204
  ]
204
205
  },
205
206
  ],
206
207
  version: ::Integer?,
208
+ execution_mode: ("QUEUED" | "SUPERSEDED" | "PARALLEL")?,
207
209
  pipeline_type: ("V1" | "V2")?,
210
+ variables: Array[
211
+ {
212
+ name: ::String,
213
+ default_value: ::String?,
214
+ description: ::String?
215
+ },
216
+ ]?,
208
217
  triggers: Array[
209
218
  {
210
219
  provider_type: ("CodeStarSourceConnection"),
@@ -215,18 +224,32 @@ module Aws
215
224
  tags: {
216
225
  includes: Array[::String]?,
217
226
  excludes: Array[::String]?
227
+ }?,
228
+ branches: {
229
+ includes: Array[::String]?,
230
+ excludes: Array[::String]?
231
+ }?,
232
+ file_paths: {
233
+ includes: Array[::String]?,
234
+ excludes: Array[::String]?
235
+ }?
236
+ },
237
+ ]?,
238
+ pull_request: Array[
239
+ {
240
+ events: Array[("OPEN" | "UPDATED" | "CLOSED")]?,
241
+ branches: {
242
+ includes: Array[::String]?,
243
+ excludes: Array[::String]?
244
+ }?,
245
+ file_paths: {
246
+ includes: Array[::String]?,
247
+ excludes: Array[::String]?
218
248
  }?
219
249
  },
220
250
  ]?
221
251
  }
222
252
  },
223
- ]?,
224
- variables: Array[
225
- {
226
- name: ::String,
227
- default_value: ::String?,
228
- description: ::String?
229
- },
230
253
  ]?
231
254
  },
232
255
  ?tags: Array[
@@ -367,7 +390,11 @@ module Aws
367
390
  def list_action_executions: (
368
391
  pipeline_name: ::String,
369
392
  ?filter: {
370
- pipeline_execution_id: ::String?
393
+ pipeline_execution_id: ::String?,
394
+ latest_in_pipeline_execution: {
395
+ pipeline_execution_id: ::String,
396
+ start_time_range: ("Latest" | "All")
397
+ }?
371
398
  },
372
399
  ?max_results: ::Integer,
373
400
  ?next_token: ::String
@@ -793,13 +820,22 @@ module Aws
793
820
  ]?,
794
821
  role_arn: ::String?,
795
822
  region: ::String?,
796
- namespace: ::String?
823
+ namespace: ::String?,
824
+ timeout_in_minutes: ::Integer?
797
825
  },
798
826
  ]
799
827
  },
800
828
  ],
801
829
  version: ::Integer?,
830
+ execution_mode: ("QUEUED" | "SUPERSEDED" | "PARALLEL")?,
802
831
  pipeline_type: ("V1" | "V2")?,
832
+ variables: Array[
833
+ {
834
+ name: ::String,
835
+ default_value: ::String?,
836
+ description: ::String?
837
+ },
838
+ ]?,
803
839
  triggers: Array[
804
840
  {
805
841
  provider_type: ("CodeStarSourceConnection"),
@@ -810,18 +846,32 @@ module Aws
810
846
  tags: {
811
847
  includes: Array[::String]?,
812
848
  excludes: Array[::String]?
849
+ }?,
850
+ branches: {
851
+ includes: Array[::String]?,
852
+ excludes: Array[::String]?
853
+ }?,
854
+ file_paths: {
855
+ includes: Array[::String]?,
856
+ excludes: Array[::String]?
857
+ }?
858
+ },
859
+ ]?,
860
+ pull_request: Array[
861
+ {
862
+ events: Array[("OPEN" | "UPDATED" | "CLOSED")]?,
863
+ branches: {
864
+ includes: Array[::String]?,
865
+ excludes: Array[::String]?
866
+ }?,
867
+ file_paths: {
868
+ includes: Array[::String]?,
869
+ excludes: Array[::String]?
813
870
  }?
814
871
  },
815
872
  ]?
816
873
  }
817
874
  },
818
- ]?,
819
- variables: Array[
820
- {
821
- name: ::String,
822
- default_value: ::String?,
823
- description: ::String?
824
- },
825
875
  ]?
826
876
  }
827
877
  ) -> _UpdatePipelineResponseSuccess
data/sig/errors.rbs CHANGED
@@ -22,6 +22,9 @@ module Aws
22
22
  class ConcurrentModificationException < ::Aws::Errors::ServiceError
23
23
  def message: () -> ::String
24
24
  end
25
+ class ConcurrentPipelineExecutionsLimitExceededException < ::Aws::Errors::ServiceError
26
+ def message: () -> ::String
27
+ end
25
28
  class ConflictException < ::Aws::Errors::ServiceError
26
29
  def message: () -> ::String
27
30
  end