aws-sdk-lambda 1.168.0 → 1.169.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambda/client.rb +783 -9
- data/lib/aws-sdk-lambda/client_api.rb +581 -0
- data/lib/aws-sdk-lambda/errors.rb +42 -0
- data/lib/aws-sdk-lambda/types.rb +1829 -77
- data/lib/aws-sdk-lambda.rb +1 -1
- data/sig/client.rbs +184 -5
- data/sig/errors.rbs +8 -0
- data/sig/types.rbs +460 -1
- metadata +1 -1
|
@@ -27,10 +27,12 @@ module Aws::Lambda
|
|
|
27
27
|
# See {Seahorse::Client::RequestContext} for more information.
|
|
28
28
|
#
|
|
29
29
|
# ## Error Classes
|
|
30
|
+
# * {CallbackTimeoutException}
|
|
30
31
|
# * {CapacityProviderLimitExceededException}
|
|
31
32
|
# * {CodeSigningConfigNotFoundException}
|
|
32
33
|
# * {CodeStorageExceededException}
|
|
33
34
|
# * {CodeVerificationFailedException}
|
|
35
|
+
# * {DurableExecutionAlreadyStartedException}
|
|
34
36
|
# * {EC2AccessDeniedException}
|
|
35
37
|
# * {EC2ThrottledException}
|
|
36
38
|
# * {EC2UnexpectedException}
|
|
@@ -76,6 +78,26 @@ module Aws::Lambda
|
|
|
76
78
|
|
|
77
79
|
extend Aws::Errors::DynamicErrors
|
|
78
80
|
|
|
81
|
+
class CallbackTimeoutException < ServiceError
|
|
82
|
+
|
|
83
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
84
|
+
# @param [String] message
|
|
85
|
+
# @param [Aws::Lambda::Types::CallbackTimeoutException] data
|
|
86
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
87
|
+
super(context, message, data)
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
# @return [String]
|
|
91
|
+
def type
|
|
92
|
+
@data[:type]
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
# @return [String]
|
|
96
|
+
def message
|
|
97
|
+
@message || @data[:message]
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
|
|
79
101
|
class CapacityProviderLimitExceededException < ServiceError
|
|
80
102
|
|
|
81
103
|
# @param [Seahorse::Client::RequestContext] context
|
|
@@ -156,6 +178,26 @@ module Aws::Lambda
|
|
|
156
178
|
end
|
|
157
179
|
end
|
|
158
180
|
|
|
181
|
+
class DurableExecutionAlreadyStartedException < ServiceError
|
|
182
|
+
|
|
183
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
184
|
+
# @param [String] message
|
|
185
|
+
# @param [Aws::Lambda::Types::DurableExecutionAlreadyStartedException] data
|
|
186
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
187
|
+
super(context, message, data)
|
|
188
|
+
end
|
|
189
|
+
|
|
190
|
+
# @return [String]
|
|
191
|
+
def type
|
|
192
|
+
@data[:type]
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
# @return [String]
|
|
196
|
+
def message
|
|
197
|
+
@message || @data[:message]
|
|
198
|
+
end
|
|
199
|
+
end
|
|
200
|
+
|
|
159
201
|
class EC2AccessDeniedException < ServiceError
|
|
160
202
|
|
|
161
203
|
# @param [Seahorse::Client::RequestContext] context
|