aws-sdk-lambda 1.167.0 → 1.169.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lambda/client.rb +1368 -70
- data/lib/aws-sdk-lambda/client_api.rb +930 -33
- data/lib/aws-sdk-lambda/errors.rb +105 -0
- data/lib/aws-sdk-lambda/types.rb +2526 -110
- data/lib/aws-sdk-lambda.rb +1 -1
- data/sig/client.rbs +358 -19
- data/sig/errors.rbs +20 -0
- data/sig/types.rbs +658 -3
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -87,6 +87,149 @@ 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
|
+
|
|
131
|
+
class CapacityProvider
|
|
132
|
+
attr_accessor capacity_provider_arn: ::String
|
|
133
|
+
attr_accessor state: ("Pending" | "Active" | "Failed" | "Deleting")
|
|
134
|
+
attr_accessor vpc_config: Types::CapacityProviderVpcConfig
|
|
135
|
+
attr_accessor permissions_config: Types::CapacityProviderPermissionsConfig
|
|
136
|
+
attr_accessor instance_requirements: Types::InstanceRequirements
|
|
137
|
+
attr_accessor capacity_provider_scaling_config: Types::CapacityProviderScalingConfig
|
|
138
|
+
attr_accessor kms_key_arn: ::String
|
|
139
|
+
attr_accessor last_modified: ::Time
|
|
140
|
+
SENSITIVE: []
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
class CapacityProviderConfig
|
|
144
|
+
attr_accessor lambda_managed_instances_capacity_provider_config: Types::LambdaManagedInstancesCapacityProviderConfig
|
|
145
|
+
SENSITIVE: []
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
class CapacityProviderLimitExceededException
|
|
149
|
+
attr_accessor type: ::String
|
|
150
|
+
attr_accessor message: ::String
|
|
151
|
+
SENSITIVE: []
|
|
152
|
+
end
|
|
153
|
+
|
|
154
|
+
class CapacityProviderPermissionsConfig
|
|
155
|
+
attr_accessor capacity_provider_operator_role_arn: ::String
|
|
156
|
+
SENSITIVE: []
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
class CapacityProviderScalingConfig
|
|
160
|
+
attr_accessor max_v_cpu_count: ::Integer
|
|
161
|
+
attr_accessor scaling_mode: ("Auto" | "Manual")
|
|
162
|
+
attr_accessor scaling_policies: ::Array[Types::TargetTrackingScalingPolicy]
|
|
163
|
+
SENSITIVE: []
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
class CapacityProviderVpcConfig
|
|
167
|
+
attr_accessor subnet_ids: ::Array[::String]
|
|
168
|
+
attr_accessor security_group_ids: ::Array[::String]
|
|
169
|
+
SENSITIVE: []
|
|
170
|
+
end
|
|
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
|
+
|
|
90
233
|
class CodeSigningConfig
|
|
91
234
|
attr_accessor code_signing_config_id: ::String
|
|
92
235
|
attr_accessor code_signing_config_arn: ::String
|
|
@@ -125,6 +268,31 @@ module Aws::Lambda
|
|
|
125
268
|
SENSITIVE: []
|
|
126
269
|
end
|
|
127
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
|
+
|
|
128
296
|
class Cors
|
|
129
297
|
attr_accessor allow_credentials: bool
|
|
130
298
|
attr_accessor allow_headers: ::Array[::String]
|
|
@@ -144,6 +312,22 @@ module Aws::Lambda
|
|
|
144
312
|
SENSITIVE: []
|
|
145
313
|
end
|
|
146
314
|
|
|
315
|
+
class CreateCapacityProviderRequest
|
|
316
|
+
attr_accessor capacity_provider_name: ::String
|
|
317
|
+
attr_accessor vpc_config: Types::CapacityProviderVpcConfig
|
|
318
|
+
attr_accessor permissions_config: Types::CapacityProviderPermissionsConfig
|
|
319
|
+
attr_accessor instance_requirements: Types::InstanceRequirements
|
|
320
|
+
attr_accessor capacity_provider_scaling_config: Types::CapacityProviderScalingConfig
|
|
321
|
+
attr_accessor kms_key_arn: ::String
|
|
322
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
323
|
+
SENSITIVE: []
|
|
324
|
+
end
|
|
325
|
+
|
|
326
|
+
class CreateCapacityProviderResponse
|
|
327
|
+
attr_accessor capacity_provider: Types::CapacityProvider
|
|
328
|
+
SENSITIVE: []
|
|
329
|
+
end
|
|
330
|
+
|
|
147
331
|
class CreateCodeSigningConfigRequest
|
|
148
332
|
attr_accessor description: ::String
|
|
149
333
|
attr_accessor allowed_publishers: Types::AllowedPublishers
|
|
@@ -213,6 +397,9 @@ module Aws::Lambda
|
|
|
213
397
|
attr_accessor ephemeral_storage: Types::EphemeralStorage
|
|
214
398
|
attr_accessor snap_start: Types::SnapStart
|
|
215
399
|
attr_accessor logging_config: Types::LoggingConfig
|
|
400
|
+
attr_accessor capacity_provider_config: Types::CapacityProviderConfig
|
|
401
|
+
attr_accessor publish_to: ("LATEST_PUBLISHED")
|
|
402
|
+
attr_accessor durable_config: Types::DurableConfig
|
|
216
403
|
attr_accessor tenancy_config: Types::TenancyConfig
|
|
217
404
|
SENSITIVE: []
|
|
218
405
|
end
|
|
@@ -247,6 +434,16 @@ module Aws::Lambda
|
|
|
247
434
|
SENSITIVE: []
|
|
248
435
|
end
|
|
249
436
|
|
|
437
|
+
class DeleteCapacityProviderRequest
|
|
438
|
+
attr_accessor capacity_provider_name: ::String
|
|
439
|
+
SENSITIVE: []
|
|
440
|
+
end
|
|
441
|
+
|
|
442
|
+
class DeleteCapacityProviderResponse
|
|
443
|
+
attr_accessor capacity_provider: Types::CapacityProvider
|
|
444
|
+
SENSITIVE: []
|
|
445
|
+
end
|
|
446
|
+
|
|
250
447
|
class DeleteCodeSigningConfigRequest
|
|
251
448
|
attr_accessor code_signing_config_arn: ::String
|
|
252
449
|
SENSITIVE: []
|
|
@@ -282,6 +479,11 @@ module Aws::Lambda
|
|
|
282
479
|
SENSITIVE: []
|
|
283
480
|
end
|
|
284
481
|
|
|
482
|
+
class DeleteFunctionResponse
|
|
483
|
+
attr_accessor status_code: ::Integer
|
|
484
|
+
SENSITIVE: []
|
|
485
|
+
end
|
|
486
|
+
|
|
285
487
|
class DeleteFunctionUrlConfigRequest
|
|
286
488
|
attr_accessor function_name: ::String
|
|
287
489
|
attr_accessor qualifier: ::String
|
|
@@ -313,6 +515,18 @@ module Aws::Lambda
|
|
|
313
515
|
SENSITIVE: []
|
|
314
516
|
end
|
|
315
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
|
+
|
|
316
530
|
class EC2AccessDeniedException
|
|
317
531
|
attr_accessor type: ::String
|
|
318
532
|
attr_accessor message: ::String
|
|
@@ -384,6 +598,67 @@ module Aws::Lambda
|
|
|
384
598
|
SENSITIVE: []
|
|
385
599
|
end
|
|
386
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
|
+
|
|
387
662
|
class EventSourceMappingConfiguration
|
|
388
663
|
attr_accessor uuid: ::String
|
|
389
664
|
attr_accessor starting_position: ("TRIM_HORIZON" | "LATEST" | "AT_TIMESTAMP")
|
|
@@ -425,6 +700,47 @@ module Aws::Lambda
|
|
|
425
700
|
SENSITIVE: []
|
|
426
701
|
end
|
|
427
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
|
+
|
|
428
744
|
class FileSystemConfig
|
|
429
745
|
attr_accessor arn: ::String
|
|
430
746
|
attr_accessor local_mount_path: ::String
|
|
@@ -487,12 +803,12 @@ module Aws::Lambda
|
|
|
487
803
|
attr_accessor master_arn: ::String
|
|
488
804
|
attr_accessor revision_id: ::String
|
|
489
805
|
attr_accessor layers: ::Array[Types::Layer]
|
|
490
|
-
attr_accessor state: ("Pending" | "Active" | "Inactive" | "Failed")
|
|
806
|
+
attr_accessor state: ("Pending" | "Active" | "Inactive" | "Failed" | "Deactivating" | "Deactivated" | "ActiveNonInvocable" | "Deleting")
|
|
491
807
|
attr_accessor state_reason: ::String
|
|
492
|
-
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")
|
|
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")
|
|
493
809
|
attr_accessor last_update_status: ("Successful" | "Failed" | "InProgress")
|
|
494
810
|
attr_accessor last_update_status_reason: ::String
|
|
495
|
-
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")
|
|
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")
|
|
496
812
|
attr_accessor file_system_configs: ::Array[Types::FileSystemConfig]
|
|
497
813
|
attr_accessor package_type: ("Zip" | "Image")
|
|
498
814
|
attr_accessor image_config_response: Types::ImageConfigResponse
|
|
@@ -503,6 +819,9 @@ module Aws::Lambda
|
|
|
503
819
|
attr_accessor snap_start: Types::SnapStartResponse
|
|
504
820
|
attr_accessor runtime_version_config: Types::RuntimeVersionConfig
|
|
505
821
|
attr_accessor logging_config: Types::LoggingConfig
|
|
822
|
+
attr_accessor capacity_provider_config: Types::CapacityProviderConfig
|
|
823
|
+
attr_accessor config_sha_256: ::String
|
|
824
|
+
attr_accessor durable_config: Types::DurableConfig
|
|
506
825
|
attr_accessor tenancy_config: Types::TenancyConfig
|
|
507
826
|
SENSITIVE: []
|
|
508
827
|
end
|
|
@@ -516,6 +835,12 @@ module Aws::Lambda
|
|
|
516
835
|
SENSITIVE: []
|
|
517
836
|
end
|
|
518
837
|
|
|
838
|
+
class FunctionScalingConfig
|
|
839
|
+
attr_accessor min_execution_environments: ::Integer
|
|
840
|
+
attr_accessor max_execution_environments: ::Integer
|
|
841
|
+
SENSITIVE: []
|
|
842
|
+
end
|
|
843
|
+
|
|
519
844
|
class FunctionUrlConfig
|
|
520
845
|
attr_accessor function_url: ::String
|
|
521
846
|
attr_accessor function_arn: ::String
|
|
@@ -527,6 +852,18 @@ module Aws::Lambda
|
|
|
527
852
|
SENSITIVE: []
|
|
528
853
|
end
|
|
529
854
|
|
|
855
|
+
class FunctionVersionsByCapacityProviderListItem
|
|
856
|
+
attr_accessor function_arn: ::String
|
|
857
|
+
attr_accessor state: ("Pending" | "Active" | "Inactive" | "Failed" | "Deactivating" | "Deactivated" | "ActiveNonInvocable" | "Deleting")
|
|
858
|
+
SENSITIVE: []
|
|
859
|
+
end
|
|
860
|
+
|
|
861
|
+
class FunctionVersionsPerCapacityProviderLimitExceededException
|
|
862
|
+
attr_accessor type: ::String
|
|
863
|
+
attr_accessor message: ::String
|
|
864
|
+
SENSITIVE: []
|
|
865
|
+
end
|
|
866
|
+
|
|
530
867
|
class GetAccountSettingsRequest < Aws::EmptyStructure
|
|
531
868
|
end
|
|
532
869
|
|
|
@@ -542,6 +879,16 @@ module Aws::Lambda
|
|
|
542
879
|
SENSITIVE: []
|
|
543
880
|
end
|
|
544
881
|
|
|
882
|
+
class GetCapacityProviderRequest
|
|
883
|
+
attr_accessor capacity_provider_name: ::String
|
|
884
|
+
SENSITIVE: []
|
|
885
|
+
end
|
|
886
|
+
|
|
887
|
+
class GetCapacityProviderResponse
|
|
888
|
+
attr_accessor capacity_provider: Types::CapacityProvider
|
|
889
|
+
SENSITIVE: []
|
|
890
|
+
end
|
|
891
|
+
|
|
545
892
|
class GetCodeSigningConfigRequest
|
|
546
893
|
attr_accessor code_signing_config_arn: ::String
|
|
547
894
|
SENSITIVE: []
|
|
@@ -552,6 +899,55 @@ module Aws::Lambda
|
|
|
552
899
|
SENSITIVE: []
|
|
553
900
|
end
|
|
554
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
|
+
|
|
555
951
|
class GetEventSourceMappingRequest
|
|
556
952
|
attr_accessor uuid: ::String
|
|
557
953
|
SENSITIVE: []
|
|
@@ -615,6 +1011,19 @@ module Aws::Lambda
|
|
|
615
1011
|
SENSITIVE: []
|
|
616
1012
|
end
|
|
617
1013
|
|
|
1014
|
+
class GetFunctionScalingConfigRequest
|
|
1015
|
+
attr_accessor function_name: ::String
|
|
1016
|
+
attr_accessor qualifier: ::String
|
|
1017
|
+
SENSITIVE: []
|
|
1018
|
+
end
|
|
1019
|
+
|
|
1020
|
+
class GetFunctionScalingConfigResponse
|
|
1021
|
+
attr_accessor function_arn: ::String
|
|
1022
|
+
attr_accessor applied_function_scaling_config: Types::FunctionScalingConfig
|
|
1023
|
+
attr_accessor requested_function_scaling_config: Types::FunctionScalingConfig
|
|
1024
|
+
SENSITIVE: []
|
|
1025
|
+
end
|
|
1026
|
+
|
|
618
1027
|
class GetFunctionUrlConfigRequest
|
|
619
1028
|
attr_accessor function_name: ::String
|
|
620
1029
|
attr_accessor qualifier: ::String
|
|
@@ -728,6 +1137,13 @@ module Aws::Lambda
|
|
|
728
1137
|
SENSITIVE: []
|
|
729
1138
|
end
|
|
730
1139
|
|
|
1140
|
+
class InstanceRequirements
|
|
1141
|
+
attr_accessor architectures: ::Array[("x86_64" | "arm64")]
|
|
1142
|
+
attr_accessor allowed_instance_types: ::Array[::String]
|
|
1143
|
+
attr_accessor excluded_instance_types: ::Array[::String]
|
|
1144
|
+
SENSITIVE: []
|
|
1145
|
+
end
|
|
1146
|
+
|
|
731
1147
|
class InvalidCodeSignatureException
|
|
732
1148
|
attr_accessor type: ::String
|
|
733
1149
|
attr_accessor message: ::String
|
|
@@ -770,11 +1186,20 @@ module Aws::Lambda
|
|
|
770
1186
|
SENSITIVE: []
|
|
771
1187
|
end
|
|
772
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
|
+
|
|
773
1197
|
class InvocationRequest
|
|
774
1198
|
attr_accessor function_name: ::String
|
|
775
1199
|
attr_accessor invocation_type: ("Event" | "RequestResponse" | "DryRun")
|
|
776
1200
|
attr_accessor log_type: ("None" | "Tail")
|
|
777
1201
|
attr_accessor client_context: ::String
|
|
1202
|
+
attr_accessor durable_execution_name: ::String
|
|
778
1203
|
attr_accessor payload: ::String
|
|
779
1204
|
attr_accessor qualifier: ::String
|
|
780
1205
|
attr_accessor tenant_id: ::String
|
|
@@ -787,6 +1212,7 @@ module Aws::Lambda
|
|
|
787
1212
|
attr_accessor log_result: ::String
|
|
788
1213
|
attr_accessor payload: ::String
|
|
789
1214
|
attr_accessor executed_version: ::String
|
|
1215
|
+
attr_accessor durable_execution_arn: ::String
|
|
790
1216
|
SENSITIVE: [:payload]
|
|
791
1217
|
end
|
|
792
1218
|
|
|
@@ -877,6 +1303,13 @@ module Aws::Lambda
|
|
|
877
1303
|
SENSITIVE: []
|
|
878
1304
|
end
|
|
879
1305
|
|
|
1306
|
+
class LambdaManagedInstancesCapacityProviderConfig
|
|
1307
|
+
attr_accessor capacity_provider_arn: ::String
|
|
1308
|
+
attr_accessor per_execution_environment_max_concurrency: ::Integer
|
|
1309
|
+
attr_accessor execution_environment_memory_gi_b_per_v_cpu: ::Float
|
|
1310
|
+
SENSITIVE: []
|
|
1311
|
+
end
|
|
1312
|
+
|
|
880
1313
|
class Layer
|
|
881
1314
|
attr_accessor arn: ::String
|
|
882
1315
|
attr_accessor code_size: ::Integer
|
|
@@ -934,6 +1367,19 @@ module Aws::Lambda
|
|
|
934
1367
|
SENSITIVE: []
|
|
935
1368
|
end
|
|
936
1369
|
|
|
1370
|
+
class ListCapacityProvidersRequest
|
|
1371
|
+
attr_accessor state: ("Pending" | "Active" | "Failed" | "Deleting")
|
|
1372
|
+
attr_accessor marker: ::String
|
|
1373
|
+
attr_accessor max_items: ::Integer
|
|
1374
|
+
SENSITIVE: []
|
|
1375
|
+
end
|
|
1376
|
+
|
|
1377
|
+
class ListCapacityProvidersResponse
|
|
1378
|
+
attr_accessor capacity_providers: ::Array[Types::CapacityProvider]
|
|
1379
|
+
attr_accessor next_marker: ::String
|
|
1380
|
+
SENSITIVE: []
|
|
1381
|
+
end
|
|
1382
|
+
|
|
937
1383
|
class ListCodeSigningConfigsRequest
|
|
938
1384
|
attr_accessor marker: ::String
|
|
939
1385
|
attr_accessor max_items: ::Integer
|
|
@@ -946,6 +1392,25 @@ module Aws::Lambda
|
|
|
946
1392
|
SENSITIVE: []
|
|
947
1393
|
end
|
|
948
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
|
+
|
|
949
1414
|
class ListEventSourceMappingsRequest
|
|
950
1415
|
attr_accessor event_source_arn: ::String
|
|
951
1416
|
attr_accessor function_name: ::String
|
|
@@ -986,6 +1451,20 @@ module Aws::Lambda
|
|
|
986
1451
|
SENSITIVE: []
|
|
987
1452
|
end
|
|
988
1453
|
|
|
1454
|
+
class ListFunctionVersionsByCapacityProviderRequest
|
|
1455
|
+
attr_accessor capacity_provider_name: ::String
|
|
1456
|
+
attr_accessor marker: ::String
|
|
1457
|
+
attr_accessor max_items: ::Integer
|
|
1458
|
+
SENSITIVE: []
|
|
1459
|
+
end
|
|
1460
|
+
|
|
1461
|
+
class ListFunctionVersionsByCapacityProviderResponse
|
|
1462
|
+
attr_accessor capacity_provider_arn: ::String
|
|
1463
|
+
attr_accessor function_versions: ::Array[Types::FunctionVersionsByCapacityProviderListItem]
|
|
1464
|
+
attr_accessor next_marker: ::String
|
|
1465
|
+
SENSITIVE: []
|
|
1466
|
+
end
|
|
1467
|
+
|
|
989
1468
|
class ListFunctionsByCodeSigningConfigRequest
|
|
990
1469
|
attr_accessor code_signing_config_arn: ::String
|
|
991
1470
|
attr_accessor marker: ::String
|
|
@@ -1086,6 +1565,12 @@ module Aws::Lambda
|
|
|
1086
1565
|
SENSITIVE: []
|
|
1087
1566
|
end
|
|
1088
1567
|
|
|
1568
|
+
class NoPublishedVersionException
|
|
1569
|
+
attr_accessor type: ::String
|
|
1570
|
+
attr_accessor message: ::String
|
|
1571
|
+
SENSITIVE: []
|
|
1572
|
+
end
|
|
1573
|
+
|
|
1089
1574
|
class OnFailure
|
|
1090
1575
|
attr_accessor destination: ::String
|
|
1091
1576
|
SENSITIVE: []
|
|
@@ -1096,6 +1581,41 @@ module Aws::Lambda
|
|
|
1096
1581
|
SENSITIVE: []
|
|
1097
1582
|
end
|
|
1098
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
|
+
|
|
1099
1619
|
class PolicyLengthExceededException
|
|
1100
1620
|
attr_accessor type: ::String
|
|
1101
1621
|
attr_accessor message: ::String
|
|
@@ -1160,6 +1680,7 @@ module Aws::Lambda
|
|
|
1160
1680
|
attr_accessor code_sha_256: ::String
|
|
1161
1681
|
attr_accessor description: ::String
|
|
1162
1682
|
attr_accessor revision_id: ::String
|
|
1683
|
+
attr_accessor publish_to: ("LATEST_PUBLISHED")
|
|
1163
1684
|
SENSITIVE: []
|
|
1164
1685
|
end
|
|
1165
1686
|
|
|
@@ -1201,6 +1722,18 @@ module Aws::Lambda
|
|
|
1201
1722
|
SENSITIVE: []
|
|
1202
1723
|
end
|
|
1203
1724
|
|
|
1725
|
+
class PutFunctionScalingConfigRequest
|
|
1726
|
+
attr_accessor function_name: ::String
|
|
1727
|
+
attr_accessor qualifier: ::String
|
|
1728
|
+
attr_accessor function_scaling_config: Types::FunctionScalingConfig
|
|
1729
|
+
SENSITIVE: []
|
|
1730
|
+
end
|
|
1731
|
+
|
|
1732
|
+
class PutFunctionScalingConfigResponse
|
|
1733
|
+
attr_accessor function_state: ("Pending" | "Active" | "Inactive" | "Failed" | "Deactivating" | "Deactivated" | "ActiveNonInvocable" | "Deleting")
|
|
1734
|
+
SENSITIVE: []
|
|
1735
|
+
end
|
|
1736
|
+
|
|
1204
1737
|
class PutProvisionedConcurrencyConfigRequest
|
|
1205
1738
|
attr_accessor function_name: ::String
|
|
1206
1739
|
attr_accessor qualifier: ::String
|
|
@@ -1285,6 +1818,12 @@ module Aws::Lambda
|
|
|
1285
1818
|
SENSITIVE: []
|
|
1286
1819
|
end
|
|
1287
1820
|
|
|
1821
|
+
class RetryDetails
|
|
1822
|
+
attr_accessor current_attempt: ::Integer
|
|
1823
|
+
attr_accessor next_attempt_delay_seconds: ::Integer
|
|
1824
|
+
SENSITIVE: []
|
|
1825
|
+
end
|
|
1826
|
+
|
|
1288
1827
|
class RuntimeVersionConfig
|
|
1289
1828
|
attr_accessor runtime_version_arn: ::String
|
|
1290
1829
|
attr_accessor error: Types::RuntimeVersionError
|
|
@@ -1313,6 +1852,32 @@ module Aws::Lambda
|
|
|
1313
1852
|
SENSITIVE: []
|
|
1314
1853
|
end
|
|
1315
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
|
+
|
|
1316
1881
|
class SerializedRequestEntityTooLargeException
|
|
1317
1882
|
attr_accessor type: ::String
|
|
1318
1883
|
attr_accessor message: ::String
|
|
@@ -1360,6 +1925,45 @@ module Aws::Lambda
|
|
|
1360
1925
|
SENSITIVE: []
|
|
1361
1926
|
end
|
|
1362
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
|
+
|
|
1363
1967
|
class SubnetIPAddressLimitReachedException
|
|
1364
1968
|
attr_accessor type: ::String
|
|
1365
1969
|
attr_accessor message: ::String
|
|
@@ -1378,6 +1982,12 @@ module Aws::Lambda
|
|
|
1378
1982
|
SENSITIVE: []
|
|
1379
1983
|
end
|
|
1380
1984
|
|
|
1985
|
+
class TargetTrackingScalingPolicy
|
|
1986
|
+
attr_accessor predefined_metric_type: ("LambdaCapacityProviderAverageCPUUtilization")
|
|
1987
|
+
attr_accessor target_value: ::Float
|
|
1988
|
+
SENSITIVE: []
|
|
1989
|
+
end
|
|
1990
|
+
|
|
1381
1991
|
class TenancyConfig
|
|
1382
1992
|
attr_accessor tenant_isolation_mode: ("PER_TENANT")
|
|
1383
1993
|
SENSITIVE: []
|
|
@@ -1391,6 +2001,11 @@ module Aws::Lambda
|
|
|
1391
2001
|
SENSITIVE: []
|
|
1392
2002
|
end
|
|
1393
2003
|
|
|
2004
|
+
class TraceHeader
|
|
2005
|
+
attr_accessor x_amzn_trace_id: ::String
|
|
2006
|
+
SENSITIVE: []
|
|
2007
|
+
end
|
|
2008
|
+
|
|
1394
2009
|
class TracingConfig
|
|
1395
2010
|
attr_accessor mode: ("Active" | "PassThrough")
|
|
1396
2011
|
SENSITIVE: []
|
|
@@ -1423,6 +2038,17 @@ module Aws::Lambda
|
|
|
1423
2038
|
SENSITIVE: []
|
|
1424
2039
|
end
|
|
1425
2040
|
|
|
2041
|
+
class UpdateCapacityProviderRequest
|
|
2042
|
+
attr_accessor capacity_provider_name: ::String
|
|
2043
|
+
attr_accessor capacity_provider_scaling_config: Types::CapacityProviderScalingConfig
|
|
2044
|
+
SENSITIVE: []
|
|
2045
|
+
end
|
|
2046
|
+
|
|
2047
|
+
class UpdateCapacityProviderResponse
|
|
2048
|
+
attr_accessor capacity_provider: Types::CapacityProvider
|
|
2049
|
+
SENSITIVE: []
|
|
2050
|
+
end
|
|
2051
|
+
|
|
1426
2052
|
class UpdateCodeSigningConfigRequest
|
|
1427
2053
|
attr_accessor code_signing_config_arn: ::String
|
|
1428
2054
|
attr_accessor description: ::String
|
|
@@ -1473,6 +2099,7 @@ module Aws::Lambda
|
|
|
1473
2099
|
attr_accessor revision_id: ::String
|
|
1474
2100
|
attr_accessor architectures: ::Array[("x86_64" | "arm64")]
|
|
1475
2101
|
attr_accessor source_kms_key_arn: ::String
|
|
2102
|
+
attr_accessor publish_to: ("LATEST_PUBLISHED")
|
|
1476
2103
|
SENSITIVE: [:zip_file]
|
|
1477
2104
|
end
|
|
1478
2105
|
|
|
@@ -1496,6 +2123,8 @@ module Aws::Lambda
|
|
|
1496
2123
|
attr_accessor ephemeral_storage: Types::EphemeralStorage
|
|
1497
2124
|
attr_accessor snap_start: Types::SnapStart
|
|
1498
2125
|
attr_accessor logging_config: Types::LoggingConfig
|
|
2126
|
+
attr_accessor capacity_provider_config: Types::CapacityProviderConfig
|
|
2127
|
+
attr_accessor durable_config: Types::DurableConfig
|
|
1499
2128
|
SENSITIVE: []
|
|
1500
2129
|
end
|
|
1501
2130
|
|
|
@@ -1543,6 +2172,32 @@ module Aws::Lambda
|
|
|
1543
2172
|
SENSITIVE: []
|
|
1544
2173
|
end
|
|
1545
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
|
+
|
|
1546
2201
|
class InvokeWithResponseStreamResponseEvent < Enumerator[untyped, untyped]
|
|
1547
2202
|
def event_types: () -> [:payload_chunk, :invoke_complete]
|
|
1548
2203
|
end
|