aws-sdk-lambda 1.167.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambda/client.rb +1368 -70
- data/lib/aws-sdk-lambda/client_api.rb +930 -33
- data/lib/aws-sdk-lambda/errors.rb +105 -0
- data/lib/aws-sdk-lambda/types.rb +2526 -110
- data/lib/aws-sdk-lambda.rb +1 -1
- data/sig/client.rbs +358 -19
- data/sig/errors.rbs +20 -0
- data/sig/types.rbs +658 -3
- metadata +1 -1
data/sig/errors.rbs
CHANGED
|
@@ -11,6 +11,14 @@ module Aws
|
|
|
11
11
|
class ServiceError < ::Aws::Errors::ServiceError
|
|
12
12
|
end
|
|
13
13
|
|
|
14
|
+
class CallbackTimeoutException < ::Aws::Errors::ServiceError
|
|
15
|
+
def type: () -> ::String
|
|
16
|
+
def message: () -> ::String
|
|
17
|
+
end
|
|
18
|
+
class CapacityProviderLimitExceededException < ::Aws::Errors::ServiceError
|
|
19
|
+
def type: () -> ::String
|
|
20
|
+
def message: () -> ::String
|
|
21
|
+
end
|
|
14
22
|
class CodeSigningConfigNotFoundException < ::Aws::Errors::ServiceError
|
|
15
23
|
def type: () -> ::String
|
|
16
24
|
def message: () -> ::String
|
|
@@ -23,6 +31,10 @@ module Aws
|
|
|
23
31
|
def type: () -> ::String
|
|
24
32
|
def message: () -> ::String
|
|
25
33
|
end
|
|
34
|
+
class DurableExecutionAlreadyStartedException < ::Aws::Errors::ServiceError
|
|
35
|
+
def type: () -> ::String
|
|
36
|
+
def message: () -> ::String
|
|
37
|
+
end
|
|
26
38
|
class EC2AccessDeniedException < ::Aws::Errors::ServiceError
|
|
27
39
|
def type: () -> ::String
|
|
28
40
|
def message: () -> ::String
|
|
@@ -56,6 +68,10 @@ module Aws
|
|
|
56
68
|
def type: () -> ::String
|
|
57
69
|
def message: () -> ::String
|
|
58
70
|
end
|
|
71
|
+
class FunctionVersionsPerCapacityProviderLimitExceededException < ::Aws::Errors::ServiceError
|
|
72
|
+
def type: () -> ::String
|
|
73
|
+
def message: () -> ::String
|
|
74
|
+
end
|
|
59
75
|
class InvalidCodeSignatureException < ::Aws::Errors::ServiceError
|
|
60
76
|
def type: () -> ::String
|
|
61
77
|
def message: () -> ::String
|
|
@@ -100,6 +116,10 @@ module Aws
|
|
|
100
116
|
def type: () -> ::String
|
|
101
117
|
def message: () -> ::String
|
|
102
118
|
end
|
|
119
|
+
class NoPublishedVersionException < ::Aws::Errors::ServiceError
|
|
120
|
+
def type: () -> ::String
|
|
121
|
+
def message: () -> ::String
|
|
122
|
+
end
|
|
103
123
|
class PolicyLengthExceededException < ::Aws::Errors::ServiceError
|
|
104
124
|
def type: () -> ::String
|
|
105
125
|
def message: () -> ::String
|