aws-sdk-lambda 1.125.0 → 1.127.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambda/client.rb +268 -79
- data/lib/aws-sdk-lambda/client_api.rb +55 -0
- data/lib/aws-sdk-lambda/endpoints.rb +28 -0
- data/lib/aws-sdk-lambda/plugins/endpoints.rb +4 -0
- data/lib/aws-sdk-lambda/types.rb +283 -56
- data/lib/aws-sdk-lambda.rb +1 -1
- data/sig/client.rbs +33 -2
- data/sig/types.rbs +31 -0
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -178,6 +178,7 @@ module Aws::Lambda
|
|
178
178
|
attr_accessor self_managed_kafka_event_source_config: Types::SelfManagedKafkaEventSourceConfig
|
179
179
|
attr_accessor scaling_config: Types::ScalingConfig
|
180
180
|
attr_accessor document_db_event_source_config: Types::DocumentDBEventSourceConfig
|
181
|
+
attr_accessor kms_key_arn: ::String
|
181
182
|
SENSITIVE: []
|
182
183
|
end
|
183
184
|
|
@@ -404,6 +405,8 @@ module Aws::Lambda
|
|
404
405
|
attr_accessor self_managed_kafka_event_source_config: Types::SelfManagedKafkaEventSourceConfig
|
405
406
|
attr_accessor scaling_config: Types::ScalingConfig
|
406
407
|
attr_accessor document_db_event_source_config: Types::DocumentDBEventSourceConfig
|
408
|
+
attr_accessor kms_key_arn: ::String
|
409
|
+
attr_accessor filter_criteria_error: Types::FilterCriteriaError
|
407
410
|
SENSITIVE: []
|
408
411
|
end
|
409
412
|
|
@@ -423,6 +426,12 @@ module Aws::Lambda
|
|
423
426
|
SENSITIVE: []
|
424
427
|
end
|
425
428
|
|
429
|
+
class FilterCriteriaError
|
430
|
+
attr_accessor error_code: ::String
|
431
|
+
attr_accessor message: ::String
|
432
|
+
SENSITIVE: []
|
433
|
+
end
|
434
|
+
|
426
435
|
class FunctionCode
|
427
436
|
attr_accessor zip_file: ::String
|
428
437
|
attr_accessor s3_bucket: ::String
|
@@ -563,6 +572,16 @@ module Aws::Lambda
|
|
563
572
|
SENSITIVE: []
|
564
573
|
end
|
565
574
|
|
575
|
+
class GetFunctionRecursionConfigRequest
|
576
|
+
attr_accessor function_name: ::String
|
577
|
+
SENSITIVE: []
|
578
|
+
end
|
579
|
+
|
580
|
+
class GetFunctionRecursionConfigResponse
|
581
|
+
attr_accessor recursive_loop: ("Allow" | "Terminate")
|
582
|
+
SENSITIVE: []
|
583
|
+
end
|
584
|
+
|
566
585
|
class GetFunctionRequest
|
567
586
|
attr_accessor function_name: ::String
|
568
587
|
attr_accessor qualifier: ::String
|
@@ -1124,6 +1143,17 @@ module Aws::Lambda
|
|
1124
1143
|
SENSITIVE: []
|
1125
1144
|
end
|
1126
1145
|
|
1146
|
+
class PutFunctionRecursionConfigRequest
|
1147
|
+
attr_accessor function_name: ::String
|
1148
|
+
attr_accessor recursive_loop: ("Allow" | "Terminate")
|
1149
|
+
SENSITIVE: []
|
1150
|
+
end
|
1151
|
+
|
1152
|
+
class PutFunctionRecursionConfigResponse
|
1153
|
+
attr_accessor recursive_loop: ("Allow" | "Terminate")
|
1154
|
+
SENSITIVE: []
|
1155
|
+
end
|
1156
|
+
|
1127
1157
|
class PutProvisionedConcurrencyConfigRequest
|
1128
1158
|
attr_accessor function_name: ::String
|
1129
1159
|
attr_accessor qualifier: ::String
|
@@ -1358,6 +1388,7 @@ module Aws::Lambda
|
|
1358
1388
|
attr_accessor function_response_types: ::Array[("ReportBatchItemFailures")]
|
1359
1389
|
attr_accessor scaling_config: Types::ScalingConfig
|
1360
1390
|
attr_accessor document_db_event_source_config: Types::DocumentDBEventSourceConfig
|
1391
|
+
attr_accessor kms_key_arn: ::String
|
1361
1392
|
SENSITIVE: []
|
1362
1393
|
end
|
1363
1394
|
|
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.
|
4
|
+
version: 1.127.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: 2024-
|
11
|
+
date: 2024-08-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|