aws-sdk-lambda 1.113.0 → 1.114.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.
data/sig/types.rbs ADDED
@@ -0,0 +1,1449 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::Lambda
9
+ module Types
10
+
11
+ class AccountLimit
12
+ attr_accessor total_code_size: ::Integer
13
+ attr_accessor code_size_unzipped: ::Integer
14
+ attr_accessor code_size_zipped: ::Integer
15
+ attr_accessor concurrent_executions: ::Integer
16
+ attr_accessor unreserved_concurrent_executions: ::Integer
17
+ SENSITIVE: []
18
+ end
19
+
20
+ class AccountUsage
21
+ attr_accessor total_code_size: ::Integer
22
+ attr_accessor function_count: ::Integer
23
+ SENSITIVE: []
24
+ end
25
+
26
+ class AddLayerVersionPermissionRequest
27
+ attr_accessor layer_name: ::String
28
+ attr_accessor version_number: ::Integer
29
+ attr_accessor statement_id: ::String
30
+ attr_accessor action: ::String
31
+ attr_accessor principal: ::String
32
+ attr_accessor organization_id: ::String
33
+ attr_accessor revision_id: ::String
34
+ SENSITIVE: []
35
+ end
36
+
37
+ class AddLayerVersionPermissionResponse
38
+ attr_accessor statement: ::String
39
+ attr_accessor revision_id: ::String
40
+ SENSITIVE: []
41
+ end
42
+
43
+ class AddPermissionRequest
44
+ attr_accessor function_name: ::String
45
+ attr_accessor statement_id: ::String
46
+ attr_accessor action: ::String
47
+ attr_accessor principal: ::String
48
+ attr_accessor source_arn: ::String
49
+ attr_accessor source_account: ::String
50
+ attr_accessor event_source_token: ::String
51
+ attr_accessor qualifier: ::String
52
+ attr_accessor revision_id: ::String
53
+ attr_accessor principal_org_id: ::String
54
+ attr_accessor function_url_auth_type: ("NONE" | "AWS_IAM")
55
+ SENSITIVE: []
56
+ end
57
+
58
+ class AddPermissionResponse
59
+ attr_accessor statement: ::String
60
+ SENSITIVE: []
61
+ end
62
+
63
+ class AliasConfiguration
64
+ attr_accessor alias_arn: ::String
65
+ attr_accessor name: ::String
66
+ attr_accessor function_version: ::String
67
+ attr_accessor description: ::String
68
+ attr_accessor routing_config: Types::AliasRoutingConfiguration
69
+ attr_accessor revision_id: ::String
70
+ SENSITIVE: []
71
+ end
72
+
73
+ class AliasRoutingConfiguration
74
+ attr_accessor additional_version_weights: ::Hash[::String, ::Float]
75
+ SENSITIVE: []
76
+ end
77
+
78
+ class AllowedPublishers
79
+ attr_accessor signing_profile_version_arns: ::Array[::String]
80
+ SENSITIVE: []
81
+ end
82
+
83
+ class AmazonManagedKafkaEventSourceConfig
84
+ attr_accessor consumer_group_id: ::String
85
+ SENSITIVE: []
86
+ end
87
+
88
+ class CodeSigningConfig
89
+ attr_accessor code_signing_config_id: ::String
90
+ attr_accessor code_signing_config_arn: ::String
91
+ attr_accessor description: ::String
92
+ attr_accessor allowed_publishers: Types::AllowedPublishers
93
+ attr_accessor code_signing_policies: Types::CodeSigningPolicies
94
+ attr_accessor last_modified: ::Time
95
+ SENSITIVE: []
96
+ end
97
+
98
+ class CodeSigningConfigNotFoundException
99
+ attr_accessor type: ::String
100
+ attr_accessor message: ::String
101
+ SENSITIVE: []
102
+ end
103
+
104
+ class CodeSigningPolicies
105
+ attr_accessor untrusted_artifact_on_deployment: ("Warn" | "Enforce")
106
+ SENSITIVE: []
107
+ end
108
+
109
+ class CodeStorageExceededException
110
+ attr_accessor type: ::String
111
+ attr_accessor message: ::String
112
+ SENSITIVE: []
113
+ end
114
+
115
+ class CodeVerificationFailedException
116
+ attr_accessor type: ::String
117
+ attr_accessor message: ::String
118
+ SENSITIVE: []
119
+ end
120
+
121
+ class Concurrency
122
+ attr_accessor reserved_concurrent_executions: ::Integer
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class Cors
127
+ attr_accessor allow_credentials: bool
128
+ attr_accessor allow_headers: ::Array[::String]
129
+ attr_accessor allow_methods: ::Array[::String]
130
+ attr_accessor allow_origins: ::Array[::String]
131
+ attr_accessor expose_headers: ::Array[::String]
132
+ attr_accessor max_age: ::Integer
133
+ SENSITIVE: []
134
+ end
135
+
136
+ class CreateAliasRequest
137
+ attr_accessor function_name: ::String
138
+ attr_accessor name: ::String
139
+ attr_accessor function_version: ::String
140
+ attr_accessor description: ::String
141
+ attr_accessor routing_config: Types::AliasRoutingConfiguration
142
+ SENSITIVE: []
143
+ end
144
+
145
+ class CreateCodeSigningConfigRequest
146
+ attr_accessor description: ::String
147
+ attr_accessor allowed_publishers: Types::AllowedPublishers
148
+ attr_accessor code_signing_policies: Types::CodeSigningPolicies
149
+ SENSITIVE: []
150
+ end
151
+
152
+ class CreateCodeSigningConfigResponse
153
+ attr_accessor code_signing_config: Types::CodeSigningConfig
154
+ SENSITIVE: []
155
+ end
156
+
157
+ class CreateEventSourceMappingRequest
158
+ attr_accessor event_source_arn: ::String
159
+ attr_accessor function_name: ::String
160
+ attr_accessor enabled: bool
161
+ attr_accessor batch_size: ::Integer
162
+ attr_accessor filter_criteria: Types::FilterCriteria
163
+ attr_accessor maximum_batching_window_in_seconds: ::Integer
164
+ attr_accessor parallelization_factor: ::Integer
165
+ attr_accessor starting_position: ("TRIM_HORIZON" | "LATEST" | "AT_TIMESTAMP")
166
+ attr_accessor starting_position_timestamp: ::Time
167
+ attr_accessor destination_config: Types::DestinationConfig
168
+ attr_accessor maximum_record_age_in_seconds: ::Integer
169
+ attr_accessor bisect_batch_on_function_error: bool
170
+ attr_accessor maximum_retry_attempts: ::Integer
171
+ attr_accessor tumbling_window_in_seconds: ::Integer
172
+ attr_accessor topics: ::Array[::String]
173
+ attr_accessor queues: ::Array[::String]
174
+ attr_accessor source_access_configurations: ::Array[Types::SourceAccessConfiguration]
175
+ attr_accessor self_managed_event_source: Types::SelfManagedEventSource
176
+ attr_accessor function_response_types: ::Array[("ReportBatchItemFailures")]
177
+ attr_accessor amazon_managed_kafka_event_source_config: Types::AmazonManagedKafkaEventSourceConfig
178
+ attr_accessor self_managed_kafka_event_source_config: Types::SelfManagedKafkaEventSourceConfig
179
+ attr_accessor scaling_config: Types::ScalingConfig
180
+ attr_accessor document_db_event_source_config: Types::DocumentDBEventSourceConfig
181
+ SENSITIVE: []
182
+ end
183
+
184
+ class CreateFunctionRequest
185
+ attr_accessor function_name: ::String
186
+ attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
187
+ attr_accessor role: ::String
188
+ attr_accessor handler: ::String
189
+ attr_accessor code: Types::FunctionCode
190
+ attr_accessor description: ::String
191
+ attr_accessor timeout: ::Integer
192
+ attr_accessor memory_size: ::Integer
193
+ attr_accessor publish: bool
194
+ attr_accessor vpc_config: Types::VpcConfig
195
+ attr_accessor package_type: ("Zip" | "Image")
196
+ attr_accessor dead_letter_config: Types::DeadLetterConfig
197
+ attr_accessor environment: Types::Environment
198
+ attr_accessor kms_key_arn: ::String
199
+ attr_accessor tracing_config: Types::TracingConfig
200
+ attr_accessor tags: ::Hash[::String, ::String]
201
+ attr_accessor layers: ::Array[::String]
202
+ attr_accessor file_system_configs: ::Array[Types::FileSystemConfig]
203
+ attr_accessor image_config: Types::ImageConfig
204
+ attr_accessor code_signing_config_arn: ::String
205
+ attr_accessor architectures: ::Array[("x86_64" | "arm64")]
206
+ attr_accessor ephemeral_storage: Types::EphemeralStorage
207
+ attr_accessor snap_start: Types::SnapStart
208
+ attr_accessor logging_config: Types::LoggingConfig
209
+ SENSITIVE: []
210
+ end
211
+
212
+ class CreateFunctionUrlConfigRequest
213
+ attr_accessor function_name: ::String
214
+ attr_accessor qualifier: ::String
215
+ attr_accessor auth_type: ("NONE" | "AWS_IAM")
216
+ attr_accessor cors: Types::Cors
217
+ attr_accessor invoke_mode: ("BUFFERED" | "RESPONSE_STREAM")
218
+ SENSITIVE: []
219
+ end
220
+
221
+ class CreateFunctionUrlConfigResponse
222
+ attr_accessor function_url: ::String
223
+ attr_accessor function_arn: ::String
224
+ attr_accessor auth_type: ("NONE" | "AWS_IAM")
225
+ attr_accessor cors: Types::Cors
226
+ attr_accessor creation_time: ::Time
227
+ attr_accessor invoke_mode: ("BUFFERED" | "RESPONSE_STREAM")
228
+ SENSITIVE: []
229
+ end
230
+
231
+ class DeadLetterConfig
232
+ attr_accessor target_arn: ::String
233
+ SENSITIVE: []
234
+ end
235
+
236
+ class DeleteAliasRequest
237
+ attr_accessor function_name: ::String
238
+ attr_accessor name: ::String
239
+ SENSITIVE: []
240
+ end
241
+
242
+ class DeleteCodeSigningConfigRequest
243
+ attr_accessor code_signing_config_arn: ::String
244
+ SENSITIVE: []
245
+ end
246
+
247
+ class DeleteCodeSigningConfigResponse < Aws::EmptyStructure
248
+ end
249
+
250
+ class DeleteEventSourceMappingRequest
251
+ attr_accessor uuid: ::String
252
+ SENSITIVE: []
253
+ end
254
+
255
+ class DeleteFunctionCodeSigningConfigRequest
256
+ attr_accessor function_name: ::String
257
+ SENSITIVE: []
258
+ end
259
+
260
+ class DeleteFunctionConcurrencyRequest
261
+ attr_accessor function_name: ::String
262
+ SENSITIVE: []
263
+ end
264
+
265
+ class DeleteFunctionEventInvokeConfigRequest
266
+ attr_accessor function_name: ::String
267
+ attr_accessor qualifier: ::String
268
+ SENSITIVE: []
269
+ end
270
+
271
+ class DeleteFunctionRequest
272
+ attr_accessor function_name: ::String
273
+ attr_accessor qualifier: ::String
274
+ SENSITIVE: []
275
+ end
276
+
277
+ class DeleteFunctionUrlConfigRequest
278
+ attr_accessor function_name: ::String
279
+ attr_accessor qualifier: ::String
280
+ SENSITIVE: []
281
+ end
282
+
283
+ class DeleteLayerVersionRequest
284
+ attr_accessor layer_name: ::String
285
+ attr_accessor version_number: ::Integer
286
+ SENSITIVE: []
287
+ end
288
+
289
+ class DeleteProvisionedConcurrencyConfigRequest
290
+ attr_accessor function_name: ::String
291
+ attr_accessor qualifier: ::String
292
+ SENSITIVE: []
293
+ end
294
+
295
+ class DestinationConfig
296
+ attr_accessor on_success: Types::OnSuccess
297
+ attr_accessor on_failure: Types::OnFailure
298
+ SENSITIVE: []
299
+ end
300
+
301
+ class DocumentDBEventSourceConfig
302
+ attr_accessor database_name: ::String
303
+ attr_accessor collection_name: ::String
304
+ attr_accessor full_document: ("UpdateLookup" | "Default")
305
+ SENSITIVE: []
306
+ end
307
+
308
+ class EC2AccessDeniedException
309
+ attr_accessor type: ::String
310
+ attr_accessor message: ::String
311
+ SENSITIVE: []
312
+ end
313
+
314
+ class EC2ThrottledException
315
+ attr_accessor type: ::String
316
+ attr_accessor message: ::String
317
+ SENSITIVE: []
318
+ end
319
+
320
+ class EC2UnexpectedException
321
+ attr_accessor type: ::String
322
+ attr_accessor message: ::String
323
+ attr_accessor ec2_error_code: ::String
324
+ SENSITIVE: []
325
+ end
326
+
327
+ class EFSIOException
328
+ attr_accessor type: ::String
329
+ attr_accessor message: ::String
330
+ SENSITIVE: []
331
+ end
332
+
333
+ class EFSMountConnectivityException
334
+ attr_accessor type: ::String
335
+ attr_accessor message: ::String
336
+ SENSITIVE: []
337
+ end
338
+
339
+ class EFSMountFailureException
340
+ attr_accessor type: ::String
341
+ attr_accessor message: ::String
342
+ SENSITIVE: []
343
+ end
344
+
345
+ class EFSMountTimeoutException
346
+ attr_accessor type: ::String
347
+ attr_accessor message: ::String
348
+ SENSITIVE: []
349
+ end
350
+
351
+ class ENILimitReachedException
352
+ attr_accessor type: ::String
353
+ attr_accessor message: ::String
354
+ SENSITIVE: []
355
+ end
356
+
357
+ class Environment
358
+ attr_accessor variables: ::Hash[::String, ::String]
359
+ SENSITIVE: [:variables]
360
+ end
361
+
362
+ class EnvironmentError
363
+ attr_accessor error_code: ::String
364
+ attr_accessor message: ::String
365
+ SENSITIVE: [:message]
366
+ end
367
+
368
+ class EnvironmentResponse
369
+ attr_accessor variables: ::Hash[::String, ::String]
370
+ attr_accessor error: Types::EnvironmentError
371
+ SENSITIVE: [:variables]
372
+ end
373
+
374
+ class EphemeralStorage
375
+ attr_accessor size: ::Integer
376
+ SENSITIVE: []
377
+ end
378
+
379
+ class EventSourceMappingConfiguration
380
+ attr_accessor uuid: ::String
381
+ attr_accessor starting_position: ("TRIM_HORIZON" | "LATEST" | "AT_TIMESTAMP")
382
+ attr_accessor starting_position_timestamp: ::Time
383
+ attr_accessor batch_size: ::Integer
384
+ attr_accessor maximum_batching_window_in_seconds: ::Integer
385
+ attr_accessor parallelization_factor: ::Integer
386
+ attr_accessor event_source_arn: ::String
387
+ attr_accessor filter_criteria: Types::FilterCriteria
388
+ attr_accessor function_arn: ::String
389
+ attr_accessor last_modified: ::Time
390
+ attr_accessor last_processing_result: ::String
391
+ attr_accessor state: ::String
392
+ attr_accessor state_transition_reason: ::String
393
+ attr_accessor destination_config: Types::DestinationConfig
394
+ attr_accessor topics: ::Array[::String]
395
+ attr_accessor queues: ::Array[::String]
396
+ attr_accessor source_access_configurations: ::Array[Types::SourceAccessConfiguration]
397
+ attr_accessor self_managed_event_source: Types::SelfManagedEventSource
398
+ attr_accessor maximum_record_age_in_seconds: ::Integer
399
+ attr_accessor bisect_batch_on_function_error: bool
400
+ attr_accessor maximum_retry_attempts: ::Integer
401
+ attr_accessor tumbling_window_in_seconds: ::Integer
402
+ attr_accessor function_response_types: ::Array[("ReportBatchItemFailures")]
403
+ attr_accessor amazon_managed_kafka_event_source_config: Types::AmazonManagedKafkaEventSourceConfig
404
+ attr_accessor self_managed_kafka_event_source_config: Types::SelfManagedKafkaEventSourceConfig
405
+ attr_accessor scaling_config: Types::ScalingConfig
406
+ attr_accessor document_db_event_source_config: Types::DocumentDBEventSourceConfig
407
+ SENSITIVE: []
408
+ end
409
+
410
+ class FileSystemConfig
411
+ attr_accessor arn: ::String
412
+ attr_accessor local_mount_path: ::String
413
+ SENSITIVE: []
414
+ end
415
+
416
+ class Filter
417
+ attr_accessor pattern: ::String
418
+ SENSITIVE: []
419
+ end
420
+
421
+ class FilterCriteria
422
+ attr_accessor filters: ::Array[Types::Filter]
423
+ SENSITIVE: []
424
+ end
425
+
426
+ class FunctionCode
427
+ attr_accessor zip_file: ::String
428
+ attr_accessor s3_bucket: ::String
429
+ attr_accessor s3_key: ::String
430
+ attr_accessor s3_object_version: ::String
431
+ attr_accessor image_uri: ::String
432
+ SENSITIVE: [:zip_file]
433
+ end
434
+
435
+ class FunctionCodeLocation
436
+ attr_accessor repository_type: ::String
437
+ attr_accessor location: ::String
438
+ attr_accessor image_uri: ::String
439
+ attr_accessor resolved_image_uri: ::String
440
+ SENSITIVE: []
441
+ end
442
+
443
+ class FunctionConfiguration
444
+ attr_accessor function_name: ::String
445
+ attr_accessor function_arn: ::String
446
+ attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
447
+ attr_accessor role: ::String
448
+ attr_accessor handler: ::String
449
+ attr_accessor code_size: ::Integer
450
+ attr_accessor description: ::String
451
+ attr_accessor timeout: ::Integer
452
+ attr_accessor memory_size: ::Integer
453
+ attr_accessor last_modified: ::Time
454
+ attr_accessor code_sha_256: ::String
455
+ attr_accessor version: ::String
456
+ attr_accessor vpc_config: Types::VpcConfigResponse
457
+ attr_accessor dead_letter_config: Types::DeadLetterConfig
458
+ attr_accessor environment: Types::EnvironmentResponse
459
+ attr_accessor kms_key_arn: ::String
460
+ attr_accessor tracing_config: Types::TracingConfigResponse
461
+ attr_accessor master_arn: ::String
462
+ attr_accessor revision_id: ::String
463
+ attr_accessor layers: ::Array[Types::Layer]
464
+ attr_accessor state: ("Pending" | "Active" | "Inactive" | "Failed")
465
+ attr_accessor state_reason: ::String
466
+ 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")
467
+ attr_accessor last_update_status: ("Successful" | "Failed" | "InProgress")
468
+ attr_accessor last_update_status_reason: ::String
469
+ 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")
470
+ attr_accessor file_system_configs: ::Array[Types::FileSystemConfig]
471
+ attr_accessor package_type: ("Zip" | "Image")
472
+ attr_accessor image_config_response: Types::ImageConfigResponse
473
+ attr_accessor signing_profile_version_arn: ::String
474
+ attr_accessor signing_job_arn: ::String
475
+ attr_accessor architectures: ::Array[("x86_64" | "arm64")]
476
+ attr_accessor ephemeral_storage: Types::EphemeralStorage
477
+ attr_accessor snap_start: Types::SnapStartResponse
478
+ attr_accessor runtime_version_config: Types::RuntimeVersionConfig
479
+ attr_accessor logging_config: Types::LoggingConfig
480
+ SENSITIVE: []
481
+ end
482
+
483
+ class FunctionEventInvokeConfig
484
+ attr_accessor last_modified: ::Time
485
+ attr_accessor function_arn: ::String
486
+ attr_accessor maximum_retry_attempts: ::Integer
487
+ attr_accessor maximum_event_age_in_seconds: ::Integer
488
+ attr_accessor destination_config: Types::DestinationConfig
489
+ SENSITIVE: []
490
+ end
491
+
492
+ class FunctionUrlConfig
493
+ attr_accessor function_url: ::String
494
+ attr_accessor function_arn: ::String
495
+ attr_accessor creation_time: ::Time
496
+ attr_accessor last_modified_time: ::Time
497
+ attr_accessor cors: Types::Cors
498
+ attr_accessor auth_type: ("NONE" | "AWS_IAM")
499
+ attr_accessor invoke_mode: ("BUFFERED" | "RESPONSE_STREAM")
500
+ SENSITIVE: []
501
+ end
502
+
503
+ class GetAccountSettingsRequest < Aws::EmptyStructure
504
+ end
505
+
506
+ class GetAccountSettingsResponse
507
+ attr_accessor account_limit: Types::AccountLimit
508
+ attr_accessor account_usage: Types::AccountUsage
509
+ SENSITIVE: []
510
+ end
511
+
512
+ class GetAliasRequest
513
+ attr_accessor function_name: ::String
514
+ attr_accessor name: ::String
515
+ SENSITIVE: []
516
+ end
517
+
518
+ class GetCodeSigningConfigRequest
519
+ attr_accessor code_signing_config_arn: ::String
520
+ SENSITIVE: []
521
+ end
522
+
523
+ class GetCodeSigningConfigResponse
524
+ attr_accessor code_signing_config: Types::CodeSigningConfig
525
+ SENSITIVE: []
526
+ end
527
+
528
+ class GetEventSourceMappingRequest
529
+ attr_accessor uuid: ::String
530
+ SENSITIVE: []
531
+ end
532
+
533
+ class GetFunctionCodeSigningConfigRequest
534
+ attr_accessor function_name: ::String
535
+ SENSITIVE: []
536
+ end
537
+
538
+ class GetFunctionCodeSigningConfigResponse
539
+ attr_accessor code_signing_config_arn: ::String
540
+ attr_accessor function_name: ::String
541
+ SENSITIVE: []
542
+ end
543
+
544
+ class GetFunctionConcurrencyRequest
545
+ attr_accessor function_name: ::String
546
+ SENSITIVE: []
547
+ end
548
+
549
+ class GetFunctionConcurrencyResponse
550
+ attr_accessor reserved_concurrent_executions: ::Integer
551
+ SENSITIVE: []
552
+ end
553
+
554
+ class GetFunctionConfigurationRequest
555
+ attr_accessor function_name: ::String
556
+ attr_accessor qualifier: ::String
557
+ SENSITIVE: []
558
+ end
559
+
560
+ class GetFunctionEventInvokeConfigRequest
561
+ attr_accessor function_name: ::String
562
+ attr_accessor qualifier: ::String
563
+ SENSITIVE: []
564
+ end
565
+
566
+ class GetFunctionRequest
567
+ attr_accessor function_name: ::String
568
+ attr_accessor qualifier: ::String
569
+ SENSITIVE: []
570
+ end
571
+
572
+ class GetFunctionResponse
573
+ attr_accessor configuration: Types::FunctionConfiguration
574
+ attr_accessor code: Types::FunctionCodeLocation
575
+ attr_accessor tags: ::Hash[::String, ::String]
576
+ attr_accessor concurrency: Types::Concurrency
577
+ SENSITIVE: []
578
+ end
579
+
580
+ class GetFunctionUrlConfigRequest
581
+ attr_accessor function_name: ::String
582
+ attr_accessor qualifier: ::String
583
+ SENSITIVE: []
584
+ end
585
+
586
+ class GetFunctionUrlConfigResponse
587
+ attr_accessor function_url: ::String
588
+ attr_accessor function_arn: ::String
589
+ attr_accessor auth_type: ("NONE" | "AWS_IAM")
590
+ attr_accessor cors: Types::Cors
591
+ attr_accessor creation_time: ::Time
592
+ attr_accessor last_modified_time: ::Time
593
+ attr_accessor invoke_mode: ("BUFFERED" | "RESPONSE_STREAM")
594
+ SENSITIVE: []
595
+ end
596
+
597
+ class GetLayerVersionByArnRequest
598
+ attr_accessor arn: ::String
599
+ SENSITIVE: []
600
+ end
601
+
602
+ class GetLayerVersionPolicyRequest
603
+ attr_accessor layer_name: ::String
604
+ attr_accessor version_number: ::Integer
605
+ SENSITIVE: []
606
+ end
607
+
608
+ class GetLayerVersionPolicyResponse
609
+ attr_accessor policy: ::String
610
+ attr_accessor revision_id: ::String
611
+ SENSITIVE: []
612
+ end
613
+
614
+ class GetLayerVersionRequest
615
+ attr_accessor layer_name: ::String
616
+ attr_accessor version_number: ::Integer
617
+ SENSITIVE: []
618
+ end
619
+
620
+ class GetLayerVersionResponse
621
+ attr_accessor content: Types::LayerVersionContentOutput
622
+ attr_accessor layer_arn: ::String
623
+ attr_accessor layer_version_arn: ::String
624
+ attr_accessor description: ::String
625
+ attr_accessor created_date: ::Time
626
+ attr_accessor version: ::Integer
627
+ attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
628
+ attr_accessor license_info: ::String
629
+ attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
630
+ SENSITIVE: []
631
+ end
632
+
633
+ class GetPolicyRequest
634
+ attr_accessor function_name: ::String
635
+ attr_accessor qualifier: ::String
636
+ SENSITIVE: []
637
+ end
638
+
639
+ class GetPolicyResponse
640
+ attr_accessor policy: ::String
641
+ attr_accessor revision_id: ::String
642
+ SENSITIVE: []
643
+ end
644
+
645
+ class GetProvisionedConcurrencyConfigRequest
646
+ attr_accessor function_name: ::String
647
+ attr_accessor qualifier: ::String
648
+ SENSITIVE: []
649
+ end
650
+
651
+ class GetProvisionedConcurrencyConfigResponse
652
+ attr_accessor requested_provisioned_concurrent_executions: ::Integer
653
+ attr_accessor available_provisioned_concurrent_executions: ::Integer
654
+ attr_accessor allocated_provisioned_concurrent_executions: ::Integer
655
+ attr_accessor status: ("IN_PROGRESS" | "READY" | "FAILED")
656
+ attr_accessor status_reason: ::String
657
+ attr_accessor last_modified: ::Time
658
+ SENSITIVE: []
659
+ end
660
+
661
+ class GetRuntimeManagementConfigRequest
662
+ attr_accessor function_name: ::String
663
+ attr_accessor qualifier: ::String
664
+ SENSITIVE: []
665
+ end
666
+
667
+ class GetRuntimeManagementConfigResponse
668
+ attr_accessor update_runtime_on: ("Auto" | "Manual" | "FunctionUpdate")
669
+ attr_accessor runtime_version_arn: ::String
670
+ attr_accessor function_arn: ::String
671
+ SENSITIVE: []
672
+ end
673
+
674
+ class ImageConfig
675
+ attr_accessor entry_point: ::Array[::String]
676
+ attr_accessor command: ::Array[::String]
677
+ attr_accessor working_directory: ::String
678
+ SENSITIVE: []
679
+ end
680
+
681
+ class ImageConfigError
682
+ attr_accessor error_code: ::String
683
+ attr_accessor message: ::String
684
+ SENSITIVE: [:message]
685
+ end
686
+
687
+ class ImageConfigResponse
688
+ attr_accessor image_config: Types::ImageConfig
689
+ attr_accessor error: Types::ImageConfigError
690
+ SENSITIVE: []
691
+ end
692
+
693
+ class InvalidCodeSignatureException
694
+ attr_accessor type: ::String
695
+ attr_accessor message: ::String
696
+ SENSITIVE: []
697
+ end
698
+
699
+ class InvalidParameterValueException
700
+ attr_accessor type: ::String
701
+ attr_accessor message: ::String
702
+ SENSITIVE: []
703
+ end
704
+
705
+ class InvalidRequestContentException
706
+ attr_accessor type: ::String
707
+ attr_accessor message: ::String
708
+ SENSITIVE: []
709
+ end
710
+
711
+ class InvalidRuntimeException
712
+ attr_accessor type: ::String
713
+ attr_accessor message: ::String
714
+ SENSITIVE: []
715
+ end
716
+
717
+ class InvalidSecurityGroupIDException
718
+ attr_accessor type: ::String
719
+ attr_accessor message: ::String
720
+ SENSITIVE: []
721
+ end
722
+
723
+ class InvalidSubnetIDException
724
+ attr_accessor type: ::String
725
+ attr_accessor message: ::String
726
+ SENSITIVE: []
727
+ end
728
+
729
+ class InvalidZipFileException
730
+ attr_accessor type: ::String
731
+ attr_accessor message: ::String
732
+ SENSITIVE: []
733
+ end
734
+
735
+ class InvocationRequest
736
+ attr_accessor function_name: ::String
737
+ attr_accessor invocation_type: ("Event" | "RequestResponse" | "DryRun")
738
+ attr_accessor log_type: ("None" | "Tail")
739
+ attr_accessor client_context: ::String
740
+ attr_accessor payload: ::String
741
+ attr_accessor qualifier: ::String
742
+ SENSITIVE: [:payload]
743
+ end
744
+
745
+ class InvocationResponse
746
+ attr_accessor status_code: ::Integer
747
+ attr_accessor function_error: ::String
748
+ attr_accessor log_result: ::String
749
+ attr_accessor payload: ::String
750
+ attr_accessor executed_version: ::String
751
+ SENSITIVE: [:payload]
752
+ end
753
+
754
+ class InvokeAsyncRequest
755
+ attr_accessor function_name: ::String
756
+ attr_accessor invoke_args: ::IO
757
+ SENSITIVE: []
758
+ end
759
+
760
+ class InvokeAsyncResponse
761
+ attr_accessor status: ::Integer
762
+ SENSITIVE: []
763
+ end
764
+
765
+ class InvokeResponseStreamUpdate
766
+ attr_accessor payload: ::String
767
+ attr_accessor event_type: untyped
768
+ SENSITIVE: [:payload]
769
+ end
770
+
771
+ class InvokeWithResponseStreamCompleteEvent
772
+ attr_accessor error_code: ::String
773
+ attr_accessor error_details: ::String
774
+ attr_accessor log_result: ::String
775
+ attr_accessor event_type: untyped
776
+ SENSITIVE: []
777
+ end
778
+
779
+ class InvokeWithResponseStreamRequest
780
+ attr_accessor function_name: ::String
781
+ attr_accessor invocation_type: ("RequestResponse" | "DryRun")
782
+ attr_accessor log_type: ("None" | "Tail")
783
+ attr_accessor client_context: ::String
784
+ attr_accessor qualifier: ::String
785
+ attr_accessor payload: ::String
786
+ SENSITIVE: [:payload]
787
+ end
788
+
789
+ class InvokeWithResponseStreamResponse
790
+ attr_accessor status_code: ::Integer
791
+ attr_accessor executed_version: ::String
792
+ attr_accessor event_stream: Types::InvokeWithResponseStreamResponseEvent
793
+ attr_accessor response_stream_content_type: ::String
794
+ SENSITIVE: []
795
+ end
796
+
797
+ class KMSAccessDeniedException
798
+ attr_accessor type: ::String
799
+ attr_accessor message: ::String
800
+ SENSITIVE: []
801
+ end
802
+
803
+ class KMSDisabledException
804
+ attr_accessor type: ::String
805
+ attr_accessor message: ::String
806
+ SENSITIVE: []
807
+ end
808
+
809
+ class KMSInvalidStateException
810
+ attr_accessor type: ::String
811
+ attr_accessor message: ::String
812
+ SENSITIVE: []
813
+ end
814
+
815
+ class KMSNotFoundException
816
+ attr_accessor type: ::String
817
+ attr_accessor message: ::String
818
+ SENSITIVE: []
819
+ end
820
+
821
+ class Layer
822
+ attr_accessor arn: ::String
823
+ attr_accessor code_size: ::Integer
824
+ attr_accessor signing_profile_version_arn: ::String
825
+ attr_accessor signing_job_arn: ::String
826
+ SENSITIVE: []
827
+ end
828
+
829
+ class LayerVersionContentInput
830
+ attr_accessor s3_bucket: ::String
831
+ attr_accessor s3_key: ::String
832
+ attr_accessor s3_object_version: ::String
833
+ attr_accessor zip_file: ::String
834
+ SENSITIVE: [:zip_file]
835
+ end
836
+
837
+ class LayerVersionContentOutput
838
+ attr_accessor location: ::String
839
+ attr_accessor code_sha_256: ::String
840
+ attr_accessor code_size: ::Integer
841
+ attr_accessor signing_profile_version_arn: ::String
842
+ attr_accessor signing_job_arn: ::String
843
+ SENSITIVE: []
844
+ end
845
+
846
+ class LayerVersionsListItem
847
+ attr_accessor layer_version_arn: ::String
848
+ attr_accessor version: ::Integer
849
+ attr_accessor description: ::String
850
+ attr_accessor created_date: ::Time
851
+ attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
852
+ attr_accessor license_info: ::String
853
+ attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
854
+ SENSITIVE: []
855
+ end
856
+
857
+ class LayersListItem
858
+ attr_accessor layer_name: ::String
859
+ attr_accessor layer_arn: ::String
860
+ attr_accessor latest_matching_version: Types::LayerVersionsListItem
861
+ SENSITIVE: []
862
+ end
863
+
864
+ class ListAliasesRequest
865
+ attr_accessor function_name: ::String
866
+ attr_accessor function_version: ::String
867
+ attr_accessor marker: ::String
868
+ attr_accessor max_items: ::Integer
869
+ SENSITIVE: []
870
+ end
871
+
872
+ class ListAliasesResponse
873
+ attr_accessor next_marker: ::String
874
+ attr_accessor aliases: ::Array[Types::AliasConfiguration]
875
+ SENSITIVE: []
876
+ end
877
+
878
+ class ListCodeSigningConfigsRequest
879
+ attr_accessor marker: ::String
880
+ attr_accessor max_items: ::Integer
881
+ SENSITIVE: []
882
+ end
883
+
884
+ class ListCodeSigningConfigsResponse
885
+ attr_accessor next_marker: ::String
886
+ attr_accessor code_signing_configs: ::Array[Types::CodeSigningConfig]
887
+ SENSITIVE: []
888
+ end
889
+
890
+ class ListEventSourceMappingsRequest
891
+ attr_accessor event_source_arn: ::String
892
+ attr_accessor function_name: ::String
893
+ attr_accessor marker: ::String
894
+ attr_accessor max_items: ::Integer
895
+ SENSITIVE: []
896
+ end
897
+
898
+ class ListEventSourceMappingsResponse
899
+ attr_accessor next_marker: ::String
900
+ attr_accessor event_source_mappings: ::Array[Types::EventSourceMappingConfiguration]
901
+ SENSITIVE: []
902
+ end
903
+
904
+ class ListFunctionEventInvokeConfigsRequest
905
+ attr_accessor function_name: ::String
906
+ attr_accessor marker: ::String
907
+ attr_accessor max_items: ::Integer
908
+ SENSITIVE: []
909
+ end
910
+
911
+ class ListFunctionEventInvokeConfigsResponse
912
+ attr_accessor function_event_invoke_configs: ::Array[Types::FunctionEventInvokeConfig]
913
+ attr_accessor next_marker: ::String
914
+ SENSITIVE: []
915
+ end
916
+
917
+ class ListFunctionUrlConfigsRequest
918
+ attr_accessor function_name: ::String
919
+ attr_accessor marker: ::String
920
+ attr_accessor max_items: ::Integer
921
+ SENSITIVE: []
922
+ end
923
+
924
+ class ListFunctionUrlConfigsResponse
925
+ attr_accessor function_url_configs: ::Array[Types::FunctionUrlConfig]
926
+ attr_accessor next_marker: ::String
927
+ SENSITIVE: []
928
+ end
929
+
930
+ class ListFunctionsByCodeSigningConfigRequest
931
+ attr_accessor code_signing_config_arn: ::String
932
+ attr_accessor marker: ::String
933
+ attr_accessor max_items: ::Integer
934
+ SENSITIVE: []
935
+ end
936
+
937
+ class ListFunctionsByCodeSigningConfigResponse
938
+ attr_accessor next_marker: ::String
939
+ attr_accessor function_arns: ::Array[::String]
940
+ SENSITIVE: []
941
+ end
942
+
943
+ class ListFunctionsRequest
944
+ attr_accessor master_region: ::String
945
+ attr_accessor function_version: ("ALL")
946
+ attr_accessor marker: ::String
947
+ attr_accessor max_items: ::Integer
948
+ SENSITIVE: []
949
+ end
950
+
951
+ class ListFunctionsResponse
952
+ attr_accessor next_marker: ::String
953
+ attr_accessor functions: ::Array[Types::FunctionConfiguration]
954
+ SENSITIVE: []
955
+ end
956
+
957
+ class ListLayerVersionsRequest
958
+ attr_accessor compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
959
+ attr_accessor layer_name: ::String
960
+ attr_accessor marker: ::String
961
+ attr_accessor max_items: ::Integer
962
+ attr_accessor compatible_architecture: ("x86_64" | "arm64")
963
+ SENSITIVE: []
964
+ end
965
+
966
+ class ListLayerVersionsResponse
967
+ attr_accessor next_marker: ::String
968
+ attr_accessor layer_versions: ::Array[Types::LayerVersionsListItem]
969
+ SENSITIVE: []
970
+ end
971
+
972
+ class ListLayersRequest
973
+ attr_accessor compatible_runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
974
+ attr_accessor marker: ::String
975
+ attr_accessor max_items: ::Integer
976
+ attr_accessor compatible_architecture: ("x86_64" | "arm64")
977
+ SENSITIVE: []
978
+ end
979
+
980
+ class ListLayersResponse
981
+ attr_accessor next_marker: ::String
982
+ attr_accessor layers: ::Array[Types::LayersListItem]
983
+ SENSITIVE: []
984
+ end
985
+
986
+ class ListProvisionedConcurrencyConfigsRequest
987
+ attr_accessor function_name: ::String
988
+ attr_accessor marker: ::String
989
+ attr_accessor max_items: ::Integer
990
+ SENSITIVE: []
991
+ end
992
+
993
+ class ListProvisionedConcurrencyConfigsResponse
994
+ attr_accessor provisioned_concurrency_configs: ::Array[Types::ProvisionedConcurrencyConfigListItem]
995
+ attr_accessor next_marker: ::String
996
+ SENSITIVE: []
997
+ end
998
+
999
+ class ListTagsRequest
1000
+ attr_accessor resource: ::String
1001
+ SENSITIVE: []
1002
+ end
1003
+
1004
+ class ListTagsResponse
1005
+ attr_accessor tags: ::Hash[::String, ::String]
1006
+ SENSITIVE: []
1007
+ end
1008
+
1009
+ class ListVersionsByFunctionRequest
1010
+ attr_accessor function_name: ::String
1011
+ attr_accessor marker: ::String
1012
+ attr_accessor max_items: ::Integer
1013
+ SENSITIVE: []
1014
+ end
1015
+
1016
+ class ListVersionsByFunctionResponse
1017
+ attr_accessor next_marker: ::String
1018
+ attr_accessor versions: ::Array[Types::FunctionConfiguration]
1019
+ SENSITIVE: []
1020
+ end
1021
+
1022
+ class LoggingConfig
1023
+ attr_accessor log_format: ("JSON" | "Text")
1024
+ attr_accessor application_log_level: ("TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL")
1025
+ attr_accessor system_log_level: ("DEBUG" | "INFO" | "WARN")
1026
+ attr_accessor log_group: ::String
1027
+ SENSITIVE: []
1028
+ end
1029
+
1030
+ class OnFailure
1031
+ attr_accessor destination: ::String
1032
+ SENSITIVE: []
1033
+ end
1034
+
1035
+ class OnSuccess
1036
+ attr_accessor destination: ::String
1037
+ SENSITIVE: []
1038
+ end
1039
+
1040
+ class PolicyLengthExceededException
1041
+ attr_accessor type: ::String
1042
+ attr_accessor message: ::String
1043
+ SENSITIVE: []
1044
+ end
1045
+
1046
+ class PreconditionFailedException
1047
+ attr_accessor type: ::String
1048
+ attr_accessor message: ::String
1049
+ SENSITIVE: []
1050
+ end
1051
+
1052
+ class ProvisionedConcurrencyConfigListItem
1053
+ attr_accessor function_arn: ::String
1054
+ attr_accessor requested_provisioned_concurrent_executions: ::Integer
1055
+ attr_accessor available_provisioned_concurrent_executions: ::Integer
1056
+ attr_accessor allocated_provisioned_concurrent_executions: ::Integer
1057
+ attr_accessor status: ("IN_PROGRESS" | "READY" | "FAILED")
1058
+ attr_accessor status_reason: ::String
1059
+ attr_accessor last_modified: ::Time
1060
+ SENSITIVE: []
1061
+ end
1062
+
1063
+ class ProvisionedConcurrencyConfigNotFoundException
1064
+ attr_accessor type: ::String
1065
+ attr_accessor message: ::String
1066
+ SENSITIVE: []
1067
+ end
1068
+
1069
+ class PublishLayerVersionRequest
1070
+ attr_accessor layer_name: ::String
1071
+ attr_accessor description: ::String
1072
+ attr_accessor content: Types::LayerVersionContentInput
1073
+ attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
1074
+ attr_accessor license_info: ::String
1075
+ attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
1076
+ SENSITIVE: []
1077
+ end
1078
+
1079
+ class PublishLayerVersionResponse
1080
+ attr_accessor content: Types::LayerVersionContentOutput
1081
+ attr_accessor layer_arn: ::String
1082
+ attr_accessor layer_version_arn: ::String
1083
+ attr_accessor description: ::String
1084
+ attr_accessor created_date: ::Time
1085
+ attr_accessor version: ::Integer
1086
+ attr_accessor compatible_runtimes: ::Array[("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")]
1087
+ attr_accessor license_info: ::String
1088
+ attr_accessor compatible_architectures: ::Array[("x86_64" | "arm64")]
1089
+ SENSITIVE: []
1090
+ end
1091
+
1092
+ class PublishVersionRequest
1093
+ attr_accessor function_name: ::String
1094
+ attr_accessor code_sha_256: ::String
1095
+ attr_accessor description: ::String
1096
+ attr_accessor revision_id: ::String
1097
+ SENSITIVE: []
1098
+ end
1099
+
1100
+ class PutFunctionCodeSigningConfigRequest
1101
+ attr_accessor code_signing_config_arn: ::String
1102
+ attr_accessor function_name: ::String
1103
+ SENSITIVE: []
1104
+ end
1105
+
1106
+ class PutFunctionCodeSigningConfigResponse
1107
+ attr_accessor code_signing_config_arn: ::String
1108
+ attr_accessor function_name: ::String
1109
+ SENSITIVE: []
1110
+ end
1111
+
1112
+ class PutFunctionConcurrencyRequest
1113
+ attr_accessor function_name: ::String
1114
+ attr_accessor reserved_concurrent_executions: ::Integer
1115
+ SENSITIVE: []
1116
+ end
1117
+
1118
+ class PutFunctionEventInvokeConfigRequest
1119
+ attr_accessor function_name: ::String
1120
+ attr_accessor qualifier: ::String
1121
+ attr_accessor maximum_retry_attempts: ::Integer
1122
+ attr_accessor maximum_event_age_in_seconds: ::Integer
1123
+ attr_accessor destination_config: Types::DestinationConfig
1124
+ SENSITIVE: []
1125
+ end
1126
+
1127
+ class PutProvisionedConcurrencyConfigRequest
1128
+ attr_accessor function_name: ::String
1129
+ attr_accessor qualifier: ::String
1130
+ attr_accessor provisioned_concurrent_executions: ::Integer
1131
+ SENSITIVE: []
1132
+ end
1133
+
1134
+ class PutProvisionedConcurrencyConfigResponse
1135
+ attr_accessor requested_provisioned_concurrent_executions: ::Integer
1136
+ attr_accessor available_provisioned_concurrent_executions: ::Integer
1137
+ attr_accessor allocated_provisioned_concurrent_executions: ::Integer
1138
+ attr_accessor status: ("IN_PROGRESS" | "READY" | "FAILED")
1139
+ attr_accessor status_reason: ::String
1140
+ attr_accessor last_modified: ::Time
1141
+ SENSITIVE: []
1142
+ end
1143
+
1144
+ class PutRuntimeManagementConfigRequest
1145
+ attr_accessor function_name: ::String
1146
+ attr_accessor qualifier: ::String
1147
+ attr_accessor update_runtime_on: ("Auto" | "Manual" | "FunctionUpdate")
1148
+ attr_accessor runtime_version_arn: ::String
1149
+ SENSITIVE: []
1150
+ end
1151
+
1152
+ class PutRuntimeManagementConfigResponse
1153
+ attr_accessor update_runtime_on: ("Auto" | "Manual" | "FunctionUpdate")
1154
+ attr_accessor function_arn: ::String
1155
+ attr_accessor runtime_version_arn: ::String
1156
+ SENSITIVE: []
1157
+ end
1158
+
1159
+ class RecursiveInvocationException
1160
+ attr_accessor type: ::String
1161
+ attr_accessor message: ::String
1162
+ SENSITIVE: []
1163
+ end
1164
+
1165
+ class RemoveLayerVersionPermissionRequest
1166
+ attr_accessor layer_name: ::String
1167
+ attr_accessor version_number: ::Integer
1168
+ attr_accessor statement_id: ::String
1169
+ attr_accessor revision_id: ::String
1170
+ SENSITIVE: []
1171
+ end
1172
+
1173
+ class RemovePermissionRequest
1174
+ attr_accessor function_name: ::String
1175
+ attr_accessor statement_id: ::String
1176
+ attr_accessor qualifier: ::String
1177
+ attr_accessor revision_id: ::String
1178
+ SENSITIVE: []
1179
+ end
1180
+
1181
+ class RequestTooLargeException
1182
+ attr_accessor type: ::String
1183
+ attr_accessor message: ::String
1184
+ SENSITIVE: []
1185
+ end
1186
+
1187
+ class ResourceConflictException
1188
+ attr_accessor type: ::String
1189
+ attr_accessor message: ::String
1190
+ SENSITIVE: []
1191
+ end
1192
+
1193
+ class ResourceInUseException
1194
+ attr_accessor type: ::String
1195
+ attr_accessor message: ::String
1196
+ SENSITIVE: []
1197
+ end
1198
+
1199
+ class ResourceNotFoundException
1200
+ attr_accessor type: ::String
1201
+ attr_accessor message: ::String
1202
+ SENSITIVE: []
1203
+ end
1204
+
1205
+ class ResourceNotReadyException
1206
+ attr_accessor type: ::String
1207
+ attr_accessor message: ::String
1208
+ SENSITIVE: []
1209
+ end
1210
+
1211
+ class RuntimeVersionConfig
1212
+ attr_accessor runtime_version_arn: ::String
1213
+ attr_accessor error: Types::RuntimeVersionError
1214
+ SENSITIVE: []
1215
+ end
1216
+
1217
+ class RuntimeVersionError
1218
+ attr_accessor error_code: ::String
1219
+ attr_accessor message: ::String
1220
+ SENSITIVE: [:message]
1221
+ end
1222
+
1223
+ class ScalingConfig
1224
+ attr_accessor maximum_concurrency: ::Integer
1225
+ SENSITIVE: []
1226
+ end
1227
+
1228
+ class SelfManagedEventSource
1229
+ attr_accessor endpoints: ::Hash[("KAFKA_BOOTSTRAP_SERVERS"), ::Array[::String]]
1230
+ SENSITIVE: []
1231
+ end
1232
+
1233
+ class SelfManagedKafkaEventSourceConfig
1234
+ attr_accessor consumer_group_id: ::String
1235
+ SENSITIVE: []
1236
+ end
1237
+
1238
+ class ServiceException
1239
+ attr_accessor type: ::String
1240
+ attr_accessor message: ::String
1241
+ SENSITIVE: []
1242
+ end
1243
+
1244
+ class SnapStart
1245
+ attr_accessor apply_on: ("PublishedVersions" | "None")
1246
+ SENSITIVE: []
1247
+ end
1248
+
1249
+ class SnapStartException
1250
+ attr_accessor type: ::String
1251
+ attr_accessor message: ::String
1252
+ SENSITIVE: []
1253
+ end
1254
+
1255
+ class SnapStartNotReadyException
1256
+ attr_accessor type: ::String
1257
+ attr_accessor message: ::String
1258
+ SENSITIVE: []
1259
+ end
1260
+
1261
+ class SnapStartResponse
1262
+ attr_accessor apply_on: ("PublishedVersions" | "None")
1263
+ attr_accessor optimization_status: ("On" | "Off")
1264
+ SENSITIVE: []
1265
+ end
1266
+
1267
+ class SnapStartTimeoutException
1268
+ attr_accessor type: ::String
1269
+ attr_accessor message: ::String
1270
+ SENSITIVE: []
1271
+ end
1272
+
1273
+ class SourceAccessConfiguration
1274
+ attr_accessor type: ("BASIC_AUTH" | "VPC_SUBNET" | "VPC_SECURITY_GROUP" | "SASL_SCRAM_512_AUTH" | "SASL_SCRAM_256_AUTH" | "VIRTUAL_HOST" | "CLIENT_CERTIFICATE_TLS_AUTH" | "SERVER_ROOT_CA_CERTIFICATE")
1275
+ attr_accessor uri: ::String
1276
+ SENSITIVE: []
1277
+ end
1278
+
1279
+ class SubnetIPAddressLimitReachedException
1280
+ attr_accessor type: ::String
1281
+ attr_accessor message: ::String
1282
+ SENSITIVE: []
1283
+ end
1284
+
1285
+ class TagResourceRequest
1286
+ attr_accessor resource: ::String
1287
+ attr_accessor tags: ::Hash[::String, ::String]
1288
+ SENSITIVE: []
1289
+ end
1290
+
1291
+ class TooManyRequestsException
1292
+ attr_accessor retry_after_seconds: ::String
1293
+ attr_accessor type: ::String
1294
+ attr_accessor message: ::String
1295
+ attr_accessor reason: ("ConcurrentInvocationLimitExceeded" | "FunctionInvocationRateLimitExceeded" | "ReservedFunctionConcurrentInvocationLimitExceeded" | "ReservedFunctionInvocationRateLimitExceeded" | "CallerRateLimitExceeded" | "ConcurrentSnapshotCreateLimitExceeded")
1296
+ SENSITIVE: []
1297
+ end
1298
+
1299
+ class TracingConfig
1300
+ attr_accessor mode: ("Active" | "PassThrough")
1301
+ SENSITIVE: []
1302
+ end
1303
+
1304
+ class TracingConfigResponse
1305
+ attr_accessor mode: ("Active" | "PassThrough")
1306
+ SENSITIVE: []
1307
+ end
1308
+
1309
+ class UnsupportedMediaTypeException
1310
+ attr_accessor type: ::String
1311
+ attr_accessor message: ::String
1312
+ SENSITIVE: []
1313
+ end
1314
+
1315
+ class UntagResourceRequest
1316
+ attr_accessor resource: ::String
1317
+ attr_accessor tag_keys: ::Array[::String]
1318
+ SENSITIVE: []
1319
+ end
1320
+
1321
+ class UpdateAliasRequest
1322
+ attr_accessor function_name: ::String
1323
+ attr_accessor name: ::String
1324
+ attr_accessor function_version: ::String
1325
+ attr_accessor description: ::String
1326
+ attr_accessor routing_config: Types::AliasRoutingConfiguration
1327
+ attr_accessor revision_id: ::String
1328
+ SENSITIVE: []
1329
+ end
1330
+
1331
+ class UpdateCodeSigningConfigRequest
1332
+ attr_accessor code_signing_config_arn: ::String
1333
+ attr_accessor description: ::String
1334
+ attr_accessor allowed_publishers: Types::AllowedPublishers
1335
+ attr_accessor code_signing_policies: Types::CodeSigningPolicies
1336
+ SENSITIVE: []
1337
+ end
1338
+
1339
+ class UpdateCodeSigningConfigResponse
1340
+ attr_accessor code_signing_config: Types::CodeSigningConfig
1341
+ SENSITIVE: []
1342
+ end
1343
+
1344
+ class UpdateEventSourceMappingRequest
1345
+ attr_accessor uuid: ::String
1346
+ attr_accessor function_name: ::String
1347
+ attr_accessor enabled: bool
1348
+ attr_accessor batch_size: ::Integer
1349
+ attr_accessor filter_criteria: Types::FilterCriteria
1350
+ attr_accessor maximum_batching_window_in_seconds: ::Integer
1351
+ attr_accessor destination_config: Types::DestinationConfig
1352
+ attr_accessor maximum_record_age_in_seconds: ::Integer
1353
+ attr_accessor bisect_batch_on_function_error: bool
1354
+ attr_accessor maximum_retry_attempts: ::Integer
1355
+ attr_accessor parallelization_factor: ::Integer
1356
+ attr_accessor source_access_configurations: ::Array[Types::SourceAccessConfiguration]
1357
+ attr_accessor tumbling_window_in_seconds: ::Integer
1358
+ attr_accessor function_response_types: ::Array[("ReportBatchItemFailures")]
1359
+ attr_accessor scaling_config: Types::ScalingConfig
1360
+ attr_accessor document_db_event_source_config: Types::DocumentDBEventSourceConfig
1361
+ SENSITIVE: []
1362
+ end
1363
+
1364
+ class UpdateFunctionCodeRequest
1365
+ attr_accessor function_name: ::String
1366
+ attr_accessor zip_file: ::String
1367
+ attr_accessor s3_bucket: ::String
1368
+ attr_accessor s3_key: ::String
1369
+ attr_accessor s3_object_version: ::String
1370
+ attr_accessor image_uri: ::String
1371
+ attr_accessor publish: bool
1372
+ attr_accessor dry_run: bool
1373
+ attr_accessor revision_id: ::String
1374
+ attr_accessor architectures: ::Array[("x86_64" | "arm64")]
1375
+ SENSITIVE: [:zip_file]
1376
+ end
1377
+
1378
+ class UpdateFunctionConfigurationRequest
1379
+ attr_accessor function_name: ::String
1380
+ attr_accessor role: ::String
1381
+ attr_accessor handler: ::String
1382
+ attr_accessor description: ::String
1383
+ attr_accessor timeout: ::Integer
1384
+ attr_accessor memory_size: ::Integer
1385
+ attr_accessor vpc_config: Types::VpcConfig
1386
+ attr_accessor environment: Types::Environment
1387
+ attr_accessor runtime: ("nodejs" | "nodejs4.3" | "nodejs6.10" | "nodejs8.10" | "nodejs10.x" | "nodejs12.x" | "nodejs14.x" | "nodejs16.x" | "java8" | "java8.al2" | "java11" | "python2.7" | "python3.6" | "python3.7" | "python3.8" | "python3.9" | "dotnetcore1.0" | "dotnetcore2.0" | "dotnetcore2.1" | "dotnetcore3.1" | "dotnet6" | "nodejs4.3-edge" | "go1.x" | "ruby2.5" | "ruby2.7" | "provided" | "provided.al2" | "nodejs18.x" | "python3.10" | "java17" | "ruby3.2" | "python3.11" | "nodejs20.x" | "provided.al2023" | "python3.12" | "java21")
1388
+ attr_accessor dead_letter_config: Types::DeadLetterConfig
1389
+ attr_accessor kms_key_arn: ::String
1390
+ attr_accessor tracing_config: Types::TracingConfig
1391
+ attr_accessor revision_id: ::String
1392
+ attr_accessor layers: ::Array[::String]
1393
+ attr_accessor file_system_configs: ::Array[Types::FileSystemConfig]
1394
+ attr_accessor image_config: Types::ImageConfig
1395
+ attr_accessor ephemeral_storage: Types::EphemeralStorage
1396
+ attr_accessor snap_start: Types::SnapStart
1397
+ attr_accessor logging_config: Types::LoggingConfig
1398
+ SENSITIVE: []
1399
+ end
1400
+
1401
+ class UpdateFunctionEventInvokeConfigRequest
1402
+ attr_accessor function_name: ::String
1403
+ attr_accessor qualifier: ::String
1404
+ attr_accessor maximum_retry_attempts: ::Integer
1405
+ attr_accessor maximum_event_age_in_seconds: ::Integer
1406
+ attr_accessor destination_config: Types::DestinationConfig
1407
+ SENSITIVE: []
1408
+ end
1409
+
1410
+ class UpdateFunctionUrlConfigRequest
1411
+ attr_accessor function_name: ::String
1412
+ attr_accessor qualifier: ::String
1413
+ attr_accessor auth_type: ("NONE" | "AWS_IAM")
1414
+ attr_accessor cors: Types::Cors
1415
+ attr_accessor invoke_mode: ("BUFFERED" | "RESPONSE_STREAM")
1416
+ SENSITIVE: []
1417
+ end
1418
+
1419
+ class UpdateFunctionUrlConfigResponse
1420
+ attr_accessor function_url: ::String
1421
+ attr_accessor function_arn: ::String
1422
+ attr_accessor auth_type: ("NONE" | "AWS_IAM")
1423
+ attr_accessor cors: Types::Cors
1424
+ attr_accessor creation_time: ::Time
1425
+ attr_accessor last_modified_time: ::Time
1426
+ attr_accessor invoke_mode: ("BUFFERED" | "RESPONSE_STREAM")
1427
+ SENSITIVE: []
1428
+ end
1429
+
1430
+ class VpcConfig
1431
+ attr_accessor subnet_ids: ::Array[::String]
1432
+ attr_accessor security_group_ids: ::Array[::String]
1433
+ attr_accessor ipv_6_allowed_for_dual_stack: bool
1434
+ SENSITIVE: []
1435
+ end
1436
+
1437
+ class VpcConfigResponse
1438
+ attr_accessor subnet_ids: ::Array[::String]
1439
+ attr_accessor security_group_ids: ::Array[::String]
1440
+ attr_accessor vpc_id: ::String
1441
+ attr_accessor ipv_6_allowed_for_dual_stack: bool
1442
+ SENSITIVE: []
1443
+ end
1444
+
1445
+ class InvokeWithResponseStreamResponseEvent < Enumerator[untyped, untyped]
1446
+ def event_types: () -> [:payload_chunk, :invoke_complete]
1447
+ end
1448
+ end
1449
+ end