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
|
@@ -36,11 +36,21 @@ module Aws::Lambda
|
|
|
36
36
|
Architecture = Shapes::StringShape.new(name: 'Architecture')
|
|
37
37
|
ArchitecturesList = Shapes::ListShape.new(name: 'ArchitecturesList')
|
|
38
38
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
|
39
|
+
AttemptCount = Shapes::IntegerShape.new(name: 'AttemptCount')
|
|
39
40
|
BatchSize = Shapes::IntegerShape.new(name: 'BatchSize')
|
|
41
|
+
BinaryOperationPayload = Shapes::BlobShape.new(name: 'BinaryOperationPayload')
|
|
40
42
|
BisectBatchOnFunctionError = Shapes::BooleanShape.new(name: 'BisectBatchOnFunctionError')
|
|
41
43
|
Blob = Shapes::BlobShape.new(name: 'Blob')
|
|
42
44
|
BlobStream = Shapes::BlobShape.new(name: 'BlobStream', streaming: true)
|
|
43
45
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
46
|
+
CallbackDetails = Shapes::StructureShape.new(name: 'CallbackDetails')
|
|
47
|
+
CallbackFailedDetails = Shapes::StructureShape.new(name: 'CallbackFailedDetails')
|
|
48
|
+
CallbackId = Shapes::StringShape.new(name: 'CallbackId')
|
|
49
|
+
CallbackOptions = Shapes::StructureShape.new(name: 'CallbackOptions')
|
|
50
|
+
CallbackStartedDetails = Shapes::StructureShape.new(name: 'CallbackStartedDetails')
|
|
51
|
+
CallbackSucceededDetails = Shapes::StructureShape.new(name: 'CallbackSucceededDetails')
|
|
52
|
+
CallbackTimedOutDetails = Shapes::StructureShape.new(name: 'CallbackTimedOutDetails')
|
|
53
|
+
CallbackTimeoutException = Shapes::StructureShape.new(name: 'CallbackTimeoutException')
|
|
44
54
|
CapacityProvider = Shapes::StructureShape.new(name: 'CapacityProvider')
|
|
45
55
|
CapacityProviderArn = Shapes::StringShape.new(name: 'CapacityProviderArn')
|
|
46
56
|
CapacityProviderConfig = Shapes::StructureShape.new(name: 'CapacityProviderConfig')
|
|
@@ -57,6 +67,18 @@ module Aws::Lambda
|
|
|
57
67
|
CapacityProviderSubnetIds = Shapes::ListShape.new(name: 'CapacityProviderSubnetIds')
|
|
58
68
|
CapacityProviderVpcConfig = Shapes::StructureShape.new(name: 'CapacityProviderVpcConfig')
|
|
59
69
|
CapacityProvidersList = Shapes::ListShape.new(name: 'CapacityProvidersList')
|
|
70
|
+
ChainedInvokeDetails = Shapes::StructureShape.new(name: 'ChainedInvokeDetails')
|
|
71
|
+
ChainedInvokeFailedDetails = Shapes::StructureShape.new(name: 'ChainedInvokeFailedDetails')
|
|
72
|
+
ChainedInvokeOptions = Shapes::StructureShape.new(name: 'ChainedInvokeOptions')
|
|
73
|
+
ChainedInvokeStartedDetails = Shapes::StructureShape.new(name: 'ChainedInvokeStartedDetails')
|
|
74
|
+
ChainedInvokeStoppedDetails = Shapes::StructureShape.new(name: 'ChainedInvokeStoppedDetails')
|
|
75
|
+
ChainedInvokeSucceededDetails = Shapes::StructureShape.new(name: 'ChainedInvokeSucceededDetails')
|
|
76
|
+
ChainedInvokeTimedOutDetails = Shapes::StructureShape.new(name: 'ChainedInvokeTimedOutDetails')
|
|
77
|
+
CheckpointDurableExecutionRequest = Shapes::StructureShape.new(name: 'CheckpointDurableExecutionRequest')
|
|
78
|
+
CheckpointDurableExecutionResponse = Shapes::StructureShape.new(name: 'CheckpointDurableExecutionResponse')
|
|
79
|
+
CheckpointToken = Shapes::StringShape.new(name: 'CheckpointToken')
|
|
80
|
+
CheckpointUpdatedExecutionState = Shapes::StructureShape.new(name: 'CheckpointUpdatedExecutionState')
|
|
81
|
+
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
|
60
82
|
CodeSigningConfig = Shapes::StructureShape.new(name: 'CodeSigningConfig')
|
|
61
83
|
CodeSigningConfigArn = Shapes::StringShape.new(name: 'CodeSigningConfigArn')
|
|
62
84
|
CodeSigningConfigId = Shapes::StringShape.new(name: 'CodeSigningConfigId')
|
|
@@ -70,6 +92,11 @@ module Aws::Lambda
|
|
|
70
92
|
CompatibleArchitectures = Shapes::ListShape.new(name: 'CompatibleArchitectures')
|
|
71
93
|
CompatibleRuntimes = Shapes::ListShape.new(name: 'CompatibleRuntimes')
|
|
72
94
|
Concurrency = Shapes::StructureShape.new(name: 'Concurrency')
|
|
95
|
+
ContextDetails = Shapes::StructureShape.new(name: 'ContextDetails')
|
|
96
|
+
ContextFailedDetails = Shapes::StructureShape.new(name: 'ContextFailedDetails')
|
|
97
|
+
ContextOptions = Shapes::StructureShape.new(name: 'ContextOptions')
|
|
98
|
+
ContextStartedDetails = Shapes::StructureShape.new(name: 'ContextStartedDetails')
|
|
99
|
+
ContextSucceededDetails = Shapes::StructureShape.new(name: 'ContextSucceededDetails')
|
|
73
100
|
Cors = Shapes::StructureShape.new(name: 'Cors')
|
|
74
101
|
CreateAliasRequest = Shapes::StructureShape.new(name: 'CreateAliasRequest')
|
|
75
102
|
CreateCapacityProviderRequest = Shapes::StructureShape.new(name: 'CreateCapacityProviderRequest')
|
|
@@ -101,6 +128,12 @@ module Aws::Lambda
|
|
|
101
128
|
DestinationArn = Shapes::StringShape.new(name: 'DestinationArn')
|
|
102
129
|
DestinationConfig = Shapes::StructureShape.new(name: 'DestinationConfig')
|
|
103
130
|
DocumentDBEventSourceConfig = Shapes::StructureShape.new(name: 'DocumentDBEventSourceConfig')
|
|
131
|
+
DurableConfig = Shapes::StructureShape.new(name: 'DurableConfig')
|
|
132
|
+
DurableExecutionAlreadyStartedException = Shapes::StructureShape.new(name: 'DurableExecutionAlreadyStartedException')
|
|
133
|
+
DurableExecutionArn = Shapes::StringShape.new(name: 'DurableExecutionArn')
|
|
134
|
+
DurableExecutionName = Shapes::StringShape.new(name: 'DurableExecutionName')
|
|
135
|
+
DurableExecutions = Shapes::ListShape.new(name: 'DurableExecutions')
|
|
136
|
+
DurationSeconds = Shapes::IntegerShape.new(name: 'DurationSeconds')
|
|
104
137
|
EC2AccessDeniedException = Shapes::StructureShape.new(name: 'EC2AccessDeniedException')
|
|
105
138
|
EC2ThrottledException = Shapes::StructureShape.new(name: 'EC2ThrottledException')
|
|
106
139
|
EC2UnexpectedException = Shapes::StructureShape.new(name: 'EC2UnexpectedException')
|
|
@@ -122,6 +155,15 @@ module Aws::Lambda
|
|
|
122
155
|
EnvironmentVariables = Shapes::MapShape.new(name: 'EnvironmentVariables')
|
|
123
156
|
EphemeralStorage = Shapes::StructureShape.new(name: 'EphemeralStorage')
|
|
124
157
|
EphemeralStorageSize = Shapes::IntegerShape.new(name: 'EphemeralStorageSize')
|
|
158
|
+
ErrorData = Shapes::StringShape.new(name: 'ErrorData')
|
|
159
|
+
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
|
160
|
+
ErrorObject = Shapes::StructureShape.new(name: 'ErrorObject')
|
|
161
|
+
ErrorType = Shapes::StringShape.new(name: 'ErrorType')
|
|
162
|
+
Event = Shapes::StructureShape.new(name: 'Event')
|
|
163
|
+
EventError = Shapes::StructureShape.new(name: 'EventError')
|
|
164
|
+
EventId = Shapes::IntegerShape.new(name: 'EventId')
|
|
165
|
+
EventInput = Shapes::StructureShape.new(name: 'EventInput')
|
|
166
|
+
EventResult = Shapes::StructureShape.new(name: 'EventResult')
|
|
125
167
|
EventSourceMappingArn = Shapes::StringShape.new(name: 'EventSourceMappingArn')
|
|
126
168
|
EventSourceMappingConfiguration = Shapes::StructureShape.new(name: 'EventSourceMappingConfiguration')
|
|
127
169
|
EventSourceMappingMetric = Shapes::StringShape.new(name: 'EventSourceMappingMetric')
|
|
@@ -130,7 +172,20 @@ module Aws::Lambda
|
|
|
130
172
|
EventSourceMappingsList = Shapes::ListShape.new(name: 'EventSourceMappingsList')
|
|
131
173
|
EventSourcePosition = Shapes::StringShape.new(name: 'EventSourcePosition')
|
|
132
174
|
EventSourceToken = Shapes::StringShape.new(name: 'EventSourceToken')
|
|
175
|
+
EventType = Shapes::StringShape.new(name: 'EventType')
|
|
176
|
+
Events = Shapes::ListShape.new(name: 'Events')
|
|
177
|
+
Execution = Shapes::StructureShape.new(name: 'Execution')
|
|
178
|
+
ExecutionDetails = Shapes::StructureShape.new(name: 'ExecutionDetails')
|
|
133
179
|
ExecutionEnvironmentMemoryGiBPerVCpu = Shapes::FloatShape.new(name: 'ExecutionEnvironmentMemoryGiBPerVCpu')
|
|
180
|
+
ExecutionFailedDetails = Shapes::StructureShape.new(name: 'ExecutionFailedDetails')
|
|
181
|
+
ExecutionStartedDetails = Shapes::StructureShape.new(name: 'ExecutionStartedDetails')
|
|
182
|
+
ExecutionStatus = Shapes::StringShape.new(name: 'ExecutionStatus')
|
|
183
|
+
ExecutionStatusList = Shapes::ListShape.new(name: 'ExecutionStatusList')
|
|
184
|
+
ExecutionStoppedDetails = Shapes::StructureShape.new(name: 'ExecutionStoppedDetails')
|
|
185
|
+
ExecutionSucceededDetails = Shapes::StructureShape.new(name: 'ExecutionSucceededDetails')
|
|
186
|
+
ExecutionTimedOutDetails = Shapes::StructureShape.new(name: 'ExecutionTimedOutDetails')
|
|
187
|
+
ExecutionTimeout = Shapes::IntegerShape.new(name: 'ExecutionTimeout')
|
|
188
|
+
ExecutionTimestamp = Shapes::TimestampShape.new(name: 'ExecutionTimestamp')
|
|
134
189
|
FileSystemArn = Shapes::StringShape.new(name: 'FileSystemArn')
|
|
135
190
|
FileSystemConfig = Shapes::StructureShape.new(name: 'FileSystemConfig')
|
|
136
191
|
FileSystemConfigList = Shapes::ListShape.new(name: 'FileSystemConfigList')
|
|
@@ -171,6 +226,12 @@ module Aws::Lambda
|
|
|
171
226
|
GetCapacityProviderResponse = Shapes::StructureShape.new(name: 'GetCapacityProviderResponse')
|
|
172
227
|
GetCodeSigningConfigRequest = Shapes::StructureShape.new(name: 'GetCodeSigningConfigRequest')
|
|
173
228
|
GetCodeSigningConfigResponse = Shapes::StructureShape.new(name: 'GetCodeSigningConfigResponse')
|
|
229
|
+
GetDurableExecutionHistoryRequest = Shapes::StructureShape.new(name: 'GetDurableExecutionHistoryRequest')
|
|
230
|
+
GetDurableExecutionHistoryResponse = Shapes::StructureShape.new(name: 'GetDurableExecutionHistoryResponse')
|
|
231
|
+
GetDurableExecutionRequest = Shapes::StructureShape.new(name: 'GetDurableExecutionRequest')
|
|
232
|
+
GetDurableExecutionResponse = Shapes::StructureShape.new(name: 'GetDurableExecutionResponse')
|
|
233
|
+
GetDurableExecutionStateRequest = Shapes::StructureShape.new(name: 'GetDurableExecutionStateRequest')
|
|
234
|
+
GetDurableExecutionStateResponse = Shapes::StructureShape.new(name: 'GetDurableExecutionStateResponse')
|
|
174
235
|
GetEventSourceMappingRequest = Shapes::StructureShape.new(name: 'GetEventSourceMappingRequest')
|
|
175
236
|
GetFunctionCodeSigningConfigRequest = Shapes::StructureShape.new(name: 'GetFunctionCodeSigningConfigRequest')
|
|
176
237
|
GetFunctionCodeSigningConfigResponse = Shapes::StructureShape.new(name: 'GetFunctionCodeSigningConfigResponse')
|
|
@@ -204,6 +265,8 @@ module Aws::Lambda
|
|
|
204
265
|
ImageConfig = Shapes::StructureShape.new(name: 'ImageConfig')
|
|
205
266
|
ImageConfigError = Shapes::StructureShape.new(name: 'ImageConfigError')
|
|
206
267
|
ImageConfigResponse = Shapes::StructureShape.new(name: 'ImageConfigResponse')
|
|
268
|
+
IncludeExecutionData = Shapes::BooleanShape.new(name: 'IncludeExecutionData')
|
|
269
|
+
InputPayload = Shapes::StringShape.new(name: 'InputPayload')
|
|
207
270
|
InstanceRequirements = Shapes::StructureShape.new(name: 'InstanceRequirements')
|
|
208
271
|
InstanceType = Shapes::StringShape.new(name: 'InstanceType')
|
|
209
272
|
InstanceTypeSet = Shapes::ListShape.new(name: 'InstanceTypeSet')
|
|
@@ -215,6 +278,7 @@ module Aws::Lambda
|
|
|
215
278
|
InvalidSecurityGroupIDException = Shapes::StructureShape.new(name: 'InvalidSecurityGroupIDException')
|
|
216
279
|
InvalidSubnetIDException = Shapes::StructureShape.new(name: 'InvalidSubnetIDException')
|
|
217
280
|
InvalidZipFileException = Shapes::StructureShape.new(name: 'InvalidZipFileException')
|
|
281
|
+
InvocationCompletedDetails = Shapes::StructureShape.new(name: 'InvocationCompletedDetails')
|
|
218
282
|
InvocationRequest = Shapes::StructureShape.new(name: 'InvocationRequest')
|
|
219
283
|
InvocationResponse = Shapes::StructureShape.new(name: 'InvocationResponse')
|
|
220
284
|
InvocationType = Shapes::StringShape.new(name: 'InvocationType')
|
|
@@ -227,6 +291,7 @@ module Aws::Lambda
|
|
|
227
291
|
InvokeWithResponseStreamResponse = Shapes::StructureShape.new(name: 'InvokeWithResponseStreamResponse')
|
|
228
292
|
InvokeWithResponseStreamResponseEvent = Shapes::StructureShape.new(name: 'InvokeWithResponseStreamResponseEvent')
|
|
229
293
|
InvokedViaFunctionUrl = Shapes::BooleanShape.new(name: 'InvokedViaFunctionUrl')
|
|
294
|
+
ItemCount = Shapes::IntegerShape.new(name: 'ItemCount')
|
|
230
295
|
KMSAccessDeniedException = Shapes::StructureShape.new(name: 'KMSAccessDeniedException')
|
|
231
296
|
KMSDisabledException = Shapes::StructureShape.new(name: 'KMSDisabledException')
|
|
232
297
|
KMSInvalidStateException = Shapes::StructureShape.new(name: 'KMSInvalidStateException')
|
|
@@ -266,6 +331,8 @@ module Aws::Lambda
|
|
|
266
331
|
ListCapacityProvidersResponse = Shapes::StructureShape.new(name: 'ListCapacityProvidersResponse')
|
|
267
332
|
ListCodeSigningConfigsRequest = Shapes::StructureShape.new(name: 'ListCodeSigningConfigsRequest')
|
|
268
333
|
ListCodeSigningConfigsResponse = Shapes::StructureShape.new(name: 'ListCodeSigningConfigsResponse')
|
|
334
|
+
ListDurableExecutionsByFunctionRequest = Shapes::StructureShape.new(name: 'ListDurableExecutionsByFunctionRequest')
|
|
335
|
+
ListDurableExecutionsByFunctionResponse = Shapes::StructureShape.new(name: 'ListDurableExecutionsByFunctionResponse')
|
|
269
336
|
ListEventSourceMappingsRequest = Shapes::StructureShape.new(name: 'ListEventSourceMappingsRequest')
|
|
270
337
|
ListEventSourceMappingsResponse = Shapes::StructureShape.new(name: 'ListEventSourceMappingsResponse')
|
|
271
338
|
ListFunctionEventInvokeConfigsRequest = Shapes::StructureShape.new(name: 'ListFunctionEventInvokeConfigsRequest')
|
|
@@ -322,8 +389,20 @@ module Aws::Lambda
|
|
|
322
389
|
NumericLatestPublishedOrAliasQualifier = Shapes::StringShape.new(name: 'NumericLatestPublishedOrAliasQualifier')
|
|
323
390
|
OnFailure = Shapes::StructureShape.new(name: 'OnFailure')
|
|
324
391
|
OnSuccess = Shapes::StructureShape.new(name: 'OnSuccess')
|
|
392
|
+
Operation = Shapes::StructureShape.new(name: 'Operation')
|
|
393
|
+
OperationAction = Shapes::StringShape.new(name: 'OperationAction')
|
|
394
|
+
OperationId = Shapes::StringShape.new(name: 'OperationId')
|
|
395
|
+
OperationName = Shapes::StringShape.new(name: 'OperationName')
|
|
396
|
+
OperationPayload = Shapes::StringShape.new(name: 'OperationPayload')
|
|
397
|
+
OperationStatus = Shapes::StringShape.new(name: 'OperationStatus')
|
|
398
|
+
OperationSubType = Shapes::StringShape.new(name: 'OperationSubType')
|
|
399
|
+
OperationType = Shapes::StringShape.new(name: 'OperationType')
|
|
400
|
+
OperationUpdate = Shapes::StructureShape.new(name: 'OperationUpdate')
|
|
401
|
+
OperationUpdates = Shapes::ListShape.new(name: 'OperationUpdates')
|
|
402
|
+
Operations = Shapes::ListShape.new(name: 'Operations')
|
|
325
403
|
OrganizationId = Shapes::StringShape.new(name: 'OrganizationId')
|
|
326
404
|
Origin = Shapes::StringShape.new(name: 'Origin')
|
|
405
|
+
OutputPayload = Shapes::StringShape.new(name: 'OutputPayload')
|
|
327
406
|
PackageType = Shapes::StringShape.new(name: 'PackageType')
|
|
328
407
|
ParallelizationFactor = Shapes::IntegerShape.new(name: 'ParallelizationFactor')
|
|
329
408
|
Pattern = Shapes::StringShape.new(name: 'Pattern')
|
|
@@ -362,6 +441,7 @@ module Aws::Lambda
|
|
|
362
441
|
RecursiveLoop = Shapes::StringShape.new(name: 'RecursiveLoop')
|
|
363
442
|
RemoveLayerVersionPermissionRequest = Shapes::StructureShape.new(name: 'RemoveLayerVersionPermissionRequest')
|
|
364
443
|
RemovePermissionRequest = Shapes::StructureShape.new(name: 'RemovePermissionRequest')
|
|
444
|
+
ReplayChildren = Shapes::BooleanShape.new(name: 'ReplayChildren')
|
|
365
445
|
RequestTooLargeException = Shapes::StructureShape.new(name: 'RequestTooLargeException')
|
|
366
446
|
ReservedConcurrentExecutions = Shapes::IntegerShape.new(name: 'ReservedConcurrentExecutions')
|
|
367
447
|
ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
|
|
@@ -370,6 +450,9 @@ module Aws::Lambda
|
|
|
370
450
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
371
451
|
ResourceNotReadyException = Shapes::StructureShape.new(name: 'ResourceNotReadyException')
|
|
372
452
|
ResponseStreamingInvocationType = Shapes::StringShape.new(name: 'ResponseStreamingInvocationType')
|
|
453
|
+
RetentionPeriodInDays = Shapes::IntegerShape.new(name: 'RetentionPeriodInDays')
|
|
454
|
+
RetryDetails = Shapes::StructureShape.new(name: 'RetryDetails')
|
|
455
|
+
ReverseOrder = Shapes::BooleanShape.new(name: 'ReverseOrder')
|
|
373
456
|
RoleArn = Shapes::StringShape.new(name: 'RoleArn')
|
|
374
457
|
Runtime = Shapes::StringShape.new(name: 'Runtime')
|
|
375
458
|
RuntimeVersionArn = Shapes::StringShape.new(name: 'RuntimeVersionArn')
|
|
@@ -385,6 +468,12 @@ module Aws::Lambda
|
|
|
385
468
|
SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
|
|
386
469
|
SelfManagedEventSource = Shapes::StructureShape.new(name: 'SelfManagedEventSource')
|
|
387
470
|
SelfManagedKafkaEventSourceConfig = Shapes::StructureShape.new(name: 'SelfManagedKafkaEventSourceConfig')
|
|
471
|
+
SendDurableExecutionCallbackFailureRequest = Shapes::StructureShape.new(name: 'SendDurableExecutionCallbackFailureRequest')
|
|
472
|
+
SendDurableExecutionCallbackFailureResponse = Shapes::StructureShape.new(name: 'SendDurableExecutionCallbackFailureResponse')
|
|
473
|
+
SendDurableExecutionCallbackHeartbeatRequest = Shapes::StructureShape.new(name: 'SendDurableExecutionCallbackHeartbeatRequest')
|
|
474
|
+
SendDurableExecutionCallbackHeartbeatResponse = Shapes::StructureShape.new(name: 'SendDurableExecutionCallbackHeartbeatResponse')
|
|
475
|
+
SendDurableExecutionCallbackSuccessRequest = Shapes::StructureShape.new(name: 'SendDurableExecutionCallbackSuccessRequest')
|
|
476
|
+
SendDurableExecutionCallbackSuccessResponse = Shapes::StructureShape.new(name: 'SendDurableExecutionCallbackSuccessResponse')
|
|
388
477
|
SensitiveString = Shapes::StringShape.new(name: 'SensitiveString')
|
|
389
478
|
SerializedRequestEntityTooLargeException = Shapes::StructureShape.new(name: 'SerializedRequestEntityTooLargeException')
|
|
390
479
|
ServiceException = Shapes::StructureShape.new(name: 'ServiceException')
|
|
@@ -400,10 +489,20 @@ module Aws::Lambda
|
|
|
400
489
|
SourceAccessConfigurations = Shapes::ListShape.new(name: 'SourceAccessConfigurations')
|
|
401
490
|
SourceAccessType = Shapes::StringShape.new(name: 'SourceAccessType')
|
|
402
491
|
SourceOwner = Shapes::StringShape.new(name: 'SourceOwner')
|
|
492
|
+
StackTraceEntries = Shapes::ListShape.new(name: 'StackTraceEntries')
|
|
493
|
+
StackTraceEntry = Shapes::StringShape.new(name: 'StackTraceEntry')
|
|
403
494
|
State = Shapes::StringShape.new(name: 'State')
|
|
404
495
|
StateReason = Shapes::StringShape.new(name: 'StateReason')
|
|
405
496
|
StateReasonCode = Shapes::StringShape.new(name: 'StateReasonCode')
|
|
406
497
|
StatementId = Shapes::StringShape.new(name: 'StatementId')
|
|
498
|
+
StepDetails = Shapes::StructureShape.new(name: 'StepDetails')
|
|
499
|
+
StepFailedDetails = Shapes::StructureShape.new(name: 'StepFailedDetails')
|
|
500
|
+
StepOptions = Shapes::StructureShape.new(name: 'StepOptions')
|
|
501
|
+
StepOptionsNextAttemptDelaySecondsInteger = Shapes::IntegerShape.new(name: 'StepOptionsNextAttemptDelaySecondsInteger')
|
|
502
|
+
StepStartedDetails = Shapes::StructureShape.new(name: 'StepStartedDetails')
|
|
503
|
+
StepSucceededDetails = Shapes::StructureShape.new(name: 'StepSucceededDetails')
|
|
504
|
+
StopDurableExecutionRequest = Shapes::StructureShape.new(name: 'StopDurableExecutionRequest')
|
|
505
|
+
StopDurableExecutionResponse = Shapes::StructureShape.new(name: 'StopDurableExecutionResponse')
|
|
407
506
|
String = Shapes::StringShape.new(name: 'String')
|
|
408
507
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
|
409
508
|
SubnetIPAddressLimitReachedException = Shapes::StructureShape.new(name: 'SubnetIPAddressLimitReachedException')
|
|
@@ -429,9 +528,11 @@ module Aws::Lambda
|
|
|
429
528
|
TooManyRequestsException = Shapes::StructureShape.new(name: 'TooManyRequestsException')
|
|
430
529
|
Topic = Shapes::StringShape.new(name: 'Topic')
|
|
431
530
|
Topics = Shapes::ListShape.new(name: 'Topics')
|
|
531
|
+
TraceHeader = Shapes::StructureShape.new(name: 'TraceHeader')
|
|
432
532
|
TracingConfig = Shapes::StructureShape.new(name: 'TracingConfig')
|
|
433
533
|
TracingConfigResponse = Shapes::StructureShape.new(name: 'TracingConfigResponse')
|
|
434
534
|
TracingMode = Shapes::StringShape.new(name: 'TracingMode')
|
|
535
|
+
Truncated = Shapes::BooleanShape.new(name: 'Truncated')
|
|
435
536
|
TumblingWindowInSeconds = Shapes::IntegerShape.new(name: 'TumblingWindowInSeconds')
|
|
436
537
|
URI = Shapes::StringShape.new(name: 'URI')
|
|
437
538
|
UnqualifiedFunctionName = Shapes::StringShape.new(name: 'UnqualifiedFunctionName')
|
|
@@ -455,8 +556,15 @@ module Aws::Lambda
|
|
|
455
556
|
VpcConfig = Shapes::StructureShape.new(name: 'VpcConfig')
|
|
456
557
|
VpcConfigResponse = Shapes::StructureShape.new(name: 'VpcConfigResponse')
|
|
457
558
|
VpcId = Shapes::StringShape.new(name: 'VpcId')
|
|
559
|
+
WaitCancelledDetails = Shapes::StructureShape.new(name: 'WaitCancelledDetails')
|
|
560
|
+
WaitDetails = Shapes::StructureShape.new(name: 'WaitDetails')
|
|
561
|
+
WaitOptions = Shapes::StructureShape.new(name: 'WaitOptions')
|
|
562
|
+
WaitOptionsWaitSecondsInteger = Shapes::IntegerShape.new(name: 'WaitOptionsWaitSecondsInteger')
|
|
563
|
+
WaitStartedDetails = Shapes::StructureShape.new(name: 'WaitStartedDetails')
|
|
564
|
+
WaitSucceededDetails = Shapes::StructureShape.new(name: 'WaitSucceededDetails')
|
|
458
565
|
Weight = Shapes::FloatShape.new(name: 'Weight')
|
|
459
566
|
WorkingDirectory = Shapes::StringShape.new(name: 'WorkingDirectory')
|
|
567
|
+
XAmznTraceId = Shapes::StringShape.new(name: 'XAmznTraceId')
|
|
460
568
|
|
|
461
569
|
AccountLimit.add_member(:total_code_size, Shapes::ShapeRef.new(shape: Long, location_name: "TotalCodeSize"))
|
|
462
570
|
AccountLimit.add_member(:code_size_unzipped, Shapes::ShapeRef.new(shape: Long, location_name: "CodeSizeUnzipped"))
|
|
@@ -528,6 +636,33 @@ module Aws::Lambda
|
|
|
528
636
|
|
|
529
637
|
ArchitecturesList.member = Shapes::ShapeRef.new(shape: Architecture)
|
|
530
638
|
|
|
639
|
+
CallbackDetails.add_member(:callback_id, Shapes::ShapeRef.new(shape: CallbackId, location_name: "CallbackId"))
|
|
640
|
+
CallbackDetails.add_member(:result, Shapes::ShapeRef.new(shape: OperationPayload, location_name: "Result"))
|
|
641
|
+
CallbackDetails.add_member(:error, Shapes::ShapeRef.new(shape: ErrorObject, location_name: "Error"))
|
|
642
|
+
CallbackDetails.struct_class = Types::CallbackDetails
|
|
643
|
+
|
|
644
|
+
CallbackFailedDetails.add_member(:error, Shapes::ShapeRef.new(shape: EventError, required: true, location_name: "Error"))
|
|
645
|
+
CallbackFailedDetails.struct_class = Types::CallbackFailedDetails
|
|
646
|
+
|
|
647
|
+
CallbackOptions.add_member(:timeout_seconds, Shapes::ShapeRef.new(shape: DurationSeconds, location_name: "TimeoutSeconds"))
|
|
648
|
+
CallbackOptions.add_member(:heartbeat_timeout_seconds, Shapes::ShapeRef.new(shape: DurationSeconds, location_name: "HeartbeatTimeoutSeconds"))
|
|
649
|
+
CallbackOptions.struct_class = Types::CallbackOptions
|
|
650
|
+
|
|
651
|
+
CallbackStartedDetails.add_member(:callback_id, Shapes::ShapeRef.new(shape: CallbackId, required: true, location_name: "CallbackId"))
|
|
652
|
+
CallbackStartedDetails.add_member(:heartbeat_timeout, Shapes::ShapeRef.new(shape: DurationSeconds, location_name: "HeartbeatTimeout"))
|
|
653
|
+
CallbackStartedDetails.add_member(:timeout, Shapes::ShapeRef.new(shape: DurationSeconds, location_name: "Timeout"))
|
|
654
|
+
CallbackStartedDetails.struct_class = Types::CallbackStartedDetails
|
|
655
|
+
|
|
656
|
+
CallbackSucceededDetails.add_member(:result, Shapes::ShapeRef.new(shape: EventResult, required: true, location_name: "Result"))
|
|
657
|
+
CallbackSucceededDetails.struct_class = Types::CallbackSucceededDetails
|
|
658
|
+
|
|
659
|
+
CallbackTimedOutDetails.add_member(:error, Shapes::ShapeRef.new(shape: EventError, required: true, location_name: "Error"))
|
|
660
|
+
CallbackTimedOutDetails.struct_class = Types::CallbackTimedOutDetails
|
|
661
|
+
|
|
662
|
+
CallbackTimeoutException.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
|
|
663
|
+
CallbackTimeoutException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
|
664
|
+
CallbackTimeoutException.struct_class = Types::CallbackTimeoutException
|
|
665
|
+
|
|
531
666
|
CapacityProvider.add_member(:capacity_provider_arn, Shapes::ShapeRef.new(shape: CapacityProviderArn, required: true, location_name: "CapacityProviderArn"))
|
|
532
667
|
CapacityProvider.add_member(:state, Shapes::ShapeRef.new(shape: CapacityProviderState, required: true, location_name: "State"))
|
|
533
668
|
CapacityProvider.add_member(:vpc_config, Shapes::ShapeRef.new(shape: CapacityProviderVpcConfig, required: true, location_name: "VpcConfig"))
|
|
@@ -565,6 +700,47 @@ module Aws::Lambda
|
|
|
565
700
|
|
|
566
701
|
CapacityProvidersList.member = Shapes::ShapeRef.new(shape: CapacityProvider)
|
|
567
702
|
|
|
703
|
+
ChainedInvokeDetails.add_member(:result, Shapes::ShapeRef.new(shape: OperationPayload, location_name: "Result"))
|
|
704
|
+
ChainedInvokeDetails.add_member(:error, Shapes::ShapeRef.new(shape: ErrorObject, location_name: "Error"))
|
|
705
|
+
ChainedInvokeDetails.struct_class = Types::ChainedInvokeDetails
|
|
706
|
+
|
|
707
|
+
ChainedInvokeFailedDetails.add_member(:error, Shapes::ShapeRef.new(shape: EventError, required: true, location_name: "Error"))
|
|
708
|
+
ChainedInvokeFailedDetails.struct_class = Types::ChainedInvokeFailedDetails
|
|
709
|
+
|
|
710
|
+
ChainedInvokeOptions.add_member(:function_name, Shapes::ShapeRef.new(shape: NamespacedFunctionName, required: true, location_name: "FunctionName"))
|
|
711
|
+
ChainedInvokeOptions.add_member(:tenant_id, Shapes::ShapeRef.new(shape: TenantId, location_name: "TenantId"))
|
|
712
|
+
ChainedInvokeOptions.struct_class = Types::ChainedInvokeOptions
|
|
713
|
+
|
|
714
|
+
ChainedInvokeStartedDetails.add_member(:function_name, Shapes::ShapeRef.new(shape: NamespacedFunctionName, required: true, location_name: "FunctionName"))
|
|
715
|
+
ChainedInvokeStartedDetails.add_member(:tenant_id, Shapes::ShapeRef.new(shape: TenantId, location_name: "TenantId"))
|
|
716
|
+
ChainedInvokeStartedDetails.add_member(:input, Shapes::ShapeRef.new(shape: EventInput, location_name: "Input"))
|
|
717
|
+
ChainedInvokeStartedDetails.add_member(:executed_version, Shapes::ShapeRef.new(shape: VersionWithLatestPublished, location_name: "ExecutedVersion"))
|
|
718
|
+
ChainedInvokeStartedDetails.add_member(:durable_execution_arn, Shapes::ShapeRef.new(shape: DurableExecutionArn, location_name: "DurableExecutionArn"))
|
|
719
|
+
ChainedInvokeStartedDetails.struct_class = Types::ChainedInvokeStartedDetails
|
|
720
|
+
|
|
721
|
+
ChainedInvokeStoppedDetails.add_member(:error, Shapes::ShapeRef.new(shape: EventError, required: true, location_name: "Error"))
|
|
722
|
+
ChainedInvokeStoppedDetails.struct_class = Types::ChainedInvokeStoppedDetails
|
|
723
|
+
|
|
724
|
+
ChainedInvokeSucceededDetails.add_member(:result, Shapes::ShapeRef.new(shape: EventResult, required: true, location_name: "Result"))
|
|
725
|
+
ChainedInvokeSucceededDetails.struct_class = Types::ChainedInvokeSucceededDetails
|
|
726
|
+
|
|
727
|
+
ChainedInvokeTimedOutDetails.add_member(:error, Shapes::ShapeRef.new(shape: EventError, required: true, location_name: "Error"))
|
|
728
|
+
ChainedInvokeTimedOutDetails.struct_class = Types::ChainedInvokeTimedOutDetails
|
|
729
|
+
|
|
730
|
+
CheckpointDurableExecutionRequest.add_member(:durable_execution_arn, Shapes::ShapeRef.new(shape: DurableExecutionArn, required: true, location: "uri", location_name: "DurableExecutionArn"))
|
|
731
|
+
CheckpointDurableExecutionRequest.add_member(:checkpoint_token, Shapes::ShapeRef.new(shape: CheckpointToken, required: true, location_name: "CheckpointToken"))
|
|
732
|
+
CheckpointDurableExecutionRequest.add_member(:updates, Shapes::ShapeRef.new(shape: OperationUpdates, location_name: "Updates"))
|
|
733
|
+
CheckpointDurableExecutionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
734
|
+
CheckpointDurableExecutionRequest.struct_class = Types::CheckpointDurableExecutionRequest
|
|
735
|
+
|
|
736
|
+
CheckpointDurableExecutionResponse.add_member(:checkpoint_token, Shapes::ShapeRef.new(shape: CheckpointToken, location_name: "CheckpointToken"))
|
|
737
|
+
CheckpointDurableExecutionResponse.add_member(:new_execution_state, Shapes::ShapeRef.new(shape: CheckpointUpdatedExecutionState, required: true, location_name: "NewExecutionState"))
|
|
738
|
+
CheckpointDurableExecutionResponse.struct_class = Types::CheckpointDurableExecutionResponse
|
|
739
|
+
|
|
740
|
+
CheckpointUpdatedExecutionState.add_member(:operations, Shapes::ShapeRef.new(shape: Operations, location_name: "Operations"))
|
|
741
|
+
CheckpointUpdatedExecutionState.add_member(:next_marker, Shapes::ShapeRef.new(shape: String, location_name: "NextMarker"))
|
|
742
|
+
CheckpointUpdatedExecutionState.struct_class = Types::CheckpointUpdatedExecutionState
|
|
743
|
+
|
|
568
744
|
CodeSigningConfig.add_member(:code_signing_config_id, Shapes::ShapeRef.new(shape: CodeSigningConfigId, required: true, location_name: "CodeSigningConfigId"))
|
|
569
745
|
CodeSigningConfig.add_member(:code_signing_config_arn, Shapes::ShapeRef.new(shape: CodeSigningConfigArn, required: true, location_name: "CodeSigningConfigArn"))
|
|
570
746
|
CodeSigningConfig.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
|
@@ -597,6 +773,22 @@ module Aws::Lambda
|
|
|
597
773
|
Concurrency.add_member(:reserved_concurrent_executions, Shapes::ShapeRef.new(shape: ReservedConcurrentExecutions, location_name: "ReservedConcurrentExecutions"))
|
|
598
774
|
Concurrency.struct_class = Types::Concurrency
|
|
599
775
|
|
|
776
|
+
ContextDetails.add_member(:replay_children, Shapes::ShapeRef.new(shape: ReplayChildren, location_name: "ReplayChildren"))
|
|
777
|
+
ContextDetails.add_member(:result, Shapes::ShapeRef.new(shape: OperationPayload, location_name: "Result"))
|
|
778
|
+
ContextDetails.add_member(:error, Shapes::ShapeRef.new(shape: ErrorObject, location_name: "Error"))
|
|
779
|
+
ContextDetails.struct_class = Types::ContextDetails
|
|
780
|
+
|
|
781
|
+
ContextFailedDetails.add_member(:error, Shapes::ShapeRef.new(shape: EventError, required: true, location_name: "Error"))
|
|
782
|
+
ContextFailedDetails.struct_class = Types::ContextFailedDetails
|
|
783
|
+
|
|
784
|
+
ContextOptions.add_member(:replay_children, Shapes::ShapeRef.new(shape: ReplayChildren, location_name: "ReplayChildren"))
|
|
785
|
+
ContextOptions.struct_class = Types::ContextOptions
|
|
786
|
+
|
|
787
|
+
ContextStartedDetails.struct_class = Types::ContextStartedDetails
|
|
788
|
+
|
|
789
|
+
ContextSucceededDetails.add_member(:result, Shapes::ShapeRef.new(shape: EventResult, required: true, location_name: "Result"))
|
|
790
|
+
ContextSucceededDetails.struct_class = Types::ContextSucceededDetails
|
|
791
|
+
|
|
600
792
|
Cors.add_member(:allow_credentials, Shapes::ShapeRef.new(shape: AllowCredentials, location_name: "AllowCredentials"))
|
|
601
793
|
Cors.add_member(:allow_headers, Shapes::ShapeRef.new(shape: HeadersList, location_name: "AllowHeaders"))
|
|
602
794
|
Cors.add_member(:allow_methods, Shapes::ShapeRef.new(shape: AllowMethodsList, location_name: "AllowMethods"))
|
|
@@ -688,6 +880,7 @@ module Aws::Lambda
|
|
|
688
880
|
CreateFunctionRequest.add_member(:logging_config, Shapes::ShapeRef.new(shape: LoggingConfig, location_name: "LoggingConfig"))
|
|
689
881
|
CreateFunctionRequest.add_member(:capacity_provider_config, Shapes::ShapeRef.new(shape: CapacityProviderConfig, location_name: "CapacityProviderConfig"))
|
|
690
882
|
CreateFunctionRequest.add_member(:publish_to, Shapes::ShapeRef.new(shape: FunctionVersionLatestPublished, location_name: "PublishTo"))
|
|
883
|
+
CreateFunctionRequest.add_member(:durable_config, Shapes::ShapeRef.new(shape: DurableConfig, location_name: "DurableConfig"))
|
|
691
884
|
CreateFunctionRequest.add_member(:tenancy_config, Shapes::ShapeRef.new(shape: TenancyConfig, location_name: "TenancyConfig"))
|
|
692
885
|
CreateFunctionRequest.struct_class = Types::CreateFunctionRequest
|
|
693
886
|
|
|
@@ -765,6 +958,16 @@ module Aws::Lambda
|
|
|
765
958
|
DocumentDBEventSourceConfig.add_member(:full_document, Shapes::ShapeRef.new(shape: FullDocument, location_name: "FullDocument"))
|
|
766
959
|
DocumentDBEventSourceConfig.struct_class = Types::DocumentDBEventSourceConfig
|
|
767
960
|
|
|
961
|
+
DurableConfig.add_member(:retention_period_in_days, Shapes::ShapeRef.new(shape: RetentionPeriodInDays, location_name: "RetentionPeriodInDays"))
|
|
962
|
+
DurableConfig.add_member(:execution_timeout, Shapes::ShapeRef.new(shape: ExecutionTimeout, location_name: "ExecutionTimeout"))
|
|
963
|
+
DurableConfig.struct_class = Types::DurableConfig
|
|
964
|
+
|
|
965
|
+
DurableExecutionAlreadyStartedException.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
|
|
966
|
+
DurableExecutionAlreadyStartedException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
|
967
|
+
DurableExecutionAlreadyStartedException.struct_class = Types::DurableExecutionAlreadyStartedException
|
|
968
|
+
|
|
969
|
+
DurableExecutions.member = Shapes::ShapeRef.new(shape: Execution)
|
|
970
|
+
|
|
768
971
|
EC2AccessDeniedException.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
|
|
769
972
|
EC2AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
|
770
973
|
EC2AccessDeniedException.struct_class = Types::EC2AccessDeniedException
|
|
@@ -820,6 +1023,57 @@ module Aws::Lambda
|
|
|
820
1023
|
EphemeralStorage.add_member(:size, Shapes::ShapeRef.new(shape: EphemeralStorageSize, required: true, location_name: "Size"))
|
|
821
1024
|
EphemeralStorage.struct_class = Types::EphemeralStorage
|
|
822
1025
|
|
|
1026
|
+
ErrorObject.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "ErrorMessage"))
|
|
1027
|
+
ErrorObject.add_member(:error_type, Shapes::ShapeRef.new(shape: ErrorType, location_name: "ErrorType"))
|
|
1028
|
+
ErrorObject.add_member(:error_data, Shapes::ShapeRef.new(shape: ErrorData, location_name: "ErrorData"))
|
|
1029
|
+
ErrorObject.add_member(:stack_trace, Shapes::ShapeRef.new(shape: StackTraceEntries, location_name: "StackTrace"))
|
|
1030
|
+
ErrorObject.struct_class = Types::ErrorObject
|
|
1031
|
+
|
|
1032
|
+
Event.add_member(:event_type, Shapes::ShapeRef.new(shape: EventType, location_name: "EventType"))
|
|
1033
|
+
Event.add_member(:sub_type, Shapes::ShapeRef.new(shape: OperationSubType, location_name: "SubType"))
|
|
1034
|
+
Event.add_member(:event_id, Shapes::ShapeRef.new(shape: EventId, location_name: "EventId"))
|
|
1035
|
+
Event.add_member(:id, Shapes::ShapeRef.new(shape: OperationId, location_name: "Id"))
|
|
1036
|
+
Event.add_member(:name, Shapes::ShapeRef.new(shape: OperationName, location_name: "Name"))
|
|
1037
|
+
Event.add_member(:event_timestamp, Shapes::ShapeRef.new(shape: ExecutionTimestamp, location_name: "EventTimestamp"))
|
|
1038
|
+
Event.add_member(:parent_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "ParentId"))
|
|
1039
|
+
Event.add_member(:execution_started_details, Shapes::ShapeRef.new(shape: ExecutionStartedDetails, location_name: "ExecutionStartedDetails"))
|
|
1040
|
+
Event.add_member(:execution_succeeded_details, Shapes::ShapeRef.new(shape: ExecutionSucceededDetails, location_name: "ExecutionSucceededDetails"))
|
|
1041
|
+
Event.add_member(:execution_failed_details, Shapes::ShapeRef.new(shape: ExecutionFailedDetails, location_name: "ExecutionFailedDetails"))
|
|
1042
|
+
Event.add_member(:execution_timed_out_details, Shapes::ShapeRef.new(shape: ExecutionTimedOutDetails, location_name: "ExecutionTimedOutDetails"))
|
|
1043
|
+
Event.add_member(:execution_stopped_details, Shapes::ShapeRef.new(shape: ExecutionStoppedDetails, location_name: "ExecutionStoppedDetails"))
|
|
1044
|
+
Event.add_member(:context_started_details, Shapes::ShapeRef.new(shape: ContextStartedDetails, location_name: "ContextStartedDetails"))
|
|
1045
|
+
Event.add_member(:context_succeeded_details, Shapes::ShapeRef.new(shape: ContextSucceededDetails, location_name: "ContextSucceededDetails"))
|
|
1046
|
+
Event.add_member(:context_failed_details, Shapes::ShapeRef.new(shape: ContextFailedDetails, location_name: "ContextFailedDetails"))
|
|
1047
|
+
Event.add_member(:wait_started_details, Shapes::ShapeRef.new(shape: WaitStartedDetails, location_name: "WaitStartedDetails"))
|
|
1048
|
+
Event.add_member(:wait_succeeded_details, Shapes::ShapeRef.new(shape: WaitSucceededDetails, location_name: "WaitSucceededDetails"))
|
|
1049
|
+
Event.add_member(:wait_cancelled_details, Shapes::ShapeRef.new(shape: WaitCancelledDetails, location_name: "WaitCancelledDetails"))
|
|
1050
|
+
Event.add_member(:step_started_details, Shapes::ShapeRef.new(shape: StepStartedDetails, location_name: "StepStartedDetails"))
|
|
1051
|
+
Event.add_member(:step_succeeded_details, Shapes::ShapeRef.new(shape: StepSucceededDetails, location_name: "StepSucceededDetails"))
|
|
1052
|
+
Event.add_member(:step_failed_details, Shapes::ShapeRef.new(shape: StepFailedDetails, location_name: "StepFailedDetails"))
|
|
1053
|
+
Event.add_member(:chained_invoke_started_details, Shapes::ShapeRef.new(shape: ChainedInvokeStartedDetails, location_name: "ChainedInvokeStartedDetails"))
|
|
1054
|
+
Event.add_member(:chained_invoke_succeeded_details, Shapes::ShapeRef.new(shape: ChainedInvokeSucceededDetails, location_name: "ChainedInvokeSucceededDetails"))
|
|
1055
|
+
Event.add_member(:chained_invoke_failed_details, Shapes::ShapeRef.new(shape: ChainedInvokeFailedDetails, location_name: "ChainedInvokeFailedDetails"))
|
|
1056
|
+
Event.add_member(:chained_invoke_timed_out_details, Shapes::ShapeRef.new(shape: ChainedInvokeTimedOutDetails, location_name: "ChainedInvokeTimedOutDetails"))
|
|
1057
|
+
Event.add_member(:chained_invoke_stopped_details, Shapes::ShapeRef.new(shape: ChainedInvokeStoppedDetails, location_name: "ChainedInvokeStoppedDetails"))
|
|
1058
|
+
Event.add_member(:callback_started_details, Shapes::ShapeRef.new(shape: CallbackStartedDetails, location_name: "CallbackStartedDetails"))
|
|
1059
|
+
Event.add_member(:callback_succeeded_details, Shapes::ShapeRef.new(shape: CallbackSucceededDetails, location_name: "CallbackSucceededDetails"))
|
|
1060
|
+
Event.add_member(:callback_failed_details, Shapes::ShapeRef.new(shape: CallbackFailedDetails, location_name: "CallbackFailedDetails"))
|
|
1061
|
+
Event.add_member(:callback_timed_out_details, Shapes::ShapeRef.new(shape: CallbackTimedOutDetails, location_name: "CallbackTimedOutDetails"))
|
|
1062
|
+
Event.add_member(:invocation_completed_details, Shapes::ShapeRef.new(shape: InvocationCompletedDetails, location_name: "InvocationCompletedDetails"))
|
|
1063
|
+
Event.struct_class = Types::Event
|
|
1064
|
+
|
|
1065
|
+
EventError.add_member(:payload, Shapes::ShapeRef.new(shape: ErrorObject, location_name: "Payload"))
|
|
1066
|
+
EventError.add_member(:truncated, Shapes::ShapeRef.new(shape: Truncated, location_name: "Truncated"))
|
|
1067
|
+
EventError.struct_class = Types::EventError
|
|
1068
|
+
|
|
1069
|
+
EventInput.add_member(:payload, Shapes::ShapeRef.new(shape: InputPayload, location_name: "Payload"))
|
|
1070
|
+
EventInput.add_member(:truncated, Shapes::ShapeRef.new(shape: Truncated, location_name: "Truncated"))
|
|
1071
|
+
EventInput.struct_class = Types::EventInput
|
|
1072
|
+
|
|
1073
|
+
EventResult.add_member(:payload, Shapes::ShapeRef.new(shape: OperationPayload, location_name: "Payload"))
|
|
1074
|
+
EventResult.add_member(:truncated, Shapes::ShapeRef.new(shape: Truncated, location_name: "Truncated"))
|
|
1075
|
+
EventResult.struct_class = Types::EventResult
|
|
1076
|
+
|
|
823
1077
|
EventSourceMappingConfiguration.add_member(:uuid, Shapes::ShapeRef.new(shape: String, location_name: "UUID"))
|
|
824
1078
|
EventSourceMappingConfiguration.add_member(:starting_position, Shapes::ShapeRef.new(shape: EventSourcePosition, location_name: "StartingPosition"))
|
|
825
1079
|
EventSourceMappingConfiguration.add_member(:starting_position_timestamp, Shapes::ShapeRef.new(shape: Date, location_name: "StartingPositionTimestamp"))
|
|
@@ -861,6 +1115,37 @@ module Aws::Lambda
|
|
|
861
1115
|
|
|
862
1116
|
EventSourceMappingsList.member = Shapes::ShapeRef.new(shape: EventSourceMappingConfiguration)
|
|
863
1117
|
|
|
1118
|
+
Events.member = Shapes::ShapeRef.new(shape: Event)
|
|
1119
|
+
|
|
1120
|
+
Execution.add_member(:durable_execution_arn, Shapes::ShapeRef.new(shape: DurableExecutionArn, required: true, location_name: "DurableExecutionArn"))
|
|
1121
|
+
Execution.add_member(:durable_execution_name, Shapes::ShapeRef.new(shape: DurableExecutionName, required: true, location_name: "DurableExecutionName"))
|
|
1122
|
+
Execution.add_member(:function_arn, Shapes::ShapeRef.new(shape: NameSpacedFunctionArn, required: true, location_name: "FunctionArn"))
|
|
1123
|
+
Execution.add_member(:status, Shapes::ShapeRef.new(shape: ExecutionStatus, required: true, location_name: "Status"))
|
|
1124
|
+
Execution.add_member(:start_timestamp, Shapes::ShapeRef.new(shape: ExecutionTimestamp, required: true, location_name: "StartTimestamp"))
|
|
1125
|
+
Execution.add_member(:end_timestamp, Shapes::ShapeRef.new(shape: ExecutionTimestamp, location_name: "EndTimestamp"))
|
|
1126
|
+
Execution.struct_class = Types::Execution
|
|
1127
|
+
|
|
1128
|
+
ExecutionDetails.add_member(:input_payload, Shapes::ShapeRef.new(shape: InputPayload, location_name: "InputPayload"))
|
|
1129
|
+
ExecutionDetails.struct_class = Types::ExecutionDetails
|
|
1130
|
+
|
|
1131
|
+
ExecutionFailedDetails.add_member(:error, Shapes::ShapeRef.new(shape: EventError, required: true, location_name: "Error"))
|
|
1132
|
+
ExecutionFailedDetails.struct_class = Types::ExecutionFailedDetails
|
|
1133
|
+
|
|
1134
|
+
ExecutionStartedDetails.add_member(:input, Shapes::ShapeRef.new(shape: EventInput, required: true, location_name: "Input"))
|
|
1135
|
+
ExecutionStartedDetails.add_member(:execution_timeout, Shapes::ShapeRef.new(shape: DurationSeconds, required: true, location_name: "ExecutionTimeout"))
|
|
1136
|
+
ExecutionStartedDetails.struct_class = Types::ExecutionStartedDetails
|
|
1137
|
+
|
|
1138
|
+
ExecutionStatusList.member = Shapes::ShapeRef.new(shape: ExecutionStatus)
|
|
1139
|
+
|
|
1140
|
+
ExecutionStoppedDetails.add_member(:error, Shapes::ShapeRef.new(shape: EventError, required: true, location_name: "Error"))
|
|
1141
|
+
ExecutionStoppedDetails.struct_class = Types::ExecutionStoppedDetails
|
|
1142
|
+
|
|
1143
|
+
ExecutionSucceededDetails.add_member(:result, Shapes::ShapeRef.new(shape: EventResult, required: true, location_name: "Result"))
|
|
1144
|
+
ExecutionSucceededDetails.struct_class = Types::ExecutionSucceededDetails
|
|
1145
|
+
|
|
1146
|
+
ExecutionTimedOutDetails.add_member(:error, Shapes::ShapeRef.new(shape: EventError, location_name: "Error"))
|
|
1147
|
+
ExecutionTimedOutDetails.struct_class = Types::ExecutionTimedOutDetails
|
|
1148
|
+
|
|
864
1149
|
FileSystemConfig.add_member(:arn, Shapes::ShapeRef.new(shape: FileSystemArn, required: true, location_name: "Arn"))
|
|
865
1150
|
FileSystemConfig.add_member(:local_mount_path, Shapes::ShapeRef.new(shape: LocalMountPath, required: true, location_name: "LocalMountPath"))
|
|
866
1151
|
FileSystemConfig.struct_class = Types::FileSystemConfig
|
|
@@ -934,6 +1219,7 @@ module Aws::Lambda
|
|
|
934
1219
|
FunctionConfiguration.add_member(:logging_config, Shapes::ShapeRef.new(shape: LoggingConfig, location_name: "LoggingConfig"))
|
|
935
1220
|
FunctionConfiguration.add_member(:capacity_provider_config, Shapes::ShapeRef.new(shape: CapacityProviderConfig, location_name: "CapacityProviderConfig"))
|
|
936
1221
|
FunctionConfiguration.add_member(:config_sha_256, Shapes::ShapeRef.new(shape: String, location_name: "ConfigSha256"))
|
|
1222
|
+
FunctionConfiguration.add_member(:durable_config, Shapes::ShapeRef.new(shape: DurableConfig, location_name: "DurableConfig"))
|
|
937
1223
|
FunctionConfiguration.add_member(:tenancy_config, Shapes::ShapeRef.new(shape: TenancyConfig, location_name: "TenancyConfig"))
|
|
938
1224
|
FunctionConfiguration.struct_class = Types::FunctionConfiguration
|
|
939
1225
|
|
|
@@ -997,6 +1283,43 @@ module Aws::Lambda
|
|
|
997
1283
|
GetCodeSigningConfigResponse.add_member(:code_signing_config, Shapes::ShapeRef.new(shape: CodeSigningConfig, required: true, location_name: "CodeSigningConfig"))
|
|
998
1284
|
GetCodeSigningConfigResponse.struct_class = Types::GetCodeSigningConfigResponse
|
|
999
1285
|
|
|
1286
|
+
GetDurableExecutionHistoryRequest.add_member(:durable_execution_arn, Shapes::ShapeRef.new(shape: DurableExecutionArn, required: true, location: "uri", location_name: "DurableExecutionArn"))
|
|
1287
|
+
GetDurableExecutionHistoryRequest.add_member(:include_execution_data, Shapes::ShapeRef.new(shape: IncludeExecutionData, location: "querystring", location_name: "IncludeExecutionData"))
|
|
1288
|
+
GetDurableExecutionHistoryRequest.add_member(:max_items, Shapes::ShapeRef.new(shape: ItemCount, location: "querystring", location_name: "MaxItems"))
|
|
1289
|
+
GetDurableExecutionHistoryRequest.add_member(:marker, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "Marker"))
|
|
1290
|
+
GetDurableExecutionHistoryRequest.add_member(:reverse_order, Shapes::ShapeRef.new(shape: ReverseOrder, location: "querystring", location_name: "ReverseOrder"))
|
|
1291
|
+
GetDurableExecutionHistoryRequest.struct_class = Types::GetDurableExecutionHistoryRequest
|
|
1292
|
+
|
|
1293
|
+
GetDurableExecutionHistoryResponse.add_member(:events, Shapes::ShapeRef.new(shape: Events, required: true, location_name: "Events"))
|
|
1294
|
+
GetDurableExecutionHistoryResponse.add_member(:next_marker, Shapes::ShapeRef.new(shape: String, location_name: "NextMarker"))
|
|
1295
|
+
GetDurableExecutionHistoryResponse.struct_class = Types::GetDurableExecutionHistoryResponse
|
|
1296
|
+
|
|
1297
|
+
GetDurableExecutionRequest.add_member(:durable_execution_arn, Shapes::ShapeRef.new(shape: DurableExecutionArn, required: true, location: "uri", location_name: "DurableExecutionArn"))
|
|
1298
|
+
GetDurableExecutionRequest.struct_class = Types::GetDurableExecutionRequest
|
|
1299
|
+
|
|
1300
|
+
GetDurableExecutionResponse.add_member(:durable_execution_arn, Shapes::ShapeRef.new(shape: DurableExecutionArn, required: true, location_name: "DurableExecutionArn"))
|
|
1301
|
+
GetDurableExecutionResponse.add_member(:durable_execution_name, Shapes::ShapeRef.new(shape: DurableExecutionName, required: true, location_name: "DurableExecutionName"))
|
|
1302
|
+
GetDurableExecutionResponse.add_member(:function_arn, Shapes::ShapeRef.new(shape: NameSpacedFunctionArn, required: true, location_name: "FunctionArn"))
|
|
1303
|
+
GetDurableExecutionResponse.add_member(:input_payload, Shapes::ShapeRef.new(shape: InputPayload, location_name: "InputPayload"))
|
|
1304
|
+
GetDurableExecutionResponse.add_member(:result, Shapes::ShapeRef.new(shape: OutputPayload, location_name: "Result"))
|
|
1305
|
+
GetDurableExecutionResponse.add_member(:error, Shapes::ShapeRef.new(shape: ErrorObject, location_name: "Error"))
|
|
1306
|
+
GetDurableExecutionResponse.add_member(:start_timestamp, Shapes::ShapeRef.new(shape: ExecutionTimestamp, required: true, location_name: "StartTimestamp"))
|
|
1307
|
+
GetDurableExecutionResponse.add_member(:status, Shapes::ShapeRef.new(shape: ExecutionStatus, required: true, location_name: "Status"))
|
|
1308
|
+
GetDurableExecutionResponse.add_member(:end_timestamp, Shapes::ShapeRef.new(shape: ExecutionTimestamp, location_name: "EndTimestamp"))
|
|
1309
|
+
GetDurableExecutionResponse.add_member(:version, Shapes::ShapeRef.new(shape: VersionWithLatestPublished, location_name: "Version"))
|
|
1310
|
+
GetDurableExecutionResponse.add_member(:trace_header, Shapes::ShapeRef.new(shape: TraceHeader, location_name: "TraceHeader"))
|
|
1311
|
+
GetDurableExecutionResponse.struct_class = Types::GetDurableExecutionResponse
|
|
1312
|
+
|
|
1313
|
+
GetDurableExecutionStateRequest.add_member(:durable_execution_arn, Shapes::ShapeRef.new(shape: DurableExecutionArn, required: true, location: "uri", location_name: "DurableExecutionArn"))
|
|
1314
|
+
GetDurableExecutionStateRequest.add_member(:checkpoint_token, Shapes::ShapeRef.new(shape: CheckpointToken, required: true, location: "querystring", location_name: "CheckpointToken"))
|
|
1315
|
+
GetDurableExecutionStateRequest.add_member(:marker, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "Marker"))
|
|
1316
|
+
GetDurableExecutionStateRequest.add_member(:max_items, Shapes::ShapeRef.new(shape: ItemCount, location: "querystring", location_name: "MaxItems"))
|
|
1317
|
+
GetDurableExecutionStateRequest.struct_class = Types::GetDurableExecutionStateRequest
|
|
1318
|
+
|
|
1319
|
+
GetDurableExecutionStateResponse.add_member(:operations, Shapes::ShapeRef.new(shape: Operations, required: true, location_name: "Operations"))
|
|
1320
|
+
GetDurableExecutionStateResponse.add_member(:next_marker, Shapes::ShapeRef.new(shape: String, location_name: "NextMarker"))
|
|
1321
|
+
GetDurableExecutionStateResponse.struct_class = Types::GetDurableExecutionStateResponse
|
|
1322
|
+
|
|
1000
1323
|
GetEventSourceMappingRequest.add_member(:uuid, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "UUID"))
|
|
1001
1324
|
GetEventSourceMappingRequest.struct_class = Types::GetEventSourceMappingRequest
|
|
1002
1325
|
|
|
@@ -1165,10 +1488,17 @@ module Aws::Lambda
|
|
|
1165
1488
|
InvalidZipFileException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
|
1166
1489
|
InvalidZipFileException.struct_class = Types::InvalidZipFileException
|
|
1167
1490
|
|
|
1491
|
+
InvocationCompletedDetails.add_member(:start_timestamp, Shapes::ShapeRef.new(shape: ExecutionTimestamp, required: true, location_name: "StartTimestamp"))
|
|
1492
|
+
InvocationCompletedDetails.add_member(:end_timestamp, Shapes::ShapeRef.new(shape: ExecutionTimestamp, required: true, location_name: "EndTimestamp"))
|
|
1493
|
+
InvocationCompletedDetails.add_member(:request_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RequestId"))
|
|
1494
|
+
InvocationCompletedDetails.add_member(:error, Shapes::ShapeRef.new(shape: EventError, location_name: "Error"))
|
|
1495
|
+
InvocationCompletedDetails.struct_class = Types::InvocationCompletedDetails
|
|
1496
|
+
|
|
1168
1497
|
InvocationRequest.add_member(:function_name, Shapes::ShapeRef.new(shape: NamespacedFunctionName, required: true, location: "uri", location_name: "FunctionName"))
|
|
1169
1498
|
InvocationRequest.add_member(:invocation_type, Shapes::ShapeRef.new(shape: InvocationType, location: "header", location_name: "X-Amz-Invocation-Type"))
|
|
1170
1499
|
InvocationRequest.add_member(:log_type, Shapes::ShapeRef.new(shape: LogType, location: "header", location_name: "X-Amz-Log-Type"))
|
|
1171
1500
|
InvocationRequest.add_member(:client_context, Shapes::ShapeRef.new(shape: String, location: "header", location_name: "X-Amz-Client-Context"))
|
|
1501
|
+
InvocationRequest.add_member(:durable_execution_name, Shapes::ShapeRef.new(shape: DurableExecutionName, location: "header", location_name: "X-Amz-Durable-Execution-Name"))
|
|
1172
1502
|
InvocationRequest.add_member(:payload, Shapes::ShapeRef.new(shape: Blob, location_name: "Payload"))
|
|
1173
1503
|
InvocationRequest.add_member(:qualifier, Shapes::ShapeRef.new(shape: NumericLatestPublishedOrAliasQualifier, location: "querystring", location_name: "Qualifier"))
|
|
1174
1504
|
InvocationRequest.add_member(:tenant_id, Shapes::ShapeRef.new(shape: TenantId, location: "header", location_name: "X-Amz-Tenant-Id"))
|
|
@@ -1181,6 +1511,7 @@ module Aws::Lambda
|
|
|
1181
1511
|
InvocationResponse.add_member(:log_result, Shapes::ShapeRef.new(shape: String, location: "header", location_name: "X-Amz-Log-Result"))
|
|
1182
1512
|
InvocationResponse.add_member(:payload, Shapes::ShapeRef.new(shape: Blob, location_name: "Payload"))
|
|
1183
1513
|
InvocationResponse.add_member(:executed_version, Shapes::ShapeRef.new(shape: Version, location: "header", location_name: "X-Amz-Executed-Version"))
|
|
1514
|
+
InvocationResponse.add_member(:durable_execution_arn, Shapes::ShapeRef.new(shape: DurableExecutionArn, location: "header", location_name: "X-Amz-Durable-Execution-Arn"))
|
|
1184
1515
|
InvocationResponse.struct_class = Types::InvocationResponse
|
|
1185
1516
|
InvocationResponse[:payload] = :payload
|
|
1186
1517
|
InvocationResponse[:payload_member] = InvocationResponse.member(:payload)
|
|
@@ -1331,6 +1662,21 @@ module Aws::Lambda
|
|
|
1331
1662
|
ListCodeSigningConfigsResponse.add_member(:code_signing_configs, Shapes::ShapeRef.new(shape: CodeSigningConfigList, location_name: "CodeSigningConfigs"))
|
|
1332
1663
|
ListCodeSigningConfigsResponse.struct_class = Types::ListCodeSigningConfigsResponse
|
|
1333
1664
|
|
|
1665
|
+
ListDurableExecutionsByFunctionRequest.add_member(:function_name, Shapes::ShapeRef.new(shape: NamespacedFunctionName, required: true, location: "uri", location_name: "FunctionName"))
|
|
1666
|
+
ListDurableExecutionsByFunctionRequest.add_member(:qualifier, Shapes::ShapeRef.new(shape: NumericLatestPublishedOrAliasQualifier, location: "querystring", location_name: "Qualifier"))
|
|
1667
|
+
ListDurableExecutionsByFunctionRequest.add_member(:durable_execution_name, Shapes::ShapeRef.new(shape: DurableExecutionName, location: "querystring", location_name: "DurableExecutionName"))
|
|
1668
|
+
ListDurableExecutionsByFunctionRequest.add_member(:statuses, Shapes::ShapeRef.new(shape: ExecutionStatusList, location: "querystring", location_name: "Statuses"))
|
|
1669
|
+
ListDurableExecutionsByFunctionRequest.add_member(:started_after, Shapes::ShapeRef.new(shape: ExecutionTimestamp, location: "querystring", location_name: "StartedAfter"))
|
|
1670
|
+
ListDurableExecutionsByFunctionRequest.add_member(:started_before, Shapes::ShapeRef.new(shape: ExecutionTimestamp, location: "querystring", location_name: "StartedBefore"))
|
|
1671
|
+
ListDurableExecutionsByFunctionRequest.add_member(:reverse_order, Shapes::ShapeRef.new(shape: ReverseOrder, location: "querystring", location_name: "ReverseOrder"))
|
|
1672
|
+
ListDurableExecutionsByFunctionRequest.add_member(:marker, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "Marker"))
|
|
1673
|
+
ListDurableExecutionsByFunctionRequest.add_member(:max_items, Shapes::ShapeRef.new(shape: ItemCount, location: "querystring", location_name: "MaxItems"))
|
|
1674
|
+
ListDurableExecutionsByFunctionRequest.struct_class = Types::ListDurableExecutionsByFunctionRequest
|
|
1675
|
+
|
|
1676
|
+
ListDurableExecutionsByFunctionResponse.add_member(:durable_executions, Shapes::ShapeRef.new(shape: DurableExecutions, location_name: "DurableExecutions"))
|
|
1677
|
+
ListDurableExecutionsByFunctionResponse.add_member(:next_marker, Shapes::ShapeRef.new(shape: String, location_name: "NextMarker"))
|
|
1678
|
+
ListDurableExecutionsByFunctionResponse.struct_class = Types::ListDurableExecutionsByFunctionResponse
|
|
1679
|
+
|
|
1334
1680
|
ListEventSourceMappingsRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: Arn, location: "querystring", location_name: "EventSourceArn"))
|
|
1335
1681
|
ListEventSourceMappingsRequest.add_member(:function_name, Shapes::ShapeRef.new(shape: NamespacedFunctionName, location: "querystring", location_name: "FunctionName"))
|
|
1336
1682
|
ListEventSourceMappingsRequest.add_member(:marker, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "Marker"))
|
|
@@ -1449,6 +1795,41 @@ module Aws::Lambda
|
|
|
1449
1795
|
OnSuccess.add_member(:destination, Shapes::ShapeRef.new(shape: DestinationArn, location_name: "Destination"))
|
|
1450
1796
|
OnSuccess.struct_class = Types::OnSuccess
|
|
1451
1797
|
|
|
1798
|
+
Operation.add_member(:id, Shapes::ShapeRef.new(shape: OperationId, required: true, location_name: "Id"))
|
|
1799
|
+
Operation.add_member(:parent_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "ParentId"))
|
|
1800
|
+
Operation.add_member(:name, Shapes::ShapeRef.new(shape: OperationName, location_name: "Name"))
|
|
1801
|
+
Operation.add_member(:type, Shapes::ShapeRef.new(shape: OperationType, required: true, location_name: "Type"))
|
|
1802
|
+
Operation.add_member(:sub_type, Shapes::ShapeRef.new(shape: OperationSubType, location_name: "SubType"))
|
|
1803
|
+
Operation.add_member(:start_timestamp, Shapes::ShapeRef.new(shape: ExecutionTimestamp, required: true, location_name: "StartTimestamp"))
|
|
1804
|
+
Operation.add_member(:end_timestamp, Shapes::ShapeRef.new(shape: ExecutionTimestamp, location_name: "EndTimestamp"))
|
|
1805
|
+
Operation.add_member(:status, Shapes::ShapeRef.new(shape: OperationStatus, required: true, location_name: "Status"))
|
|
1806
|
+
Operation.add_member(:execution_details, Shapes::ShapeRef.new(shape: ExecutionDetails, location_name: "ExecutionDetails"))
|
|
1807
|
+
Operation.add_member(:context_details, Shapes::ShapeRef.new(shape: ContextDetails, location_name: "ContextDetails"))
|
|
1808
|
+
Operation.add_member(:step_details, Shapes::ShapeRef.new(shape: StepDetails, location_name: "StepDetails"))
|
|
1809
|
+
Operation.add_member(:wait_details, Shapes::ShapeRef.new(shape: WaitDetails, location_name: "WaitDetails"))
|
|
1810
|
+
Operation.add_member(:callback_details, Shapes::ShapeRef.new(shape: CallbackDetails, location_name: "CallbackDetails"))
|
|
1811
|
+
Operation.add_member(:chained_invoke_details, Shapes::ShapeRef.new(shape: ChainedInvokeDetails, location_name: "ChainedInvokeDetails"))
|
|
1812
|
+
Operation.struct_class = Types::Operation
|
|
1813
|
+
|
|
1814
|
+
OperationUpdate.add_member(:id, Shapes::ShapeRef.new(shape: OperationId, required: true, location_name: "Id"))
|
|
1815
|
+
OperationUpdate.add_member(:parent_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "ParentId"))
|
|
1816
|
+
OperationUpdate.add_member(:name, Shapes::ShapeRef.new(shape: OperationName, location_name: "Name"))
|
|
1817
|
+
OperationUpdate.add_member(:type, Shapes::ShapeRef.new(shape: OperationType, required: true, location_name: "Type"))
|
|
1818
|
+
OperationUpdate.add_member(:sub_type, Shapes::ShapeRef.new(shape: OperationSubType, location_name: "SubType"))
|
|
1819
|
+
OperationUpdate.add_member(:action, Shapes::ShapeRef.new(shape: OperationAction, required: true, location_name: "Action"))
|
|
1820
|
+
OperationUpdate.add_member(:payload, Shapes::ShapeRef.new(shape: OperationPayload, location_name: "Payload"))
|
|
1821
|
+
OperationUpdate.add_member(:error, Shapes::ShapeRef.new(shape: ErrorObject, location_name: "Error"))
|
|
1822
|
+
OperationUpdate.add_member(:context_options, Shapes::ShapeRef.new(shape: ContextOptions, location_name: "ContextOptions"))
|
|
1823
|
+
OperationUpdate.add_member(:step_options, Shapes::ShapeRef.new(shape: StepOptions, location_name: "StepOptions"))
|
|
1824
|
+
OperationUpdate.add_member(:wait_options, Shapes::ShapeRef.new(shape: WaitOptions, location_name: "WaitOptions"))
|
|
1825
|
+
OperationUpdate.add_member(:callback_options, Shapes::ShapeRef.new(shape: CallbackOptions, location_name: "CallbackOptions"))
|
|
1826
|
+
OperationUpdate.add_member(:chained_invoke_options, Shapes::ShapeRef.new(shape: ChainedInvokeOptions, location_name: "ChainedInvokeOptions"))
|
|
1827
|
+
OperationUpdate.struct_class = Types::OperationUpdate
|
|
1828
|
+
|
|
1829
|
+
OperationUpdates.member = Shapes::ShapeRef.new(shape: OperationUpdate)
|
|
1830
|
+
|
|
1831
|
+
Operations.member = Shapes::ShapeRef.new(shape: Operation)
|
|
1832
|
+
|
|
1452
1833
|
PolicyLengthExceededException.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
|
|
1453
1834
|
PolicyLengthExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
1454
1835
|
PolicyLengthExceededException.struct_class = Types::PolicyLengthExceededException
|
|
@@ -1599,6 +1980,10 @@ module Aws::Lambda
|
|
|
1599
1980
|
ResourceNotReadyException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
1600
1981
|
ResourceNotReadyException.struct_class = Types::ResourceNotReadyException
|
|
1601
1982
|
|
|
1983
|
+
RetryDetails.add_member(:current_attempt, Shapes::ShapeRef.new(shape: AttemptCount, location_name: "CurrentAttempt"))
|
|
1984
|
+
RetryDetails.add_member(:next_attempt_delay_seconds, Shapes::ShapeRef.new(shape: DurationSeconds, location_name: "NextAttemptDelaySeconds"))
|
|
1985
|
+
RetryDetails.struct_class = Types::RetryDetails
|
|
1986
|
+
|
|
1602
1987
|
RuntimeVersionConfig.add_member(:runtime_version_arn, Shapes::ShapeRef.new(shape: RuntimeVersionArn, location_name: "RuntimeVersionArn"))
|
|
1603
1988
|
RuntimeVersionConfig.add_member(:error, Shapes::ShapeRef.new(shape: RuntimeVersionError, location_name: "Error"))
|
|
1604
1989
|
RuntimeVersionConfig.struct_class = Types::RuntimeVersionConfig
|
|
@@ -1619,6 +2004,27 @@ module Aws::Lambda
|
|
|
1619
2004
|
SelfManagedKafkaEventSourceConfig.add_member(:schema_registry_config, Shapes::ShapeRef.new(shape: KafkaSchemaRegistryConfig, location_name: "SchemaRegistryConfig"))
|
|
1620
2005
|
SelfManagedKafkaEventSourceConfig.struct_class = Types::SelfManagedKafkaEventSourceConfig
|
|
1621
2006
|
|
|
2007
|
+
SendDurableExecutionCallbackFailureRequest.add_member(:callback_id, Shapes::ShapeRef.new(shape: CallbackId, required: true, location: "uri", location_name: "CallbackId"))
|
|
2008
|
+
SendDurableExecutionCallbackFailureRequest.add_member(:error, Shapes::ShapeRef.new(shape: ErrorObject, location_name: "Error"))
|
|
2009
|
+
SendDurableExecutionCallbackFailureRequest.struct_class = Types::SendDurableExecutionCallbackFailureRequest
|
|
2010
|
+
SendDurableExecutionCallbackFailureRequest[:payload] = :error
|
|
2011
|
+
SendDurableExecutionCallbackFailureRequest[:payload_member] = SendDurableExecutionCallbackFailureRequest.member(:error)
|
|
2012
|
+
|
|
2013
|
+
SendDurableExecutionCallbackFailureResponse.struct_class = Types::SendDurableExecutionCallbackFailureResponse
|
|
2014
|
+
|
|
2015
|
+
SendDurableExecutionCallbackHeartbeatRequest.add_member(:callback_id, Shapes::ShapeRef.new(shape: CallbackId, required: true, location: "uri", location_name: "CallbackId"))
|
|
2016
|
+
SendDurableExecutionCallbackHeartbeatRequest.struct_class = Types::SendDurableExecutionCallbackHeartbeatRequest
|
|
2017
|
+
|
|
2018
|
+
SendDurableExecutionCallbackHeartbeatResponse.struct_class = Types::SendDurableExecutionCallbackHeartbeatResponse
|
|
2019
|
+
|
|
2020
|
+
SendDurableExecutionCallbackSuccessRequest.add_member(:callback_id, Shapes::ShapeRef.new(shape: CallbackId, required: true, location: "uri", location_name: "CallbackId"))
|
|
2021
|
+
SendDurableExecutionCallbackSuccessRequest.add_member(:result, Shapes::ShapeRef.new(shape: BinaryOperationPayload, location_name: "Result"))
|
|
2022
|
+
SendDurableExecutionCallbackSuccessRequest.struct_class = Types::SendDurableExecutionCallbackSuccessRequest
|
|
2023
|
+
SendDurableExecutionCallbackSuccessRequest[:payload] = :result
|
|
2024
|
+
SendDurableExecutionCallbackSuccessRequest[:payload_member] = SendDurableExecutionCallbackSuccessRequest.member(:result)
|
|
2025
|
+
|
|
2026
|
+
SendDurableExecutionCallbackSuccessResponse.struct_class = Types::SendDurableExecutionCallbackSuccessResponse
|
|
2027
|
+
|
|
1622
2028
|
SerializedRequestEntityTooLargeException.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
|
|
1623
2029
|
SerializedRequestEntityTooLargeException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
1624
2030
|
SerializedRequestEntityTooLargeException.struct_class = Types::SerializedRequestEntityTooLargeException
|
|
@@ -1654,6 +2060,36 @@ module Aws::Lambda
|
|
|
1654
2060
|
|
|
1655
2061
|
SourceAccessConfigurations.member = Shapes::ShapeRef.new(shape: SourceAccessConfiguration)
|
|
1656
2062
|
|
|
2063
|
+
StackTraceEntries.member = Shapes::ShapeRef.new(shape: StackTraceEntry)
|
|
2064
|
+
|
|
2065
|
+
StepDetails.add_member(:attempt, Shapes::ShapeRef.new(shape: AttemptCount, location_name: "Attempt"))
|
|
2066
|
+
StepDetails.add_member(:next_attempt_timestamp, Shapes::ShapeRef.new(shape: ExecutionTimestamp, location_name: "NextAttemptTimestamp"))
|
|
2067
|
+
StepDetails.add_member(:result, Shapes::ShapeRef.new(shape: OperationPayload, location_name: "Result"))
|
|
2068
|
+
StepDetails.add_member(:error, Shapes::ShapeRef.new(shape: ErrorObject, location_name: "Error"))
|
|
2069
|
+
StepDetails.struct_class = Types::StepDetails
|
|
2070
|
+
|
|
2071
|
+
StepFailedDetails.add_member(:error, Shapes::ShapeRef.new(shape: EventError, required: true, location_name: "Error"))
|
|
2072
|
+
StepFailedDetails.add_member(:retry_details, Shapes::ShapeRef.new(shape: RetryDetails, required: true, location_name: "RetryDetails"))
|
|
2073
|
+
StepFailedDetails.struct_class = Types::StepFailedDetails
|
|
2074
|
+
|
|
2075
|
+
StepOptions.add_member(:next_attempt_delay_seconds, Shapes::ShapeRef.new(shape: StepOptionsNextAttemptDelaySecondsInteger, location_name: "NextAttemptDelaySeconds"))
|
|
2076
|
+
StepOptions.struct_class = Types::StepOptions
|
|
2077
|
+
|
|
2078
|
+
StepStartedDetails.struct_class = Types::StepStartedDetails
|
|
2079
|
+
|
|
2080
|
+
StepSucceededDetails.add_member(:result, Shapes::ShapeRef.new(shape: EventResult, required: true, location_name: "Result"))
|
|
2081
|
+
StepSucceededDetails.add_member(:retry_details, Shapes::ShapeRef.new(shape: RetryDetails, required: true, location_name: "RetryDetails"))
|
|
2082
|
+
StepSucceededDetails.struct_class = Types::StepSucceededDetails
|
|
2083
|
+
|
|
2084
|
+
StopDurableExecutionRequest.add_member(:durable_execution_arn, Shapes::ShapeRef.new(shape: DurableExecutionArn, required: true, location: "uri", location_name: "DurableExecutionArn"))
|
|
2085
|
+
StopDurableExecutionRequest.add_member(:error, Shapes::ShapeRef.new(shape: ErrorObject, location_name: "Error"))
|
|
2086
|
+
StopDurableExecutionRequest.struct_class = Types::StopDurableExecutionRequest
|
|
2087
|
+
StopDurableExecutionRequest[:payload] = :error
|
|
2088
|
+
StopDurableExecutionRequest[:payload_member] = StopDurableExecutionRequest.member(:error)
|
|
2089
|
+
|
|
2090
|
+
StopDurableExecutionResponse.add_member(:stop_timestamp, Shapes::ShapeRef.new(shape: ExecutionTimestamp, required: true, location_name: "StopTimestamp"))
|
|
2091
|
+
StopDurableExecutionResponse.struct_class = Types::StopDurableExecutionResponse
|
|
2092
|
+
|
|
1657
2093
|
StringList.member = Shapes::ShapeRef.new(shape: String)
|
|
1658
2094
|
|
|
1659
2095
|
SubnetIPAddressLimitReachedException.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
|
|
@@ -1690,6 +2126,9 @@ module Aws::Lambda
|
|
|
1690
2126
|
|
|
1691
2127
|
Topics.member = Shapes::ShapeRef.new(shape: Topic)
|
|
1692
2128
|
|
|
2129
|
+
TraceHeader.add_member(:x_amzn_trace_id, Shapes::ShapeRef.new(shape: XAmznTraceId, location_name: "XAmznTraceId"))
|
|
2130
|
+
TraceHeader.struct_class = Types::TraceHeader
|
|
2131
|
+
|
|
1693
2132
|
TracingConfig.add_member(:mode, Shapes::ShapeRef.new(shape: TracingMode, location_name: "Mode"))
|
|
1694
2133
|
TracingConfig.struct_class = Types::TracingConfig
|
|
1695
2134
|
|
|
@@ -1785,6 +2224,7 @@ module Aws::Lambda
|
|
|
1785
2224
|
UpdateFunctionConfigurationRequest.add_member(:snap_start, Shapes::ShapeRef.new(shape: SnapStart, location_name: "SnapStart"))
|
|
1786
2225
|
UpdateFunctionConfigurationRequest.add_member(:logging_config, Shapes::ShapeRef.new(shape: LoggingConfig, location_name: "LoggingConfig"))
|
|
1787
2226
|
UpdateFunctionConfigurationRequest.add_member(:capacity_provider_config, Shapes::ShapeRef.new(shape: CapacityProviderConfig, location_name: "CapacityProviderConfig"))
|
|
2227
|
+
UpdateFunctionConfigurationRequest.add_member(:durable_config, Shapes::ShapeRef.new(shape: DurableConfig, location_name: "DurableConfig"))
|
|
1788
2228
|
UpdateFunctionConfigurationRequest.struct_class = Types::UpdateFunctionConfigurationRequest
|
|
1789
2229
|
|
|
1790
2230
|
UpdateFunctionEventInvokeConfigRequest.add_member(:function_name, Shapes::ShapeRef.new(shape: NamespacedFunctionName, required: true, location: "uri", location_name: "FunctionName"))
|
|
@@ -1821,6 +2261,22 @@ module Aws::Lambda
|
|
|
1821
2261
|
VpcConfigResponse.add_member(:ipv_6_allowed_for_dual_stack, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "Ipv6AllowedForDualStack"))
|
|
1822
2262
|
VpcConfigResponse.struct_class = Types::VpcConfigResponse
|
|
1823
2263
|
|
|
2264
|
+
WaitCancelledDetails.add_member(:error, Shapes::ShapeRef.new(shape: EventError, location_name: "Error"))
|
|
2265
|
+
WaitCancelledDetails.struct_class = Types::WaitCancelledDetails
|
|
2266
|
+
|
|
2267
|
+
WaitDetails.add_member(:scheduled_end_timestamp, Shapes::ShapeRef.new(shape: ExecutionTimestamp, location_name: "ScheduledEndTimestamp"))
|
|
2268
|
+
WaitDetails.struct_class = Types::WaitDetails
|
|
2269
|
+
|
|
2270
|
+
WaitOptions.add_member(:wait_seconds, Shapes::ShapeRef.new(shape: WaitOptionsWaitSecondsInteger, location_name: "WaitSeconds"))
|
|
2271
|
+
WaitOptions.struct_class = Types::WaitOptions
|
|
2272
|
+
|
|
2273
|
+
WaitStartedDetails.add_member(:duration, Shapes::ShapeRef.new(shape: DurationSeconds, required: true, location_name: "Duration"))
|
|
2274
|
+
WaitStartedDetails.add_member(:scheduled_end_timestamp, Shapes::ShapeRef.new(shape: ExecutionTimestamp, required: true, location_name: "ScheduledEndTimestamp"))
|
|
2275
|
+
WaitStartedDetails.struct_class = Types::WaitStartedDetails
|
|
2276
|
+
|
|
2277
|
+
WaitSucceededDetails.add_member(:duration, Shapes::ShapeRef.new(shape: DurationSeconds, location_name: "Duration"))
|
|
2278
|
+
WaitSucceededDetails.struct_class = Types::WaitSucceededDetails
|
|
2279
|
+
|
|
1824
2280
|
|
|
1825
2281
|
# @api private
|
|
1826
2282
|
API = Seahorse::Model::Api.new.tap do |api|
|
|
@@ -1870,6 +2326,17 @@ module Aws::Lambda
|
|
|
1870
2326
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionFailedException)
|
|
1871
2327
|
end)
|
|
1872
2328
|
|
|
2329
|
+
api.add_operation(:checkpoint_durable_execution, Seahorse::Model::Operation.new.tap do |o|
|
|
2330
|
+
o.name = "CheckpointDurableExecution"
|
|
2331
|
+
o.http_method = "POST"
|
|
2332
|
+
o.http_request_uri = "/2025-12-01/durable-executions/{DurableExecutionArn}/checkpoint"
|
|
2333
|
+
o.input = Shapes::ShapeRef.new(shape: CheckpointDurableExecutionRequest)
|
|
2334
|
+
o.output = Shapes::ShapeRef.new(shape: CheckpointDurableExecutionResponse)
|
|
2335
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
2336
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
2337
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
2338
|
+
end)
|
|
2339
|
+
|
|
1873
2340
|
api.add_operation(:create_alias, Seahorse::Model::Operation.new.tap do |o|
|
|
1874
2341
|
o.name = "CreateAlias"
|
|
1875
2342
|
o.http_method = "POST"
|
|
@@ -2134,6 +2601,53 @@ module Aws::Lambda
|
|
|
2134
2601
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2135
2602
|
end)
|
|
2136
2603
|
|
|
2604
|
+
api.add_operation(:get_durable_execution, Seahorse::Model::Operation.new.tap do |o|
|
|
2605
|
+
o.name = "GetDurableExecution"
|
|
2606
|
+
o.http_method = "GET"
|
|
2607
|
+
o.http_request_uri = "/2025-12-01/durable-executions/{DurableExecutionArn}"
|
|
2608
|
+
o.input = Shapes::ShapeRef.new(shape: GetDurableExecutionRequest)
|
|
2609
|
+
o.output = Shapes::ShapeRef.new(shape: GetDurableExecutionResponse)
|
|
2610
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
2611
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
2612
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
2613
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2614
|
+
end)
|
|
2615
|
+
|
|
2616
|
+
api.add_operation(:get_durable_execution_history, Seahorse::Model::Operation.new.tap do |o|
|
|
2617
|
+
o.name = "GetDurableExecutionHistory"
|
|
2618
|
+
o.http_method = "GET"
|
|
2619
|
+
o.http_request_uri = "/2025-12-01/durable-executions/{DurableExecutionArn}/history"
|
|
2620
|
+
o.input = Shapes::ShapeRef.new(shape: GetDurableExecutionHistoryRequest)
|
|
2621
|
+
o.output = Shapes::ShapeRef.new(shape: GetDurableExecutionHistoryResponse)
|
|
2622
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
2623
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
2624
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
2625
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2626
|
+
o[:pager] = Aws::Pager.new(
|
|
2627
|
+
limit_key: "max_items",
|
|
2628
|
+
tokens: {
|
|
2629
|
+
"next_marker" => "marker"
|
|
2630
|
+
}
|
|
2631
|
+
)
|
|
2632
|
+
end)
|
|
2633
|
+
|
|
2634
|
+
api.add_operation(:get_durable_execution_state, Seahorse::Model::Operation.new.tap do |o|
|
|
2635
|
+
o.name = "GetDurableExecutionState"
|
|
2636
|
+
o.http_method = "GET"
|
|
2637
|
+
o.http_request_uri = "/2025-12-01/durable-executions/{DurableExecutionArn}/state"
|
|
2638
|
+
o.input = Shapes::ShapeRef.new(shape: GetDurableExecutionStateRequest)
|
|
2639
|
+
o.output = Shapes::ShapeRef.new(shape: GetDurableExecutionStateResponse)
|
|
2640
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
2641
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
2642
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
2643
|
+
o[:pager] = Aws::Pager.new(
|
|
2644
|
+
limit_key: "max_items",
|
|
2645
|
+
tokens: {
|
|
2646
|
+
"next_marker" => "marker"
|
|
2647
|
+
}
|
|
2648
|
+
)
|
|
2649
|
+
end)
|
|
2650
|
+
|
|
2137
2651
|
api.add_operation(:get_event_source_mapping, Seahorse::Model::Operation.new.tap do |o|
|
|
2138
2652
|
o.name = "GetEventSourceMapping"
|
|
2139
2653
|
o.http_method = "GET"
|
|
@@ -2351,6 +2865,7 @@ module Aws::Lambda
|
|
|
2351
2865
|
o.errors << Shapes::ShapeRef.new(shape: EFSMountTimeoutException)
|
|
2352
2866
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2353
2867
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestContentException)
|
|
2868
|
+
o.errors << Shapes::ShapeRef.new(shape: DurableExecutionAlreadyStartedException)
|
|
2354
2869
|
o.errors << Shapes::ShapeRef.new(shape: InvalidZipFileException)
|
|
2355
2870
|
o.errors << Shapes::ShapeRef.new(shape: EFSMountFailureException)
|
|
2356
2871
|
end)
|
|
@@ -2460,6 +2975,24 @@ module Aws::Lambda
|
|
|
2460
2975
|
)
|
|
2461
2976
|
end)
|
|
2462
2977
|
|
|
2978
|
+
api.add_operation(:list_durable_executions_by_function, Seahorse::Model::Operation.new.tap do |o|
|
|
2979
|
+
o.name = "ListDurableExecutionsByFunction"
|
|
2980
|
+
o.http_method = "GET"
|
|
2981
|
+
o.http_request_uri = "/2025-12-01/functions/{FunctionName}/durable-executions"
|
|
2982
|
+
o.input = Shapes::ShapeRef.new(shape: ListDurableExecutionsByFunctionRequest)
|
|
2983
|
+
o.output = Shapes::ShapeRef.new(shape: ListDurableExecutionsByFunctionResponse)
|
|
2984
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
2985
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
2986
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
2987
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2988
|
+
o[:pager] = Aws::Pager.new(
|
|
2989
|
+
limit_key: "max_items",
|
|
2990
|
+
tokens: {
|
|
2991
|
+
"next_marker" => "marker"
|
|
2992
|
+
}
|
|
2993
|
+
)
|
|
2994
|
+
end)
|
|
2995
|
+
|
|
2463
2996
|
api.add_operation(:list_event_source_mappings, Seahorse::Model::Operation.new.tap do |o|
|
|
2464
2997
|
o.name = "ListEventSourceMappings"
|
|
2465
2998
|
o.http_method = "GET"
|
|
@@ -2796,6 +3329,54 @@ module Aws::Lambda
|
|
|
2796
3329
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionFailedException)
|
|
2797
3330
|
end)
|
|
2798
3331
|
|
|
3332
|
+
api.add_operation(:send_durable_execution_callback_failure, Seahorse::Model::Operation.new.tap do |o|
|
|
3333
|
+
o.name = "SendDurableExecutionCallbackFailure"
|
|
3334
|
+
o.http_method = "POST"
|
|
3335
|
+
o.http_request_uri = "/2025-12-01/durable-execution-callbacks/{CallbackId}/fail"
|
|
3336
|
+
o.input = Shapes::ShapeRef.new(shape: SendDurableExecutionCallbackFailureRequest)
|
|
3337
|
+
o.output = Shapes::ShapeRef.new(shape: SendDurableExecutionCallbackFailureResponse)
|
|
3338
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
3339
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
3340
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
3341
|
+
o.errors << Shapes::ShapeRef.new(shape: CallbackTimeoutException)
|
|
3342
|
+
end)
|
|
3343
|
+
|
|
3344
|
+
api.add_operation(:send_durable_execution_callback_heartbeat, Seahorse::Model::Operation.new.tap do |o|
|
|
3345
|
+
o.name = "SendDurableExecutionCallbackHeartbeat"
|
|
3346
|
+
o.http_method = "POST"
|
|
3347
|
+
o.http_request_uri = "/2025-12-01/durable-execution-callbacks/{CallbackId}/heartbeat"
|
|
3348
|
+
o.input = Shapes::ShapeRef.new(shape: SendDurableExecutionCallbackHeartbeatRequest)
|
|
3349
|
+
o.output = Shapes::ShapeRef.new(shape: SendDurableExecutionCallbackHeartbeatResponse)
|
|
3350
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
3351
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
3352
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
3353
|
+
o.errors << Shapes::ShapeRef.new(shape: CallbackTimeoutException)
|
|
3354
|
+
end)
|
|
3355
|
+
|
|
3356
|
+
api.add_operation(:send_durable_execution_callback_success, Seahorse::Model::Operation.new.tap do |o|
|
|
3357
|
+
o.name = "SendDurableExecutionCallbackSuccess"
|
|
3358
|
+
o.http_method = "POST"
|
|
3359
|
+
o.http_request_uri = "/2025-12-01/durable-execution-callbacks/{CallbackId}/succeed"
|
|
3360
|
+
o.input = Shapes::ShapeRef.new(shape: SendDurableExecutionCallbackSuccessRequest)
|
|
3361
|
+
o.output = Shapes::ShapeRef.new(shape: SendDurableExecutionCallbackSuccessResponse)
|
|
3362
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
3363
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
3364
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
3365
|
+
o.errors << Shapes::ShapeRef.new(shape: CallbackTimeoutException)
|
|
3366
|
+
end)
|
|
3367
|
+
|
|
3368
|
+
api.add_operation(:stop_durable_execution, Seahorse::Model::Operation.new.tap do |o|
|
|
3369
|
+
o.name = "StopDurableExecution"
|
|
3370
|
+
o.http_method = "POST"
|
|
3371
|
+
o.http_request_uri = "/2025-12-01/durable-executions/{DurableExecutionArn}/stop"
|
|
3372
|
+
o.input = Shapes::ShapeRef.new(shape: StopDurableExecutionRequest)
|
|
3373
|
+
o.output = Shapes::ShapeRef.new(shape: StopDurableExecutionResponse)
|
|
3374
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
|
3375
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
3376
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
3377
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
3378
|
+
end)
|
|
3379
|
+
|
|
2799
3380
|
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
2800
3381
|
o.name = "TagResource"
|
|
2801
3382
|
o.http_method = "POST"
|