aws-sdk-lambda 1.98.0 → 1.100.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2b99c46b04ca25da852c9ace6408ebbde4d6686bc5c5e9b43c48c95d6186b467
4
- data.tar.gz: 692c1537fff79bda4e87345d6fabffe175190f186075daac2b29bb273e717bac
3
+ metadata.gz: 6850a55a9ce5bbee89fcc06948123d050c97654653c2162e4ab660a885677517
4
+ data.tar.gz: 8a6fe37f6fdd5a9ed013970b244ed80378bd7d85bbaa2dc2461da5e98a9a6eff
5
5
  SHA512:
6
- metadata.gz: 633d6044060c590a5d3a6fcb87d8bc52b082d4332cc206d59e7571da232ae2dd20509b8efc2110063b6edd01bb9acbb00ecb663efb18b32ae111886d51aedb6e
7
- data.tar.gz: be0f9ba9d079594cc9cb7b061b9779930c3e6f5c98b5c8ffe021fc2cc2d3bcf1d42f134f359acb9271ec7b1107f8b768a0431a6a818da146a074f3f3594b2638
6
+ metadata.gz: 981026cab1a3c2e3016ce9dda269e2115e9ed0faefea96aa369f986dbe4e87f4fe7b3695a6b9af7f59d97de67d37547115692e8bf025842462c25bcd94bc227e
7
+ data.tar.gz: 4e4c78790518a3f78c0bd5b2730cfb51971656e3b5e4e41fe5054e186c84d96ce69d292ed52184777dbeabbaa96560b29ccaa6143a4bc132e91826d06cea790c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.99.0 (2023-06-15)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.98.0 (2023-06-05)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.98.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.98.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|
@@ -9,6 +9,7 @@
9
9
 
10
10
 
11
11
  module Aws::Lambda
12
+ # @api private
12
13
  module Endpoints
13
14
 
14
15
  class AddLayerVersionPermission
@@ -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.98.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.98.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-05 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