aws-sdk-lambda 1.99.0 → 1.100.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8742819a13f8cfed1c547e085570a9839f0a8ad74136f0878e2398de747212ac
4
- data.tar.gz: c8a36782967269ed0b94f776db8103d4f1d096b351c808e689a5579a15a7e927
3
+ metadata.gz: 6850a55a9ce5bbee89fcc06948123d050c97654653c2162e4ab660a885677517
4
+ data.tar.gz: 8a6fe37f6fdd5a9ed013970b244ed80378bd7d85bbaa2dc2461da5e98a9a6eff
5
5
  SHA512:
6
- metadata.gz: f8afc63d2b0fa6c69ce4103a7191c98d4305548fe9523fc206afe32a1ff6227c3a0b94ff77f2063300671128b643dda3f72a34c27d8f3b8a820bf8876dbfe229
7
- data.tar.gz: 9bcc3fa2167e19e228e2e6afd89d455e8eb389a0c31cb738467810b1f9da0d32c6c1c39dfd852ef4b842da13fef88e40829c4f092dcd5311380c8bb5d3406685
6
+ metadata.gz: 981026cab1a3c2e3016ce9dda269e2115e9ed0faefea96aa369f986dbe4e87f4fe7b3695a6b9af7f59d97de67d37547115692e8bf025842462c25bcd94bc227e
7
+ data.tar.gz: 4e4c78790518a3f78c0bd5b2730cfb51971656e3b5e4e41fe5054e186c84d96ce69d292ed52184777dbeabbaa96560b29ccaa6143a4bc132e91826d06cea790c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.100.0 (2023-06-20)
5
+ ------------------
6
+
7
+ * Feature - This release adds RecursiveInvocationException to the Invoke API and InvokeWithResponseStream API.
8
+
4
9
  1.99.0 (2023-06-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.99.0
1
+ 1.100.0
@@ -6393,7 +6393,7 @@ module Aws::Lambda
6393
6393
  params: params,
6394
6394
  config: config)
6395
6395
  context[:gem_name] = 'aws-sdk-lambda'
6396
- context[:gem_version] = '1.99.0'
6396
+ context[:gem_version] = '1.100.0'
6397
6397
  Seahorse::Client::Request.new(handlers, context)
6398
6398
  end
6399
6399
 
@@ -280,6 +280,7 @@ module Aws::Lambda
280
280
  Qualifier = Shapes::StringShape.new(name: 'Qualifier')
281
281
  Queue = Shapes::StringShape.new(name: 'Queue')
282
282
  Queues = Shapes::ListShape.new(name: 'Queues')
283
+ RecursiveInvocationException = Shapes::StructureShape.new(name: 'RecursiveInvocationException')
283
284
  RemoveLayerVersionPermissionRequest = Shapes::StructureShape.new(name: 'RemoveLayerVersionPermissionRequest')
284
285
  RemovePermissionRequest = Shapes::StructureShape.new(name: 'RemovePermissionRequest')
285
286
  RequestTooLargeException = Shapes::StructureShape.new(name: 'RequestTooLargeException')
@@ -1261,6 +1262,10 @@ module Aws::Lambda
1261
1262
 
1262
1263
  Queues.member = Shapes::ShapeRef.new(shape: Queue)
1263
1264
 
1265
+ RecursiveInvocationException.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
1266
+ RecursiveInvocationException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
1267
+ RecursiveInvocationException.struct_class = Types::RecursiveInvocationException
1268
+
1264
1269
  RemoveLayerVersionPermissionRequest.add_member(:layer_name, Shapes::ShapeRef.new(shape: LayerName, required: true, location: "uri", location_name: "LayerName"))
1265
1270
  RemoveLayerVersionPermissionRequest.add_member(:version_number, Shapes::ShapeRef.new(shape: LayerVersionNumber, required: true, location: "uri", location_name: "VersionNumber"))
1266
1271
  RemoveLayerVersionPermissionRequest.add_member(:statement_id, Shapes::ShapeRef.new(shape: StatementId, required: true, location: "uri", location_name: "StatementId"))
@@ -1943,6 +1948,7 @@ module Aws::Lambda
1943
1948
  o.errors << Shapes::ShapeRef.new(shape: InvalidRuntimeException)
1944
1949
  o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
1945
1950
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotReadyException)
1951
+ o.errors << Shapes::ShapeRef.new(shape: RecursiveInvocationException)
1946
1952
  end)
1947
1953
 
1948
1954
  api.add_operation(:invoke_async, Seahorse::Model::Operation.new.tap do |o|
@@ -1994,6 +2000,7 @@ module Aws::Lambda
1994
2000
  o.errors << Shapes::ShapeRef.new(shape: InvalidRuntimeException)
1995
2001
  o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
1996
2002
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotReadyException)
2003
+ o.errors << Shapes::ShapeRef.new(shape: RecursiveInvocationException)
1997
2004
  end)
1998
2005
 
1999
2006
  api.add_operation(:list_aliases, Seahorse::Model::Operation.new.tap do |o|
@@ -52,6 +52,7 @@ module Aws::Lambda
52
52
  # * {PolicyLengthExceededException}
53
53
  # * {PreconditionFailedException}
54
54
  # * {ProvisionedConcurrencyConfigNotFoundException}
55
+ # * {RecursiveInvocationException}
55
56
  # * {RequestTooLargeException}
56
57
  # * {ResourceConflictException}
57
58
  # * {ResourceInUseException}
@@ -576,6 +577,26 @@ module Aws::Lambda
576
577
  end
577
578
  end
578
579
 
580
+ class RecursiveInvocationException < ServiceError
581
+
582
+ # @param [Seahorse::Client::RequestContext] context
583
+ # @param [String] message
584
+ # @param [Aws::Lambda::Types::RecursiveInvocationException] data
585
+ def initialize(context, message, data = Aws::EmptyStructure.new)
586
+ super(context, message, data)
587
+ end
588
+
589
+ # @return [String]
590
+ def type
591
+ @data[:type]
592
+ end
593
+
594
+ # @return [String]
595
+ def message
596
+ @message || @data[:message]
597
+ end
598
+ end
599
+
579
600
  class RequestTooLargeException < ServiceError
580
601
 
581
602
  # @param [Seahorse::Client::RequestContext] context
@@ -5223,6 +5223,27 @@ module Aws::Lambda
5223
5223
  include Aws::Structure
5224
5224
  end
5225
5225
 
5226
+ # Lambda has detected your function being invoked in a recursive loop
5227
+ # with other Amazon Web Services resources and stopped your function's
5228
+ # invocation.
5229
+ #
5230
+ # @!attribute [rw] type
5231
+ # The exception type.
5232
+ # @return [String]
5233
+ #
5234
+ # @!attribute [rw] message
5235
+ # The exception message.
5236
+ # @return [String]
5237
+ #
5238
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/RecursiveInvocationException AWS API Documentation
5239
+ #
5240
+ class RecursiveInvocationException < Struct.new(
5241
+ :type,
5242
+ :message)
5243
+ SENSITIVE = []
5244
+ include Aws::Structure
5245
+ end
5246
+
5226
5247
  # @!attribute [rw] layer_name
5227
5248
  # The name or Amazon Resource Name (ARN) of the layer.
5228
5249
  # @return [String]
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-lambda/event_streams'
54
54
  # @!group service
55
55
  module Aws::Lambda
56
56
 
57
- GEM_VERSION = '1.99.0'
57
+ GEM_VERSION = '1.100.0'
58
58
 
59
59
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lambda
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.99.0
4
+ version: 1.100.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-15 00:00:00.000000000 Z
11
+ date: 2023-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core