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
data/sig/types.rbs
CHANGED
|
@@ -87,6 +87,47 @@ module Aws::Lambda
|
|
|
87
87
|
SENSITIVE: []
|
|
88
88
|
end
|
|
89
89
|
|
|
90
|
+
class CallbackDetails
|
|
91
|
+
attr_accessor callback_id: ::String
|
|
92
|
+
attr_accessor result: ::String
|
|
93
|
+
attr_accessor error: Types::ErrorObject
|
|
94
|
+
SENSITIVE: [:result]
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
class CallbackFailedDetails
|
|
98
|
+
attr_accessor error: Types::EventError
|
|
99
|
+
SENSITIVE: []
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
class CallbackOptions
|
|
103
|
+
attr_accessor timeout_seconds: ::Integer
|
|
104
|
+
attr_accessor heartbeat_timeout_seconds: ::Integer
|
|
105
|
+
SENSITIVE: []
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
class CallbackStartedDetails
|
|
109
|
+
attr_accessor callback_id: ::String
|
|
110
|
+
attr_accessor heartbeat_timeout: ::Integer
|
|
111
|
+
attr_accessor timeout: ::Integer
|
|
112
|
+
SENSITIVE: []
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
class CallbackSucceededDetails
|
|
116
|
+
attr_accessor result: Types::EventResult
|
|
117
|
+
SENSITIVE: []
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
class CallbackTimedOutDetails
|
|
121
|
+
attr_accessor error: Types::EventError
|
|
122
|
+
SENSITIVE: []
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
class CallbackTimeoutException
|
|
126
|
+
attr_accessor type: ::String
|
|
127
|
+
attr_accessor message: ::String
|
|
128
|
+
SENSITIVE: []
|
|
129
|
+
end
|
|
130
|
+
|
|
90
131
|
class CapacityProvider
|
|
91
132
|
attr_accessor capacity_provider_arn: ::String
|
|
92
133
|
attr_accessor state: ("Pending" | "Active" | "Failed" | "Deleting")
|
|
@@ -128,6 +169,67 @@ module Aws::Lambda
|
|
|
128
169
|
SENSITIVE: []
|
|
129
170
|
end
|
|
130
171
|
|
|
172
|
+
class ChainedInvokeDetails
|
|
173
|
+
attr_accessor result: ::String
|
|
174
|
+
attr_accessor error: Types::ErrorObject
|
|
175
|
+
SENSITIVE: [:result]
|
|
176
|
+
end
|
|
177
|
+
|
|
178
|
+
class ChainedInvokeFailedDetails
|
|
179
|
+
attr_accessor error: Types::EventError
|
|
180
|
+
SENSITIVE: []
|
|
181
|
+
end
|
|
182
|
+
|
|
183
|
+
class ChainedInvokeOptions
|
|
184
|
+
attr_accessor function_name: ::String
|
|
185
|
+
attr_accessor tenant_id: ::String
|
|
186
|
+
SENSITIVE: []
|
|
187
|
+
end
|
|
188
|
+
|
|
189
|
+
class ChainedInvokeStartedDetails
|
|
190
|
+
attr_accessor function_name: ::String
|
|
191
|
+
attr_accessor tenant_id: ::String
|
|
192
|
+
attr_accessor input: Types::EventInput
|
|
193
|
+
attr_accessor executed_version: ::String
|
|
194
|
+
attr_accessor durable_execution_arn: ::String
|
|
195
|
+
SENSITIVE: []
|
|
196
|
+
end
|
|
197
|
+
|
|
198
|
+
class ChainedInvokeStoppedDetails
|
|
199
|
+
attr_accessor error: Types::EventError
|
|
200
|
+
SENSITIVE: []
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
class ChainedInvokeSucceededDetails
|
|
204
|
+
attr_accessor result: Types::EventResult
|
|
205
|
+
SENSITIVE: []
|
|
206
|
+
end
|
|
207
|
+
|
|
208
|
+
class ChainedInvokeTimedOutDetails
|
|
209
|
+
attr_accessor error: Types::EventError
|
|
210
|
+
SENSITIVE: []
|
|
211
|
+
end
|
|
212
|
+
|
|
213
|
+
class CheckpointDurableExecutionRequest
|
|
214
|
+
attr_accessor durable_execution_arn: ::String
|
|
215
|
+
attr_accessor checkpoint_token: ::String
|
|
216
|
+
attr_accessor updates: ::Array[Types::OperationUpdate]
|
|
217
|
+
attr_accessor client_token: ::String
|
|
218
|
+
SENSITIVE: []
|
|
219
|
+
end
|
|
220
|
+
|
|
221
|
+
class CheckpointDurableExecutionResponse
|
|
222
|
+
attr_accessor checkpoint_token: ::String
|
|
223
|
+
attr_accessor new_execution_state: Types::CheckpointUpdatedExecutionState
|
|
224
|
+
SENSITIVE: []
|
|
225
|
+
end
|
|
226
|
+
|
|
227
|
+
class CheckpointUpdatedExecutionState
|
|
228
|
+
attr_accessor operations: ::Array[Types::Operation]
|
|
229
|
+
attr_accessor next_marker: ::String
|
|
230
|
+
SENSITIVE: []
|
|
231
|
+
end
|
|
232
|
+
|
|
131
233
|
class CodeSigningConfig
|
|
132
234
|
attr_accessor code_signing_config_id: ::String
|
|
133
235
|
attr_accessor code_signing_config_arn: ::String
|
|
@@ -166,6 +268,31 @@ module Aws::Lambda
|
|
|
166
268
|
SENSITIVE: []
|
|
167
269
|
end
|
|
168
270
|
|
|
271
|
+
class ContextDetails
|
|
272
|
+
attr_accessor replay_children: bool
|
|
273
|
+
attr_accessor result: ::String
|
|
274
|
+
attr_accessor error: Types::ErrorObject
|
|
275
|
+
SENSITIVE: [:result]
|
|
276
|
+
end
|
|
277
|
+
|
|
278
|
+
class ContextFailedDetails
|
|
279
|
+
attr_accessor error: Types::EventError
|
|
280
|
+
SENSITIVE: []
|
|
281
|
+
end
|
|
282
|
+
|
|
283
|
+
class ContextOptions
|
|
284
|
+
attr_accessor replay_children: bool
|
|
285
|
+
SENSITIVE: []
|
|
286
|
+
end
|
|
287
|
+
|
|
288
|
+
class ContextStartedDetails < Aws::EmptyStructure
|
|
289
|
+
end
|
|
290
|
+
|
|
291
|
+
class ContextSucceededDetails
|
|
292
|
+
attr_accessor result: Types::EventResult
|
|
293
|
+
SENSITIVE: []
|
|
294
|
+
end
|
|
295
|
+
|
|
169
296
|
class Cors
|
|
170
297
|
attr_accessor allow_credentials: bool
|
|
171
298
|
attr_accessor allow_headers: ::Array[::String]
|
|
@@ -272,6 +399,7 @@ module Aws::Lambda
|
|
|
272
399
|
attr_accessor logging_config: Types::LoggingConfig
|
|
273
400
|
attr_accessor capacity_provider_config: Types::CapacityProviderConfig
|
|
274
401
|
attr_accessor publish_to: ("LATEST_PUBLISHED")
|
|
402
|
+
attr_accessor durable_config: Types::DurableConfig
|
|
275
403
|
attr_accessor tenancy_config: Types::TenancyConfig
|
|
276
404
|
SENSITIVE: []
|
|
277
405
|
end
|
|
@@ -387,6 +515,18 @@ module Aws::Lambda
|
|
|
387
515
|
SENSITIVE: []
|
|
388
516
|
end
|
|
389
517
|
|
|
518
|
+
class DurableConfig
|
|
519
|
+
attr_accessor retention_period_in_days: ::Integer
|
|
520
|
+
attr_accessor execution_timeout: ::Integer
|
|
521
|
+
SENSITIVE: []
|
|
522
|
+
end
|
|
523
|
+
|
|
524
|
+
class DurableExecutionAlreadyStartedException
|
|
525
|
+
attr_accessor type: ::String
|
|
526
|
+
attr_accessor message: ::String
|
|
527
|
+
SENSITIVE: []
|
|
528
|
+
end
|
|
529
|
+
|
|
390
530
|
class EC2AccessDeniedException
|
|
391
531
|
attr_accessor type: ::String
|
|
392
532
|
attr_accessor message: ::String
|
|
@@ -458,6 +598,67 @@ module Aws::Lambda
|
|
|
458
598
|
SENSITIVE: []
|
|
459
599
|
end
|
|
460
600
|
|
|
601
|
+
class ErrorObject
|
|
602
|
+
attr_accessor error_message: ::String
|
|
603
|
+
attr_accessor error_type: ::String
|
|
604
|
+
attr_accessor error_data: ::String
|
|
605
|
+
attr_accessor stack_trace: ::Array[::String]
|
|
606
|
+
SENSITIVE: [:error_message, :error_type, :error_data]
|
|
607
|
+
end
|
|
608
|
+
|
|
609
|
+
class Event
|
|
610
|
+
attr_accessor event_type: ("ExecutionStarted" | "ExecutionSucceeded" | "ExecutionFailed" | "ExecutionTimedOut" | "ExecutionStopped" | "ContextStarted" | "ContextSucceeded" | "ContextFailed" | "WaitStarted" | "WaitSucceeded" | "WaitCancelled" | "StepStarted" | "StepSucceeded" | "StepFailed" | "ChainedInvokeStarted" | "ChainedInvokeSucceeded" | "ChainedInvokeFailed" | "ChainedInvokeTimedOut" | "ChainedInvokeStopped" | "CallbackStarted" | "CallbackSucceeded" | "CallbackFailed" | "CallbackTimedOut" | "InvocationCompleted")
|
|
611
|
+
attr_accessor sub_type: ::String
|
|
612
|
+
attr_accessor event_id: ::Integer
|
|
613
|
+
attr_accessor id: ::String
|
|
614
|
+
attr_accessor name: ::String
|
|
615
|
+
attr_accessor event_timestamp: ::Time
|
|
616
|
+
attr_accessor parent_id: ::String
|
|
617
|
+
attr_accessor execution_started_details: Types::ExecutionStartedDetails
|
|
618
|
+
attr_accessor execution_succeeded_details: Types::ExecutionSucceededDetails
|
|
619
|
+
attr_accessor execution_failed_details: Types::ExecutionFailedDetails
|
|
620
|
+
attr_accessor execution_timed_out_details: Types::ExecutionTimedOutDetails
|
|
621
|
+
attr_accessor execution_stopped_details: Types::ExecutionStoppedDetails
|
|
622
|
+
attr_accessor context_started_details: Types::ContextStartedDetails
|
|
623
|
+
attr_accessor context_succeeded_details: Types::ContextSucceededDetails
|
|
624
|
+
attr_accessor context_failed_details: Types::ContextFailedDetails
|
|
625
|
+
attr_accessor wait_started_details: Types::WaitStartedDetails
|
|
626
|
+
attr_accessor wait_succeeded_details: Types::WaitSucceededDetails
|
|
627
|
+
attr_accessor wait_cancelled_details: Types::WaitCancelledDetails
|
|
628
|
+
attr_accessor step_started_details: Types::StepStartedDetails
|
|
629
|
+
attr_accessor step_succeeded_details: Types::StepSucceededDetails
|
|
630
|
+
attr_accessor step_failed_details: Types::StepFailedDetails
|
|
631
|
+
attr_accessor chained_invoke_started_details: Types::ChainedInvokeStartedDetails
|
|
632
|
+
attr_accessor chained_invoke_succeeded_details: Types::ChainedInvokeSucceededDetails
|
|
633
|
+
attr_accessor chained_invoke_failed_details: Types::ChainedInvokeFailedDetails
|
|
634
|
+
attr_accessor chained_invoke_timed_out_details: Types::ChainedInvokeTimedOutDetails
|
|
635
|
+
attr_accessor chained_invoke_stopped_details: Types::ChainedInvokeStoppedDetails
|
|
636
|
+
attr_accessor callback_started_details: Types::CallbackStartedDetails
|
|
637
|
+
attr_accessor callback_succeeded_details: Types::CallbackSucceededDetails
|
|
638
|
+
attr_accessor callback_failed_details: Types::CallbackFailedDetails
|
|
639
|
+
attr_accessor callback_timed_out_details: Types::CallbackTimedOutDetails
|
|
640
|
+
attr_accessor invocation_completed_details: Types::InvocationCompletedDetails
|
|
641
|
+
SENSITIVE: []
|
|
642
|
+
end
|
|
643
|
+
|
|
644
|
+
class EventError
|
|
645
|
+
attr_accessor payload: Types::ErrorObject
|
|
646
|
+
attr_accessor truncated: bool
|
|
647
|
+
SENSITIVE: []
|
|
648
|
+
end
|
|
649
|
+
|
|
650
|
+
class EventInput
|
|
651
|
+
attr_accessor payload: ::String
|
|
652
|
+
attr_accessor truncated: bool
|
|
653
|
+
SENSITIVE: [:payload]
|
|
654
|
+
end
|
|
655
|
+
|
|
656
|
+
class EventResult
|
|
657
|
+
attr_accessor payload: ::String
|
|
658
|
+
attr_accessor truncated: bool
|
|
659
|
+
SENSITIVE: [:payload]
|
|
660
|
+
end
|
|
661
|
+
|
|
461
662
|
class EventSourceMappingConfiguration
|
|
462
663
|
attr_accessor uuid: ::String
|
|
463
664
|
attr_accessor starting_position: ("TRIM_HORIZON" | "LATEST" | "AT_TIMESTAMP")
|
|
@@ -499,6 +700,47 @@ module Aws::Lambda
|
|
|
499
700
|
SENSITIVE: []
|
|
500
701
|
end
|
|
501
702
|
|
|
703
|
+
class Execution
|
|
704
|
+
attr_accessor durable_execution_arn: ::String
|
|
705
|
+
attr_accessor durable_execution_name: ::String
|
|
706
|
+
attr_accessor function_arn: ::String
|
|
707
|
+
attr_accessor status: ("RUNNING" | "SUCCEEDED" | "FAILED" | "TIMED_OUT" | "STOPPED")
|
|
708
|
+
attr_accessor start_timestamp: ::Time
|
|
709
|
+
attr_accessor end_timestamp: ::Time
|
|
710
|
+
SENSITIVE: []
|
|
711
|
+
end
|
|
712
|
+
|
|
713
|
+
class ExecutionDetails
|
|
714
|
+
attr_accessor input_payload: ::String
|
|
715
|
+
SENSITIVE: [:input_payload]
|
|
716
|
+
end
|
|
717
|
+
|
|
718
|
+
class ExecutionFailedDetails
|
|
719
|
+
attr_accessor error: Types::EventError
|
|
720
|
+
SENSITIVE: []
|
|
721
|
+
end
|
|
722
|
+
|
|
723
|
+
class ExecutionStartedDetails
|
|
724
|
+
attr_accessor input: Types::EventInput
|
|
725
|
+
attr_accessor execution_timeout: ::Integer
|
|
726
|
+
SENSITIVE: []
|
|
727
|
+
end
|
|
728
|
+
|
|
729
|
+
class ExecutionStoppedDetails
|
|
730
|
+
attr_accessor error: Types::EventError
|
|
731
|
+
SENSITIVE: []
|
|
732
|
+
end
|
|
733
|
+
|
|
734
|
+
class ExecutionSucceededDetails
|
|
735
|
+
attr_accessor result: Types::EventResult
|
|
736
|
+
SENSITIVE: []
|
|
737
|
+
end
|
|
738
|
+
|
|
739
|
+
class ExecutionTimedOutDetails
|
|
740
|
+
attr_accessor error: Types::EventError
|
|
741
|
+
SENSITIVE: []
|
|
742
|
+
end
|
|
743
|
+
|
|
502
744
|
class FileSystemConfig
|
|
503
745
|
attr_accessor arn: ::String
|
|
504
746
|
attr_accessor local_mount_path: ::String
|
|
@@ -563,7 +805,7 @@ module Aws::Lambda
|
|
|
563
805
|
attr_accessor layers: ::Array[Types::Layer]
|
|
564
806
|
attr_accessor state: ("Pending" | "Active" | "Inactive" | "Failed" | "Deactivating" | "Deactivated" | "ActiveNonInvocable" | "Deleting")
|
|
565
807
|
attr_accessor state_reason: ::String
|
|
566
|
-
attr_accessor state_reason_code: ("Idle" | "Creating" | "Restoring" | "EniLimitExceeded" | "InsufficientRolePermissions" | "InvalidConfiguration" | "InternalError" | "SubnetOutOfIPAddresses" | "InvalidSubnet" | "InvalidSecurityGroup" | "ImageDeleted" | "ImageAccessDenied" | "InvalidImage" | "KMSKeyAccessDenied" | "KMSKeyNotFound" | "InvalidStateKMSKey" | "DisabledKMSKey" | "EFSIOError" | "EFSMountConnectivityError" | "EFSMountFailure" | "EFSMountTimeout" | "InvalidRuntime" | "InvalidZipFileException" | "FunctionError" | "VcpuLimitExceeded" | "CapacityProviderScalingLimitExceeded" | "InsufficientCapacity" | "EC2RequestLimitExceeded" | "FunctionError.InitTimeout" | "FunctionError.RuntimeInitError" | "FunctionError.ExtensionInitError" | "FunctionError.InvalidEntryPoint" | "FunctionError.InvalidWorkingDirectory" | "FunctionError.PermissionDenied" | "FunctionError.TooManyExtensions" | "FunctionError.InitResourceExhausted")
|
|
808
|
+
attr_accessor state_reason_code: ("Idle" | "Creating" | "Restoring" | "EniLimitExceeded" | "InsufficientRolePermissions" | "InvalidConfiguration" | "InternalError" | "SubnetOutOfIPAddresses" | "InvalidSubnet" | "InvalidSecurityGroup" | "ImageDeleted" | "ImageAccessDenied" | "InvalidImage" | "KMSKeyAccessDenied" | "KMSKeyNotFound" | "InvalidStateKMSKey" | "DisabledKMSKey" | "EFSIOError" | "EFSMountConnectivityError" | "EFSMountFailure" | "EFSMountTimeout" | "InvalidRuntime" | "InvalidZipFileException" | "FunctionError" | "DrainingDurableExecutions" | "VcpuLimitExceeded" | "CapacityProviderScalingLimitExceeded" | "InsufficientCapacity" | "EC2RequestLimitExceeded" | "FunctionError.InitTimeout" | "FunctionError.RuntimeInitError" | "FunctionError.ExtensionInitError" | "FunctionError.InvalidEntryPoint" | "FunctionError.InvalidWorkingDirectory" | "FunctionError.PermissionDenied" | "FunctionError.TooManyExtensions" | "FunctionError.InitResourceExhausted")
|
|
567
809
|
attr_accessor last_update_status: ("Successful" | "Failed" | "InProgress")
|
|
568
810
|
attr_accessor last_update_status_reason: ::String
|
|
569
811
|
attr_accessor last_update_status_reason_code: ("EniLimitExceeded" | "InsufficientRolePermissions" | "InvalidConfiguration" | "InternalError" | "SubnetOutOfIPAddresses" | "InvalidSubnet" | "InvalidSecurityGroup" | "ImageDeleted" | "ImageAccessDenied" | "InvalidImage" | "KMSKeyAccessDenied" | "KMSKeyNotFound" | "InvalidStateKMSKey" | "DisabledKMSKey" | "EFSIOError" | "EFSMountConnectivityError" | "EFSMountFailure" | "EFSMountTimeout" | "InvalidRuntime" | "InvalidZipFileException" | "FunctionError" | "VcpuLimitExceeded" | "CapacityProviderScalingLimitExceeded" | "InsufficientCapacity" | "EC2RequestLimitExceeded" | "FunctionError.InitTimeout" | "FunctionError.RuntimeInitError" | "FunctionError.ExtensionInitError" | "FunctionError.InvalidEntryPoint" | "FunctionError.InvalidWorkingDirectory" | "FunctionError.PermissionDenied" | "FunctionError.TooManyExtensions" | "FunctionError.InitResourceExhausted")
|
|
@@ -579,6 +821,7 @@ module Aws::Lambda
|
|
|
579
821
|
attr_accessor logging_config: Types::LoggingConfig
|
|
580
822
|
attr_accessor capacity_provider_config: Types::CapacityProviderConfig
|
|
581
823
|
attr_accessor config_sha_256: ::String
|
|
824
|
+
attr_accessor durable_config: Types::DurableConfig
|
|
582
825
|
attr_accessor tenancy_config: Types::TenancyConfig
|
|
583
826
|
SENSITIVE: []
|
|
584
827
|
end
|
|
@@ -656,6 +899,55 @@ module Aws::Lambda
|
|
|
656
899
|
SENSITIVE: []
|
|
657
900
|
end
|
|
658
901
|
|
|
902
|
+
class GetDurableExecutionHistoryRequest
|
|
903
|
+
attr_accessor durable_execution_arn: ::String
|
|
904
|
+
attr_accessor include_execution_data: bool
|
|
905
|
+
attr_accessor max_items: ::Integer
|
|
906
|
+
attr_accessor marker: ::String
|
|
907
|
+
attr_accessor reverse_order: bool
|
|
908
|
+
SENSITIVE: []
|
|
909
|
+
end
|
|
910
|
+
|
|
911
|
+
class GetDurableExecutionHistoryResponse
|
|
912
|
+
attr_accessor events: ::Array[Types::Event]
|
|
913
|
+
attr_accessor next_marker: ::String
|
|
914
|
+
SENSITIVE: []
|
|
915
|
+
end
|
|
916
|
+
|
|
917
|
+
class GetDurableExecutionRequest
|
|
918
|
+
attr_accessor durable_execution_arn: ::String
|
|
919
|
+
SENSITIVE: []
|
|
920
|
+
end
|
|
921
|
+
|
|
922
|
+
class GetDurableExecutionResponse
|
|
923
|
+
attr_accessor durable_execution_arn: ::String
|
|
924
|
+
attr_accessor durable_execution_name: ::String
|
|
925
|
+
attr_accessor function_arn: ::String
|
|
926
|
+
attr_accessor input_payload: ::String
|
|
927
|
+
attr_accessor result: ::String
|
|
928
|
+
attr_accessor error: Types::ErrorObject
|
|
929
|
+
attr_accessor start_timestamp: ::Time
|
|
930
|
+
attr_accessor status: ("RUNNING" | "SUCCEEDED" | "FAILED" | "TIMED_OUT" | "STOPPED")
|
|
931
|
+
attr_accessor end_timestamp: ::Time
|
|
932
|
+
attr_accessor version: ::String
|
|
933
|
+
attr_accessor trace_header: Types::TraceHeader
|
|
934
|
+
SENSITIVE: [:input_payload, :result]
|
|
935
|
+
end
|
|
936
|
+
|
|
937
|
+
class GetDurableExecutionStateRequest
|
|
938
|
+
attr_accessor durable_execution_arn: ::String
|
|
939
|
+
attr_accessor checkpoint_token: ::String
|
|
940
|
+
attr_accessor marker: ::String
|
|
941
|
+
attr_accessor max_items: ::Integer
|
|
942
|
+
SENSITIVE: []
|
|
943
|
+
end
|
|
944
|
+
|
|
945
|
+
class GetDurableExecutionStateResponse
|
|
946
|
+
attr_accessor operations: ::Array[Types::Operation]
|
|
947
|
+
attr_accessor next_marker: ::String
|
|
948
|
+
SENSITIVE: []
|
|
949
|
+
end
|
|
950
|
+
|
|
659
951
|
class GetEventSourceMappingRequest
|
|
660
952
|
attr_accessor uuid: ::String
|
|
661
953
|
SENSITIVE: []
|
|
@@ -894,11 +1186,20 @@ module Aws::Lambda
|
|
|
894
1186
|
SENSITIVE: []
|
|
895
1187
|
end
|
|
896
1188
|
|
|
1189
|
+
class InvocationCompletedDetails
|
|
1190
|
+
attr_accessor start_timestamp: ::Time
|
|
1191
|
+
attr_accessor end_timestamp: ::Time
|
|
1192
|
+
attr_accessor request_id: ::String
|
|
1193
|
+
attr_accessor error: Types::EventError
|
|
1194
|
+
SENSITIVE: []
|
|
1195
|
+
end
|
|
1196
|
+
|
|
897
1197
|
class InvocationRequest
|
|
898
1198
|
attr_accessor function_name: ::String
|
|
899
1199
|
attr_accessor invocation_type: ("Event" | "RequestResponse" | "DryRun")
|
|
900
1200
|
attr_accessor log_type: ("None" | "Tail")
|
|
901
1201
|
attr_accessor client_context: ::String
|
|
1202
|
+
attr_accessor durable_execution_name: ::String
|
|
902
1203
|
attr_accessor payload: ::String
|
|
903
1204
|
attr_accessor qualifier: ::String
|
|
904
1205
|
attr_accessor tenant_id: ::String
|
|
@@ -911,6 +1212,7 @@ module Aws::Lambda
|
|
|
911
1212
|
attr_accessor log_result: ::String
|
|
912
1213
|
attr_accessor payload: ::String
|
|
913
1214
|
attr_accessor executed_version: ::String
|
|
1215
|
+
attr_accessor durable_execution_arn: ::String
|
|
914
1216
|
SENSITIVE: [:payload]
|
|
915
1217
|
end
|
|
916
1218
|
|
|
@@ -1090,6 +1392,25 @@ module Aws::Lambda
|
|
|
1090
1392
|
SENSITIVE: []
|
|
1091
1393
|
end
|
|
1092
1394
|
|
|
1395
|
+
class ListDurableExecutionsByFunctionRequest
|
|
1396
|
+
attr_accessor function_name: ::String
|
|
1397
|
+
attr_accessor qualifier: ::String
|
|
1398
|
+
attr_accessor durable_execution_name: ::String
|
|
1399
|
+
attr_accessor statuses: ::Array[("RUNNING" | "SUCCEEDED" | "FAILED" | "TIMED_OUT" | "STOPPED")]
|
|
1400
|
+
attr_accessor started_after: ::Time
|
|
1401
|
+
attr_accessor started_before: ::Time
|
|
1402
|
+
attr_accessor reverse_order: bool
|
|
1403
|
+
attr_accessor marker: ::String
|
|
1404
|
+
attr_accessor max_items: ::Integer
|
|
1405
|
+
SENSITIVE: []
|
|
1406
|
+
end
|
|
1407
|
+
|
|
1408
|
+
class ListDurableExecutionsByFunctionResponse
|
|
1409
|
+
attr_accessor durable_executions: ::Array[Types::Execution]
|
|
1410
|
+
attr_accessor next_marker: ::String
|
|
1411
|
+
SENSITIVE: []
|
|
1412
|
+
end
|
|
1413
|
+
|
|
1093
1414
|
class ListEventSourceMappingsRequest
|
|
1094
1415
|
attr_accessor event_source_arn: ::String
|
|
1095
1416
|
attr_accessor function_name: ::String
|
|
@@ -1260,6 +1581,41 @@ module Aws::Lambda
|
|
|
1260
1581
|
SENSITIVE: []
|
|
1261
1582
|
end
|
|
1262
1583
|
|
|
1584
|
+
class Operation
|
|
1585
|
+
attr_accessor id: ::String
|
|
1586
|
+
attr_accessor parent_id: ::String
|
|
1587
|
+
attr_accessor name: ::String
|
|
1588
|
+
attr_accessor type: ("EXECUTION" | "CONTEXT" | "STEP" | "WAIT" | "CALLBACK" | "CHAINED_INVOKE")
|
|
1589
|
+
attr_accessor sub_type: ::String
|
|
1590
|
+
attr_accessor start_timestamp: ::Time
|
|
1591
|
+
attr_accessor end_timestamp: ::Time
|
|
1592
|
+
attr_accessor status: ("STARTED" | "PENDING" | "READY" | "SUCCEEDED" | "FAILED" | "CANCELLED" | "TIMED_OUT" | "STOPPED")
|
|
1593
|
+
attr_accessor execution_details: Types::ExecutionDetails
|
|
1594
|
+
attr_accessor context_details: Types::ContextDetails
|
|
1595
|
+
attr_accessor step_details: Types::StepDetails
|
|
1596
|
+
attr_accessor wait_details: Types::WaitDetails
|
|
1597
|
+
attr_accessor callback_details: Types::CallbackDetails
|
|
1598
|
+
attr_accessor chained_invoke_details: Types::ChainedInvokeDetails
|
|
1599
|
+
SENSITIVE: []
|
|
1600
|
+
end
|
|
1601
|
+
|
|
1602
|
+
class OperationUpdate
|
|
1603
|
+
attr_accessor id: ::String
|
|
1604
|
+
attr_accessor parent_id: ::String
|
|
1605
|
+
attr_accessor name: ::String
|
|
1606
|
+
attr_accessor type: ("EXECUTION" | "CONTEXT" | "STEP" | "WAIT" | "CALLBACK" | "CHAINED_INVOKE")
|
|
1607
|
+
attr_accessor sub_type: ::String
|
|
1608
|
+
attr_accessor action: ("START" | "SUCCEED" | "FAIL" | "RETRY" | "CANCEL")
|
|
1609
|
+
attr_accessor payload: ::String
|
|
1610
|
+
attr_accessor error: Types::ErrorObject
|
|
1611
|
+
attr_accessor context_options: Types::ContextOptions
|
|
1612
|
+
attr_accessor step_options: Types::StepOptions
|
|
1613
|
+
attr_accessor wait_options: Types::WaitOptions
|
|
1614
|
+
attr_accessor callback_options: Types::CallbackOptions
|
|
1615
|
+
attr_accessor chained_invoke_options: Types::ChainedInvokeOptions
|
|
1616
|
+
SENSITIVE: [:payload]
|
|
1617
|
+
end
|
|
1618
|
+
|
|
1263
1619
|
class PolicyLengthExceededException
|
|
1264
1620
|
attr_accessor type: ::String
|
|
1265
1621
|
attr_accessor message: ::String
|
|
@@ -1462,6 +1818,12 @@ module Aws::Lambda
|
|
|
1462
1818
|
SENSITIVE: []
|
|
1463
1819
|
end
|
|
1464
1820
|
|
|
1821
|
+
class RetryDetails
|
|
1822
|
+
attr_accessor current_attempt: ::Integer
|
|
1823
|
+
attr_accessor next_attempt_delay_seconds: ::Integer
|
|
1824
|
+
SENSITIVE: []
|
|
1825
|
+
end
|
|
1826
|
+
|
|
1465
1827
|
class RuntimeVersionConfig
|
|
1466
1828
|
attr_accessor runtime_version_arn: ::String
|
|
1467
1829
|
attr_accessor error: Types::RuntimeVersionError
|
|
@@ -1490,6 +1852,32 @@ module Aws::Lambda
|
|
|
1490
1852
|
SENSITIVE: []
|
|
1491
1853
|
end
|
|
1492
1854
|
|
|
1855
|
+
class SendDurableExecutionCallbackFailureRequest
|
|
1856
|
+
attr_accessor callback_id: ::String
|
|
1857
|
+
attr_accessor error: Types::ErrorObject
|
|
1858
|
+
SENSITIVE: []
|
|
1859
|
+
end
|
|
1860
|
+
|
|
1861
|
+
class SendDurableExecutionCallbackFailureResponse < Aws::EmptyStructure
|
|
1862
|
+
end
|
|
1863
|
+
|
|
1864
|
+
class SendDurableExecutionCallbackHeartbeatRequest
|
|
1865
|
+
attr_accessor callback_id: ::String
|
|
1866
|
+
SENSITIVE: []
|
|
1867
|
+
end
|
|
1868
|
+
|
|
1869
|
+
class SendDurableExecutionCallbackHeartbeatResponse < Aws::EmptyStructure
|
|
1870
|
+
end
|
|
1871
|
+
|
|
1872
|
+
class SendDurableExecutionCallbackSuccessRequest
|
|
1873
|
+
attr_accessor callback_id: ::String
|
|
1874
|
+
attr_accessor result: ::String
|
|
1875
|
+
SENSITIVE: [:result]
|
|
1876
|
+
end
|
|
1877
|
+
|
|
1878
|
+
class SendDurableExecutionCallbackSuccessResponse < Aws::EmptyStructure
|
|
1879
|
+
end
|
|
1880
|
+
|
|
1493
1881
|
class SerializedRequestEntityTooLargeException
|
|
1494
1882
|
attr_accessor type: ::String
|
|
1495
1883
|
attr_accessor message: ::String
|
|
@@ -1537,6 +1925,45 @@ module Aws::Lambda
|
|
|
1537
1925
|
SENSITIVE: []
|
|
1538
1926
|
end
|
|
1539
1927
|
|
|
1928
|
+
class StepDetails
|
|
1929
|
+
attr_accessor attempt: ::Integer
|
|
1930
|
+
attr_accessor next_attempt_timestamp: ::Time
|
|
1931
|
+
attr_accessor result: ::String
|
|
1932
|
+
attr_accessor error: Types::ErrorObject
|
|
1933
|
+
SENSITIVE: [:result]
|
|
1934
|
+
end
|
|
1935
|
+
|
|
1936
|
+
class StepFailedDetails
|
|
1937
|
+
attr_accessor error: Types::EventError
|
|
1938
|
+
attr_accessor retry_details: Types::RetryDetails
|
|
1939
|
+
SENSITIVE: []
|
|
1940
|
+
end
|
|
1941
|
+
|
|
1942
|
+
class StepOptions
|
|
1943
|
+
attr_accessor next_attempt_delay_seconds: ::Integer
|
|
1944
|
+
SENSITIVE: []
|
|
1945
|
+
end
|
|
1946
|
+
|
|
1947
|
+
class StepStartedDetails < Aws::EmptyStructure
|
|
1948
|
+
end
|
|
1949
|
+
|
|
1950
|
+
class StepSucceededDetails
|
|
1951
|
+
attr_accessor result: Types::EventResult
|
|
1952
|
+
attr_accessor retry_details: Types::RetryDetails
|
|
1953
|
+
SENSITIVE: []
|
|
1954
|
+
end
|
|
1955
|
+
|
|
1956
|
+
class StopDurableExecutionRequest
|
|
1957
|
+
attr_accessor durable_execution_arn: ::String
|
|
1958
|
+
attr_accessor error: Types::ErrorObject
|
|
1959
|
+
SENSITIVE: []
|
|
1960
|
+
end
|
|
1961
|
+
|
|
1962
|
+
class StopDurableExecutionResponse
|
|
1963
|
+
attr_accessor stop_timestamp: ::Time
|
|
1964
|
+
SENSITIVE: []
|
|
1965
|
+
end
|
|
1966
|
+
|
|
1540
1967
|
class SubnetIPAddressLimitReachedException
|
|
1541
1968
|
attr_accessor type: ::String
|
|
1542
1969
|
attr_accessor message: ::String
|
|
@@ -1574,6 +2001,11 @@ module Aws::Lambda
|
|
|
1574
2001
|
SENSITIVE: []
|
|
1575
2002
|
end
|
|
1576
2003
|
|
|
2004
|
+
class TraceHeader
|
|
2005
|
+
attr_accessor x_amzn_trace_id: ::String
|
|
2006
|
+
SENSITIVE: []
|
|
2007
|
+
end
|
|
2008
|
+
|
|
1577
2009
|
class TracingConfig
|
|
1578
2010
|
attr_accessor mode: ("Active" | "PassThrough")
|
|
1579
2011
|
SENSITIVE: []
|
|
@@ -1692,6 +2124,7 @@ module Aws::Lambda
|
|
|
1692
2124
|
attr_accessor snap_start: Types::SnapStart
|
|
1693
2125
|
attr_accessor logging_config: Types::LoggingConfig
|
|
1694
2126
|
attr_accessor capacity_provider_config: Types::CapacityProviderConfig
|
|
2127
|
+
attr_accessor durable_config: Types::DurableConfig
|
|
1695
2128
|
SENSITIVE: []
|
|
1696
2129
|
end
|
|
1697
2130
|
|
|
@@ -1739,6 +2172,32 @@ module Aws::Lambda
|
|
|
1739
2172
|
SENSITIVE: []
|
|
1740
2173
|
end
|
|
1741
2174
|
|
|
2175
|
+
class WaitCancelledDetails
|
|
2176
|
+
attr_accessor error: Types::EventError
|
|
2177
|
+
SENSITIVE: []
|
|
2178
|
+
end
|
|
2179
|
+
|
|
2180
|
+
class WaitDetails
|
|
2181
|
+
attr_accessor scheduled_end_timestamp: ::Time
|
|
2182
|
+
SENSITIVE: []
|
|
2183
|
+
end
|
|
2184
|
+
|
|
2185
|
+
class WaitOptions
|
|
2186
|
+
attr_accessor wait_seconds: ::Integer
|
|
2187
|
+
SENSITIVE: []
|
|
2188
|
+
end
|
|
2189
|
+
|
|
2190
|
+
class WaitStartedDetails
|
|
2191
|
+
attr_accessor duration: ::Integer
|
|
2192
|
+
attr_accessor scheduled_end_timestamp: ::Time
|
|
2193
|
+
SENSITIVE: []
|
|
2194
|
+
end
|
|
2195
|
+
|
|
2196
|
+
class WaitSucceededDetails
|
|
2197
|
+
attr_accessor duration: ::Integer
|
|
2198
|
+
SENSITIVE: []
|
|
2199
|
+
end
|
|
2200
|
+
|
|
1742
2201
|
class InvokeWithResponseStreamResponseEvent < Enumerator[untyped, untyped]
|
|
1743
2202
|
def event_types: () -> [:payload_chunk, :invoke_complete]
|
|
1744
2203
|
end
|