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/client.rbs ADDED
@@ -0,0 +1,1481 @@
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
9
+ module Lambda
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?event_stream_handler: Proc,
36
+ ?ignore_configured_endpoint_urls: bool,
37
+ ?input_event_stream_handler: Proc,
38
+ ?log_formatter: untyped,
39
+ ?log_level: Symbol,
40
+ ?logger: untyped,
41
+ ?max_attempts: Integer,
42
+ ?output_event_stream_handler: Proc,
43
+ ?profile: String,
44
+ ?request_min_compression_size_bytes: Integer,
45
+ ?retry_backoff: Proc,
46
+ ?retry_base_delay: Float,
47
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
48
+ ?retry_limit: Integer,
49
+ ?retry_max_delay: Integer,
50
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
51
+ ?sdk_ua_app_id: String,
52
+ ?secret_access_key: String,
53
+ ?session_token: String,
54
+ ?stub_responses: untyped,
55
+ ?token_provider: untyped,
56
+ ?use_dualstack_endpoint: bool,
57
+ ?use_fips_endpoint: bool,
58
+ ?validate_params: bool,
59
+ ?endpoint_provider: untyped,
60
+ ?http_proxy: String,
61
+ ?http_open_timeout: (Float | Integer),
62
+ ?http_read_timeout: (Float | Integer),
63
+ ?http_idle_timeout: (Float | Integer),
64
+ ?http_continue_timeout: (Float | Integer),
65
+ ?ssl_timeout: (Float | Integer | nil),
66
+ ?http_wire_trace: bool,
67
+ ?ssl_verify_peer: bool,
68
+ ?ssl_ca_bundle: String,
69
+ ?ssl_ca_directory: String,
70
+ ?ssl_ca_store: String,
71
+ ?on_chunk_received: Proc,
72
+ ?on_chunk_sent: Proc,
73
+ ?raise_response_errors: bool
74
+ ) -> instance
75
+ | (?Hash[Symbol, untyped]) -> instance
76
+
77
+
78
+ interface _AddLayerVersionPermissionResponseSuccess
79
+ include ::Seahorse::Client::_ResponseSuccess[Types::AddLayerVersionPermissionResponse]
80
+ def statement: () -> ::String
81
+ def revision_id: () -> ::String
82
+ end
83
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#add_layer_version_permission-instance_method
84
+ def add_layer_version_permission: (
85
+ layer_name: ::String,
86
+ version_number: ::Integer,
87
+ statement_id: ::String,
88
+ action: ::String,
89
+ principal: ::String,
90
+ ?organization_id: ::String,
91
+ ?revision_id: ::String
92
+ ) -> _AddLayerVersionPermissionResponseSuccess
93
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddLayerVersionPermissionResponseSuccess
94
+
95
+ interface _AddPermissionResponseSuccess
96
+ include ::Seahorse::Client::_ResponseSuccess[Types::AddPermissionResponse]
97
+ def statement: () -> ::String
98
+ end
99
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#add_permission-instance_method
100
+ def add_permission: (
101
+ function_name: ::String,
102
+ statement_id: ::String,
103
+ action: ::String,
104
+ principal: ::String,
105
+ ?source_arn: ::String,
106
+ ?source_account: ::String,
107
+ ?event_source_token: ::String,
108
+ ?qualifier: ::String,
109
+ ?revision_id: ::String,
110
+ ?principal_org_id: ::String,
111
+ ?function_url_auth_type: ("NONE" | "AWS_IAM")
112
+ ) -> _AddPermissionResponseSuccess
113
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddPermissionResponseSuccess
114
+
115
+ interface _CreateAliasResponseSuccess
116
+ include ::Seahorse::Client::_ResponseSuccess[Types::AliasConfiguration]
117
+ def alias_arn: () -> ::String
118
+ def name: () -> ::String
119
+ def function_version: () -> ::String
120
+ def description: () -> ::String
121
+ def routing_config: () -> Types::AliasRoutingConfiguration
122
+ def revision_id: () -> ::String
123
+ end
124
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#create_alias-instance_method
125
+ def create_alias: (
126
+ function_name: ::String,
127
+ name: ::String,
128
+ function_version: ::String,
129
+ ?description: ::String,
130
+ ?routing_config: {
131
+ additional_version_weights: Hash[::String, ::Float]?
132
+ }
133
+ ) -> _CreateAliasResponseSuccess
134
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAliasResponseSuccess
135
+
136
+ interface _CreateCodeSigningConfigResponseSuccess
137
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCodeSigningConfigResponse]
138
+ def code_signing_config: () -> Types::CodeSigningConfig
139
+ end
140
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#create_code_signing_config-instance_method
141
+ def create_code_signing_config: (
142
+ ?description: ::String,
143
+ allowed_publishers: {
144
+ signing_profile_version_arns: Array[::String]
145
+ },
146
+ ?code_signing_policies: {
147
+ untrusted_artifact_on_deployment: ("Warn" | "Enforce")?
148
+ }
149
+ ) -> _CreateCodeSigningConfigResponseSuccess
150
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCodeSigningConfigResponseSuccess
151
+
152
+ interface _CreateEventSourceMappingResponseSuccess
153
+ include ::Seahorse::Client::_ResponseSuccess[Types::EventSourceMappingConfiguration]
154
+ def uuid: () -> ::String
155
+ def starting_position: () -> ("TRIM_HORIZON" | "LATEST" | "AT_TIMESTAMP")
156
+ def starting_position_timestamp: () -> ::Time
157
+ def batch_size: () -> ::Integer
158
+ def maximum_batching_window_in_seconds: () -> ::Integer
159
+ def parallelization_factor: () -> ::Integer
160
+ def event_source_arn: () -> ::String
161
+ def filter_criteria: () -> Types::FilterCriteria
162
+ def function_arn: () -> ::String
163
+ def last_modified: () -> ::Time
164
+ def last_processing_result: () -> ::String
165
+ def state: () -> ::String
166
+ def state_transition_reason: () -> ::String
167
+ def destination_config: () -> Types::DestinationConfig
168
+ def topics: () -> ::Array[::String]
169
+ def queues: () -> ::Array[::String]
170
+ def source_access_configurations: () -> ::Array[Types::SourceAccessConfiguration]
171
+ def self_managed_event_source: () -> Types::SelfManagedEventSource
172
+ def maximum_record_age_in_seconds: () -> ::Integer
173
+ def bisect_batch_on_function_error: () -> bool
174
+ def maximum_retry_attempts: () -> ::Integer
175
+ def tumbling_window_in_seconds: () -> ::Integer
176
+ def function_response_types: () -> ::Array[("ReportBatchItemFailures")]
177
+ def amazon_managed_kafka_event_source_config: () -> Types::AmazonManagedKafkaEventSourceConfig
178
+ def self_managed_kafka_event_source_config: () -> Types::SelfManagedKafkaEventSourceConfig
179
+ def scaling_config: () -> Types::ScalingConfig
180
+ def document_db_event_source_config: () -> Types::DocumentDBEventSourceConfig
181
+ end
182
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#create_event_source_mapping-instance_method
183
+ def create_event_source_mapping: (
184
+ ?event_source_arn: ::String,
185
+ function_name: ::String,
186
+ ?enabled: bool,
187
+ ?batch_size: ::Integer,
188
+ ?filter_criteria: {
189
+ filters: Array[
190
+ {
191
+ pattern: ::String?
192
+ },
193
+ ]?
194
+ },
195
+ ?maximum_batching_window_in_seconds: ::Integer,
196
+ ?parallelization_factor: ::Integer,
197
+ ?starting_position: ("TRIM_HORIZON" | "LATEST" | "AT_TIMESTAMP"),
198
+ ?starting_position_timestamp: ::Time,
199
+ ?destination_config: {
200
+ on_success: {
201
+ destination: ::String?
202
+ }?,
203
+ on_failure: {
204
+ destination: ::String?
205
+ }?
206
+ },
207
+ ?maximum_record_age_in_seconds: ::Integer,
208
+ ?bisect_batch_on_function_error: bool,
209
+ ?maximum_retry_attempts: ::Integer,
210
+ ?tumbling_window_in_seconds: ::Integer,
211
+ ?topics: Array[::String],
212
+ ?queues: Array[::String],
213
+ ?source_access_configurations: Array[
214
+ {
215
+ 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")?,
216
+ uri: ::String?
217
+ },
218
+ ],
219
+ ?self_managed_event_source: {
220
+ endpoints: Hash[("KAFKA_BOOTSTRAP_SERVERS"), Array[::String]]?
221
+ },
222
+ ?function_response_types: Array[("ReportBatchItemFailures")],
223
+ ?amazon_managed_kafka_event_source_config: {
224
+ consumer_group_id: ::String?
225
+ },
226
+ ?self_managed_kafka_event_source_config: {
227
+ consumer_group_id: ::String?
228
+ },
229
+ ?scaling_config: {
230
+ maximum_concurrency: ::Integer?
231
+ },
232
+ ?document_db_event_source_config: {
233
+ database_name: ::String?,
234
+ collection_name: ::String?,
235
+ full_document: ("UpdateLookup" | "Default")?
236
+ }
237
+ ) -> _CreateEventSourceMappingResponseSuccess
238
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEventSourceMappingResponseSuccess
239
+
240
+ interface _CreateFunctionResponseSuccess
241
+ include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
242
+ def function_name: () -> ::String
243
+ def function_arn: () -> ::String
244
+ def 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")
245
+ def role: () -> ::String
246
+ def handler: () -> ::String
247
+ def code_size: () -> ::Integer
248
+ def description: () -> ::String
249
+ def timeout: () -> ::Integer
250
+ def memory_size: () -> ::Integer
251
+ def last_modified: () -> ::Time
252
+ def code_sha_256: () -> ::String
253
+ def version: () -> ::String
254
+ def vpc_config: () -> Types::VpcConfigResponse
255
+ def dead_letter_config: () -> Types::DeadLetterConfig
256
+ def environment: () -> Types::EnvironmentResponse
257
+ def kms_key_arn: () -> ::String
258
+ def tracing_config: () -> Types::TracingConfigResponse
259
+ def master_arn: () -> ::String
260
+ def revision_id: () -> ::String
261
+ def layers: () -> ::Array[Types::Layer]
262
+ def state: () -> ("Pending" | "Active" | "Inactive" | "Failed")
263
+ def state_reason: () -> ::String
264
+ def 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")
265
+ def last_update_status: () -> ("Successful" | "Failed" | "InProgress")
266
+ def last_update_status_reason: () -> ::String
267
+ def 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")
268
+ def file_system_configs: () -> ::Array[Types::FileSystemConfig]
269
+ def package_type: () -> ("Zip" | "Image")
270
+ def image_config_response: () -> Types::ImageConfigResponse
271
+ def signing_profile_version_arn: () -> ::String
272
+ def signing_job_arn: () -> ::String
273
+ def architectures: () -> ::Array[("x86_64" | "arm64")]
274
+ def ephemeral_storage: () -> Types::EphemeralStorage
275
+ def snap_start: () -> Types::SnapStartResponse
276
+ def runtime_version_config: () -> Types::RuntimeVersionConfig
277
+ def logging_config: () -> Types::LoggingConfig
278
+ end
279
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#create_function-instance_method
280
+ def create_function: (
281
+ function_name: ::String,
282
+ ?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"),
283
+ role: ::String,
284
+ ?handler: ::String,
285
+ code: {
286
+ zip_file: ::String?,
287
+ s3_bucket: ::String?,
288
+ s3_key: ::String?,
289
+ s3_object_version: ::String?,
290
+ image_uri: ::String?
291
+ },
292
+ ?description: ::String,
293
+ ?timeout: ::Integer,
294
+ ?memory_size: ::Integer,
295
+ ?publish: bool,
296
+ ?vpc_config: {
297
+ subnet_ids: Array[::String]?,
298
+ security_group_ids: Array[::String]?,
299
+ ipv_6_allowed_for_dual_stack: bool?
300
+ },
301
+ ?package_type: ("Zip" | "Image"),
302
+ ?dead_letter_config: {
303
+ target_arn: ::String?
304
+ },
305
+ ?environment: {
306
+ variables: Hash[::String, ::String]?
307
+ },
308
+ ?kms_key_arn: ::String,
309
+ ?tracing_config: {
310
+ mode: ("Active" | "PassThrough")?
311
+ },
312
+ ?tags: Hash[::String, ::String],
313
+ ?layers: Array[::String],
314
+ ?file_system_configs: Array[
315
+ {
316
+ arn: ::String,
317
+ local_mount_path: ::String
318
+ },
319
+ ],
320
+ ?image_config: {
321
+ entry_point: Array[::String]?,
322
+ command: Array[::String]?,
323
+ working_directory: ::String?
324
+ },
325
+ ?code_signing_config_arn: ::String,
326
+ ?architectures: Array[("x86_64" | "arm64")],
327
+ ?ephemeral_storage: {
328
+ size: ::Integer
329
+ },
330
+ ?snap_start: {
331
+ apply_on: ("PublishedVersions" | "None")?
332
+ },
333
+ ?logging_config: {
334
+ log_format: ("JSON" | "Text")?,
335
+ application_log_level: ("TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL")?,
336
+ system_log_level: ("DEBUG" | "INFO" | "WARN")?,
337
+ log_group: ::String?
338
+ }
339
+ ) -> _CreateFunctionResponseSuccess
340
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFunctionResponseSuccess
341
+
342
+ interface _CreateFunctionUrlConfigResponseSuccess
343
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateFunctionUrlConfigResponse]
344
+ def function_url: () -> ::String
345
+ def function_arn: () -> ::String
346
+ def auth_type: () -> ("NONE" | "AWS_IAM")
347
+ def cors: () -> Types::Cors
348
+ def creation_time: () -> ::Time
349
+ def invoke_mode: () -> ("BUFFERED" | "RESPONSE_STREAM")
350
+ end
351
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#create_function_url_config-instance_method
352
+ def create_function_url_config: (
353
+ function_name: ::String,
354
+ ?qualifier: ::String,
355
+ auth_type: ("NONE" | "AWS_IAM"),
356
+ ?cors: {
357
+ allow_credentials: bool?,
358
+ allow_headers: Array[::String]?,
359
+ allow_methods: Array[::String]?,
360
+ allow_origins: Array[::String]?,
361
+ expose_headers: Array[::String]?,
362
+ max_age: ::Integer?
363
+ },
364
+ ?invoke_mode: ("BUFFERED" | "RESPONSE_STREAM")
365
+ ) -> _CreateFunctionUrlConfigResponseSuccess
366
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFunctionUrlConfigResponseSuccess
367
+
368
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#delete_alias-instance_method
369
+ def delete_alias: (
370
+ function_name: ::String,
371
+ name: ::String
372
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
373
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
374
+
375
+ interface _DeleteCodeSigningConfigResponseSuccess
376
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCodeSigningConfigResponse]
377
+ end
378
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#delete_code_signing_config-instance_method
379
+ def delete_code_signing_config: (
380
+ code_signing_config_arn: ::String
381
+ ) -> _DeleteCodeSigningConfigResponseSuccess
382
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCodeSigningConfigResponseSuccess
383
+
384
+ interface _DeleteEventSourceMappingResponseSuccess
385
+ include ::Seahorse::Client::_ResponseSuccess[Types::EventSourceMappingConfiguration]
386
+ def uuid: () -> ::String
387
+ def starting_position: () -> ("TRIM_HORIZON" | "LATEST" | "AT_TIMESTAMP")
388
+ def starting_position_timestamp: () -> ::Time
389
+ def batch_size: () -> ::Integer
390
+ def maximum_batching_window_in_seconds: () -> ::Integer
391
+ def parallelization_factor: () -> ::Integer
392
+ def event_source_arn: () -> ::String
393
+ def filter_criteria: () -> Types::FilterCriteria
394
+ def function_arn: () -> ::String
395
+ def last_modified: () -> ::Time
396
+ def last_processing_result: () -> ::String
397
+ def state: () -> ::String
398
+ def state_transition_reason: () -> ::String
399
+ def destination_config: () -> Types::DestinationConfig
400
+ def topics: () -> ::Array[::String]
401
+ def queues: () -> ::Array[::String]
402
+ def source_access_configurations: () -> ::Array[Types::SourceAccessConfiguration]
403
+ def self_managed_event_source: () -> Types::SelfManagedEventSource
404
+ def maximum_record_age_in_seconds: () -> ::Integer
405
+ def bisect_batch_on_function_error: () -> bool
406
+ def maximum_retry_attempts: () -> ::Integer
407
+ def tumbling_window_in_seconds: () -> ::Integer
408
+ def function_response_types: () -> ::Array[("ReportBatchItemFailures")]
409
+ def amazon_managed_kafka_event_source_config: () -> Types::AmazonManagedKafkaEventSourceConfig
410
+ def self_managed_kafka_event_source_config: () -> Types::SelfManagedKafkaEventSourceConfig
411
+ def scaling_config: () -> Types::ScalingConfig
412
+ def document_db_event_source_config: () -> Types::DocumentDBEventSourceConfig
413
+ end
414
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#delete_event_source_mapping-instance_method
415
+ def delete_event_source_mapping: (
416
+ uuid: ::String
417
+ ) -> _DeleteEventSourceMappingResponseSuccess
418
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEventSourceMappingResponseSuccess
419
+
420
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#delete_function-instance_method
421
+ def delete_function: (
422
+ function_name: ::String,
423
+ ?qualifier: ::String
424
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
425
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
426
+
427
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#delete_function_code_signing_config-instance_method
428
+ def delete_function_code_signing_config: (
429
+ function_name: ::String
430
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
431
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
432
+
433
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#delete_function_concurrency-instance_method
434
+ def delete_function_concurrency: (
435
+ function_name: ::String
436
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
437
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
438
+
439
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#delete_function_event_invoke_config-instance_method
440
+ def delete_function_event_invoke_config: (
441
+ function_name: ::String,
442
+ ?qualifier: ::String
443
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
444
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
445
+
446
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#delete_function_url_config-instance_method
447
+ def delete_function_url_config: (
448
+ function_name: ::String,
449
+ ?qualifier: ::String
450
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
451
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
452
+
453
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#delete_layer_version-instance_method
454
+ def delete_layer_version: (
455
+ layer_name: ::String,
456
+ version_number: ::Integer
457
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
458
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
459
+
460
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#delete_provisioned_concurrency_config-instance_method
461
+ def delete_provisioned_concurrency_config: (
462
+ function_name: ::String,
463
+ qualifier: ::String
464
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
465
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
466
+
467
+ interface _GetAccountSettingsResponseSuccess
468
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountSettingsResponse]
469
+ def account_limit: () -> Types::AccountLimit
470
+ def account_usage: () -> Types::AccountUsage
471
+ end
472
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_account_settings-instance_method
473
+ def get_account_settings: (
474
+ ) -> _GetAccountSettingsResponseSuccess
475
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountSettingsResponseSuccess
476
+
477
+ interface _GetAliasResponseSuccess
478
+ include ::Seahorse::Client::_ResponseSuccess[Types::AliasConfiguration]
479
+ def alias_arn: () -> ::String
480
+ def name: () -> ::String
481
+ def function_version: () -> ::String
482
+ def description: () -> ::String
483
+ def routing_config: () -> Types::AliasRoutingConfiguration
484
+ def revision_id: () -> ::String
485
+ end
486
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_alias-instance_method
487
+ def get_alias: (
488
+ function_name: ::String,
489
+ name: ::String
490
+ ) -> _GetAliasResponseSuccess
491
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAliasResponseSuccess
492
+
493
+ interface _GetCodeSigningConfigResponseSuccess
494
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCodeSigningConfigResponse]
495
+ def code_signing_config: () -> Types::CodeSigningConfig
496
+ end
497
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_code_signing_config-instance_method
498
+ def get_code_signing_config: (
499
+ code_signing_config_arn: ::String
500
+ ) -> _GetCodeSigningConfigResponseSuccess
501
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCodeSigningConfigResponseSuccess
502
+
503
+ interface _GetEventSourceMappingResponseSuccess
504
+ include ::Seahorse::Client::_ResponseSuccess[Types::EventSourceMappingConfiguration]
505
+ def uuid: () -> ::String
506
+ def starting_position: () -> ("TRIM_HORIZON" | "LATEST" | "AT_TIMESTAMP")
507
+ def starting_position_timestamp: () -> ::Time
508
+ def batch_size: () -> ::Integer
509
+ def maximum_batching_window_in_seconds: () -> ::Integer
510
+ def parallelization_factor: () -> ::Integer
511
+ def event_source_arn: () -> ::String
512
+ def filter_criteria: () -> Types::FilterCriteria
513
+ def function_arn: () -> ::String
514
+ def last_modified: () -> ::Time
515
+ def last_processing_result: () -> ::String
516
+ def state: () -> ::String
517
+ def state_transition_reason: () -> ::String
518
+ def destination_config: () -> Types::DestinationConfig
519
+ def topics: () -> ::Array[::String]
520
+ def queues: () -> ::Array[::String]
521
+ def source_access_configurations: () -> ::Array[Types::SourceAccessConfiguration]
522
+ def self_managed_event_source: () -> Types::SelfManagedEventSource
523
+ def maximum_record_age_in_seconds: () -> ::Integer
524
+ def bisect_batch_on_function_error: () -> bool
525
+ def maximum_retry_attempts: () -> ::Integer
526
+ def tumbling_window_in_seconds: () -> ::Integer
527
+ def function_response_types: () -> ::Array[("ReportBatchItemFailures")]
528
+ def amazon_managed_kafka_event_source_config: () -> Types::AmazonManagedKafkaEventSourceConfig
529
+ def self_managed_kafka_event_source_config: () -> Types::SelfManagedKafkaEventSourceConfig
530
+ def scaling_config: () -> Types::ScalingConfig
531
+ def document_db_event_source_config: () -> Types::DocumentDBEventSourceConfig
532
+ end
533
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_event_source_mapping-instance_method
534
+ def get_event_source_mapping: (
535
+ uuid: ::String
536
+ ) -> _GetEventSourceMappingResponseSuccess
537
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEventSourceMappingResponseSuccess
538
+
539
+ interface _GetFunctionResponseSuccess
540
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetFunctionResponse]
541
+ def configuration: () -> Types::FunctionConfiguration
542
+ def code: () -> Types::FunctionCodeLocation
543
+ def tags: () -> ::Hash[::String, ::String]
544
+ def concurrency: () -> Types::Concurrency
545
+ end
546
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_function-instance_method
547
+ def get_function: (
548
+ function_name: ::String,
549
+ ?qualifier: ::String
550
+ ) -> _GetFunctionResponseSuccess
551
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFunctionResponseSuccess
552
+
553
+ interface _GetFunctionCodeSigningConfigResponseSuccess
554
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetFunctionCodeSigningConfigResponse]
555
+ def code_signing_config_arn: () -> ::String
556
+ def function_name: () -> ::String
557
+ end
558
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_function_code_signing_config-instance_method
559
+ def get_function_code_signing_config: (
560
+ function_name: ::String
561
+ ) -> _GetFunctionCodeSigningConfigResponseSuccess
562
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFunctionCodeSigningConfigResponseSuccess
563
+
564
+ interface _GetFunctionConcurrencyResponseSuccess
565
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetFunctionConcurrencyResponse]
566
+ def reserved_concurrent_executions: () -> ::Integer
567
+ end
568
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_function_concurrency-instance_method
569
+ def get_function_concurrency: (
570
+ function_name: ::String
571
+ ) -> _GetFunctionConcurrencyResponseSuccess
572
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFunctionConcurrencyResponseSuccess
573
+
574
+ interface _GetFunctionConfigurationResponseSuccess
575
+ include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
576
+ def function_name: () -> ::String
577
+ def function_arn: () -> ::String
578
+ def 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")
579
+ def role: () -> ::String
580
+ def handler: () -> ::String
581
+ def code_size: () -> ::Integer
582
+ def description: () -> ::String
583
+ def timeout: () -> ::Integer
584
+ def memory_size: () -> ::Integer
585
+ def last_modified: () -> ::Time
586
+ def code_sha_256: () -> ::String
587
+ def version: () -> ::String
588
+ def vpc_config: () -> Types::VpcConfigResponse
589
+ def dead_letter_config: () -> Types::DeadLetterConfig
590
+ def environment: () -> Types::EnvironmentResponse
591
+ def kms_key_arn: () -> ::String
592
+ def tracing_config: () -> Types::TracingConfigResponse
593
+ def master_arn: () -> ::String
594
+ def revision_id: () -> ::String
595
+ def layers: () -> ::Array[Types::Layer]
596
+ def state: () -> ("Pending" | "Active" | "Inactive" | "Failed")
597
+ def state_reason: () -> ::String
598
+ def 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")
599
+ def last_update_status: () -> ("Successful" | "Failed" | "InProgress")
600
+ def last_update_status_reason: () -> ::String
601
+ def 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")
602
+ def file_system_configs: () -> ::Array[Types::FileSystemConfig]
603
+ def package_type: () -> ("Zip" | "Image")
604
+ def image_config_response: () -> Types::ImageConfigResponse
605
+ def signing_profile_version_arn: () -> ::String
606
+ def signing_job_arn: () -> ::String
607
+ def architectures: () -> ::Array[("x86_64" | "arm64")]
608
+ def ephemeral_storage: () -> Types::EphemeralStorage
609
+ def snap_start: () -> Types::SnapStartResponse
610
+ def runtime_version_config: () -> Types::RuntimeVersionConfig
611
+ def logging_config: () -> Types::LoggingConfig
612
+ end
613
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_function_configuration-instance_method
614
+ def get_function_configuration: (
615
+ function_name: ::String,
616
+ ?qualifier: ::String
617
+ ) -> _GetFunctionConfigurationResponseSuccess
618
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFunctionConfigurationResponseSuccess
619
+
620
+ interface _GetFunctionEventInvokeConfigResponseSuccess
621
+ include ::Seahorse::Client::_ResponseSuccess[Types::FunctionEventInvokeConfig]
622
+ def last_modified: () -> ::Time
623
+ def function_arn: () -> ::String
624
+ def maximum_retry_attempts: () -> ::Integer
625
+ def maximum_event_age_in_seconds: () -> ::Integer
626
+ def destination_config: () -> Types::DestinationConfig
627
+ end
628
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_function_event_invoke_config-instance_method
629
+ def get_function_event_invoke_config: (
630
+ function_name: ::String,
631
+ ?qualifier: ::String
632
+ ) -> _GetFunctionEventInvokeConfigResponseSuccess
633
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFunctionEventInvokeConfigResponseSuccess
634
+
635
+ interface _GetFunctionUrlConfigResponseSuccess
636
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetFunctionUrlConfigResponse]
637
+ def function_url: () -> ::String
638
+ def function_arn: () -> ::String
639
+ def auth_type: () -> ("NONE" | "AWS_IAM")
640
+ def cors: () -> Types::Cors
641
+ def creation_time: () -> ::Time
642
+ def last_modified_time: () -> ::Time
643
+ def invoke_mode: () -> ("BUFFERED" | "RESPONSE_STREAM")
644
+ end
645
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_function_url_config-instance_method
646
+ def get_function_url_config: (
647
+ function_name: ::String,
648
+ ?qualifier: ::String
649
+ ) -> _GetFunctionUrlConfigResponseSuccess
650
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFunctionUrlConfigResponseSuccess
651
+
652
+ interface _GetLayerVersionResponseSuccess
653
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLayerVersionResponse]
654
+ def content: () -> Types::LayerVersionContentOutput
655
+ def layer_arn: () -> ::String
656
+ def layer_version_arn: () -> ::String
657
+ def description: () -> ::String
658
+ def created_date: () -> ::Time
659
+ def version: () -> ::Integer
660
+ def 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")]
661
+ def license_info: () -> ::String
662
+ def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
663
+ end
664
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_layer_version-instance_method
665
+ def get_layer_version: (
666
+ layer_name: ::String,
667
+ version_number: ::Integer
668
+ ) -> _GetLayerVersionResponseSuccess
669
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLayerVersionResponseSuccess
670
+
671
+ interface _GetLayerVersionByArnResponseSuccess
672
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLayerVersionResponse]
673
+ def content: () -> Types::LayerVersionContentOutput
674
+ def layer_arn: () -> ::String
675
+ def layer_version_arn: () -> ::String
676
+ def description: () -> ::String
677
+ def created_date: () -> ::Time
678
+ def version: () -> ::Integer
679
+ def 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")]
680
+ def license_info: () -> ::String
681
+ def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
682
+ end
683
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_layer_version_by_arn-instance_method
684
+ def get_layer_version_by_arn: (
685
+ arn: ::String
686
+ ) -> _GetLayerVersionByArnResponseSuccess
687
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLayerVersionByArnResponseSuccess
688
+
689
+ interface _GetLayerVersionPolicyResponseSuccess
690
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLayerVersionPolicyResponse]
691
+ def policy: () -> ::String
692
+ def revision_id: () -> ::String
693
+ end
694
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_layer_version_policy-instance_method
695
+ def get_layer_version_policy: (
696
+ layer_name: ::String,
697
+ version_number: ::Integer
698
+ ) -> _GetLayerVersionPolicyResponseSuccess
699
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLayerVersionPolicyResponseSuccess
700
+
701
+ interface _GetPolicyResponseSuccess
702
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPolicyResponse]
703
+ def policy: () -> ::String
704
+ def revision_id: () -> ::String
705
+ end
706
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_policy-instance_method
707
+ def get_policy: (
708
+ function_name: ::String,
709
+ ?qualifier: ::String
710
+ ) -> _GetPolicyResponseSuccess
711
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPolicyResponseSuccess
712
+
713
+ interface _GetProvisionedConcurrencyConfigResponseSuccess
714
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetProvisionedConcurrencyConfigResponse]
715
+ def requested_provisioned_concurrent_executions: () -> ::Integer
716
+ def available_provisioned_concurrent_executions: () -> ::Integer
717
+ def allocated_provisioned_concurrent_executions: () -> ::Integer
718
+ def status: () -> ("IN_PROGRESS" | "READY" | "FAILED")
719
+ def status_reason: () -> ::String
720
+ def last_modified: () -> ::Time
721
+ end
722
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_provisioned_concurrency_config-instance_method
723
+ def get_provisioned_concurrency_config: (
724
+ function_name: ::String,
725
+ qualifier: ::String
726
+ ) -> _GetProvisionedConcurrencyConfigResponseSuccess
727
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProvisionedConcurrencyConfigResponseSuccess
728
+
729
+ interface _GetRuntimeManagementConfigResponseSuccess
730
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRuntimeManagementConfigResponse]
731
+ def update_runtime_on: () -> ("Auto" | "Manual" | "FunctionUpdate")
732
+ def runtime_version_arn: () -> ::String
733
+ def function_arn: () -> ::String
734
+ end
735
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#get_runtime_management_config-instance_method
736
+ def get_runtime_management_config: (
737
+ function_name: ::String,
738
+ ?qualifier: ::String
739
+ ) -> _GetRuntimeManagementConfigResponseSuccess
740
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRuntimeManagementConfigResponseSuccess
741
+
742
+ interface _InvokeResponseSuccess
743
+ include ::Seahorse::Client::_ResponseSuccess[Types::InvocationResponse]
744
+ def status_code: () -> ::Integer
745
+ def function_error: () -> ::String
746
+ def log_result: () -> ::String
747
+ def payload: () -> ::String
748
+ def executed_version: () -> ::String
749
+ end
750
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#invoke-instance_method
751
+ def invoke: (
752
+ function_name: ::String,
753
+ ?invocation_type: ("Event" | "RequestResponse" | "DryRun"),
754
+ ?log_type: ("None" | "Tail"),
755
+ ?client_context: ::String,
756
+ ?payload: ::String,
757
+ ?qualifier: ::String
758
+ ) -> _InvokeResponseSuccess
759
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _InvokeResponseSuccess
760
+
761
+ interface _InvokeAsyncResponseSuccess
762
+ include ::Seahorse::Client::_ResponseSuccess[Types::InvokeAsyncResponse]
763
+ def status: () -> ::Integer
764
+ end
765
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#invoke_async-instance_method
766
+ def invoke_async: (
767
+ function_name: ::String,
768
+ invoke_args: ::String
769
+ ) -> _InvokeAsyncResponseSuccess
770
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _InvokeAsyncResponseSuccess
771
+
772
+ interface _InvokeWithResponseStreamResponseSuccess
773
+ include ::Seahorse::Client::_ResponseSuccess[Types::InvokeWithResponseStreamResponse]
774
+ def status_code: () -> ::Integer
775
+ def executed_version: () -> ::String
776
+ def event_stream: () -> Types::InvokeWithResponseStreamResponseEvent
777
+ def response_stream_content_type: () -> ::String
778
+ end
779
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#invoke_with_response_stream-instance_method
780
+ def invoke_with_response_stream: (
781
+ function_name: ::String,
782
+ ?invocation_type: ("RequestResponse" | "DryRun"),
783
+ ?log_type: ("None" | "Tail"),
784
+ ?client_context: ::String,
785
+ ?qualifier: ::String,
786
+ ?payload: ::String
787
+ ) ?{ (*untyped) -> void } -> _InvokeWithResponseStreamResponseSuccess
788
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _InvokeWithResponseStreamResponseSuccess
789
+
790
+ interface _ListAliasesResponseSuccess
791
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAliasesResponse]
792
+ def next_marker: () -> ::String
793
+ def aliases: () -> ::Array[Types::AliasConfiguration]
794
+ end
795
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_aliases-instance_method
796
+ def list_aliases: (
797
+ function_name: ::String,
798
+ ?function_version: ::String,
799
+ ?marker: ::String,
800
+ ?max_items: ::Integer
801
+ ) -> _ListAliasesResponseSuccess
802
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAliasesResponseSuccess
803
+
804
+ interface _ListCodeSigningConfigsResponseSuccess
805
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCodeSigningConfigsResponse]
806
+ def next_marker: () -> ::String
807
+ def code_signing_configs: () -> ::Array[Types::CodeSigningConfig]
808
+ end
809
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_code_signing_configs-instance_method
810
+ def list_code_signing_configs: (
811
+ ?marker: ::String,
812
+ ?max_items: ::Integer
813
+ ) -> _ListCodeSigningConfigsResponseSuccess
814
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCodeSigningConfigsResponseSuccess
815
+
816
+ interface _ListEventSourceMappingsResponseSuccess
817
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEventSourceMappingsResponse]
818
+ def next_marker: () -> ::String
819
+ def event_source_mappings: () -> ::Array[Types::EventSourceMappingConfiguration]
820
+ end
821
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_event_source_mappings-instance_method
822
+ def list_event_source_mappings: (
823
+ ?event_source_arn: ::String,
824
+ ?function_name: ::String,
825
+ ?marker: ::String,
826
+ ?max_items: ::Integer
827
+ ) -> _ListEventSourceMappingsResponseSuccess
828
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEventSourceMappingsResponseSuccess
829
+
830
+ interface _ListFunctionEventInvokeConfigsResponseSuccess
831
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListFunctionEventInvokeConfigsResponse]
832
+ def function_event_invoke_configs: () -> ::Array[Types::FunctionEventInvokeConfig]
833
+ def next_marker: () -> ::String
834
+ end
835
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_function_event_invoke_configs-instance_method
836
+ def list_function_event_invoke_configs: (
837
+ function_name: ::String,
838
+ ?marker: ::String,
839
+ ?max_items: ::Integer
840
+ ) -> _ListFunctionEventInvokeConfigsResponseSuccess
841
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFunctionEventInvokeConfigsResponseSuccess
842
+
843
+ interface _ListFunctionUrlConfigsResponseSuccess
844
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListFunctionUrlConfigsResponse]
845
+ def function_url_configs: () -> ::Array[Types::FunctionUrlConfig]
846
+ def next_marker: () -> ::String
847
+ end
848
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_function_url_configs-instance_method
849
+ def list_function_url_configs: (
850
+ function_name: ::String,
851
+ ?marker: ::String,
852
+ ?max_items: ::Integer
853
+ ) -> _ListFunctionUrlConfigsResponseSuccess
854
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFunctionUrlConfigsResponseSuccess
855
+
856
+ interface _ListFunctionsResponseSuccess
857
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListFunctionsResponse]
858
+ def next_marker: () -> ::String
859
+ def functions: () -> ::Array[Types::FunctionConfiguration]
860
+ end
861
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_functions-instance_method
862
+ def list_functions: (
863
+ ?master_region: ::String,
864
+ ?function_version: ("ALL"),
865
+ ?marker: ::String,
866
+ ?max_items: ::Integer
867
+ ) -> _ListFunctionsResponseSuccess
868
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFunctionsResponseSuccess
869
+
870
+ interface _ListFunctionsByCodeSigningConfigResponseSuccess
871
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListFunctionsByCodeSigningConfigResponse]
872
+ def next_marker: () -> ::String
873
+ def function_arns: () -> ::Array[::String]
874
+ end
875
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_functions_by_code_signing_config-instance_method
876
+ def list_functions_by_code_signing_config: (
877
+ code_signing_config_arn: ::String,
878
+ ?marker: ::String,
879
+ ?max_items: ::Integer
880
+ ) -> _ListFunctionsByCodeSigningConfigResponseSuccess
881
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFunctionsByCodeSigningConfigResponseSuccess
882
+
883
+ interface _ListLayerVersionsResponseSuccess
884
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLayerVersionsResponse]
885
+ def next_marker: () -> ::String
886
+ def layer_versions: () -> ::Array[Types::LayerVersionsListItem]
887
+ end
888
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_layer_versions-instance_method
889
+ def list_layer_versions: (
890
+ ?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"),
891
+ layer_name: ::String,
892
+ ?marker: ::String,
893
+ ?max_items: ::Integer,
894
+ ?compatible_architecture: ("x86_64" | "arm64")
895
+ ) -> _ListLayerVersionsResponseSuccess
896
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLayerVersionsResponseSuccess
897
+
898
+ interface _ListLayersResponseSuccess
899
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLayersResponse]
900
+ def next_marker: () -> ::String
901
+ def layers: () -> ::Array[Types::LayersListItem]
902
+ end
903
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_layers-instance_method
904
+ def list_layers: (
905
+ ?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"),
906
+ ?marker: ::String,
907
+ ?max_items: ::Integer,
908
+ ?compatible_architecture: ("x86_64" | "arm64")
909
+ ) -> _ListLayersResponseSuccess
910
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLayersResponseSuccess
911
+
912
+ interface _ListProvisionedConcurrencyConfigsResponseSuccess
913
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListProvisionedConcurrencyConfigsResponse]
914
+ def provisioned_concurrency_configs: () -> ::Array[Types::ProvisionedConcurrencyConfigListItem]
915
+ def next_marker: () -> ::String
916
+ end
917
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_provisioned_concurrency_configs-instance_method
918
+ def list_provisioned_concurrency_configs: (
919
+ function_name: ::String,
920
+ ?marker: ::String,
921
+ ?max_items: ::Integer
922
+ ) -> _ListProvisionedConcurrencyConfigsResponseSuccess
923
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProvisionedConcurrencyConfigsResponseSuccess
924
+
925
+ interface _ListTagsResponseSuccess
926
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsResponse]
927
+ def tags: () -> ::Hash[::String, ::String]
928
+ end
929
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_tags-instance_method
930
+ def list_tags: (
931
+ resource: ::String
932
+ ) -> _ListTagsResponseSuccess
933
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsResponseSuccess
934
+
935
+ interface _ListVersionsByFunctionResponseSuccess
936
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVersionsByFunctionResponse]
937
+ def next_marker: () -> ::String
938
+ def versions: () -> ::Array[Types::FunctionConfiguration]
939
+ end
940
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#list_versions_by_function-instance_method
941
+ def list_versions_by_function: (
942
+ function_name: ::String,
943
+ ?marker: ::String,
944
+ ?max_items: ::Integer
945
+ ) -> _ListVersionsByFunctionResponseSuccess
946
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVersionsByFunctionResponseSuccess
947
+
948
+ interface _PublishLayerVersionResponseSuccess
949
+ include ::Seahorse::Client::_ResponseSuccess[Types::PublishLayerVersionResponse]
950
+ def content: () -> Types::LayerVersionContentOutput
951
+ def layer_arn: () -> ::String
952
+ def layer_version_arn: () -> ::String
953
+ def description: () -> ::String
954
+ def created_date: () -> ::Time
955
+ def version: () -> ::Integer
956
+ def 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")]
957
+ def license_info: () -> ::String
958
+ def compatible_architectures: () -> ::Array[("x86_64" | "arm64")]
959
+ end
960
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#publish_layer_version-instance_method
961
+ def publish_layer_version: (
962
+ layer_name: ::String,
963
+ ?description: ::String,
964
+ content: {
965
+ s3_bucket: ::String?,
966
+ s3_key: ::String?,
967
+ s3_object_version: ::String?,
968
+ zip_file: ::String?
969
+ },
970
+ ?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")],
971
+ ?license_info: ::String,
972
+ ?compatible_architectures: Array[("x86_64" | "arm64")]
973
+ ) -> _PublishLayerVersionResponseSuccess
974
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PublishLayerVersionResponseSuccess
975
+
976
+ interface _PublishVersionResponseSuccess
977
+ include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
978
+ def function_name: () -> ::String
979
+ def function_arn: () -> ::String
980
+ def 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")
981
+ def role: () -> ::String
982
+ def handler: () -> ::String
983
+ def code_size: () -> ::Integer
984
+ def description: () -> ::String
985
+ def timeout: () -> ::Integer
986
+ def memory_size: () -> ::Integer
987
+ def last_modified: () -> ::Time
988
+ def code_sha_256: () -> ::String
989
+ def version: () -> ::String
990
+ def vpc_config: () -> Types::VpcConfigResponse
991
+ def dead_letter_config: () -> Types::DeadLetterConfig
992
+ def environment: () -> Types::EnvironmentResponse
993
+ def kms_key_arn: () -> ::String
994
+ def tracing_config: () -> Types::TracingConfigResponse
995
+ def master_arn: () -> ::String
996
+ def revision_id: () -> ::String
997
+ def layers: () -> ::Array[Types::Layer]
998
+ def state: () -> ("Pending" | "Active" | "Inactive" | "Failed")
999
+ def state_reason: () -> ::String
1000
+ def 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")
1001
+ def last_update_status: () -> ("Successful" | "Failed" | "InProgress")
1002
+ def last_update_status_reason: () -> ::String
1003
+ def 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")
1004
+ def file_system_configs: () -> ::Array[Types::FileSystemConfig]
1005
+ def package_type: () -> ("Zip" | "Image")
1006
+ def image_config_response: () -> Types::ImageConfigResponse
1007
+ def signing_profile_version_arn: () -> ::String
1008
+ def signing_job_arn: () -> ::String
1009
+ def architectures: () -> ::Array[("x86_64" | "arm64")]
1010
+ def ephemeral_storage: () -> Types::EphemeralStorage
1011
+ def snap_start: () -> Types::SnapStartResponse
1012
+ def runtime_version_config: () -> Types::RuntimeVersionConfig
1013
+ def logging_config: () -> Types::LoggingConfig
1014
+ end
1015
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#publish_version-instance_method
1016
+ def publish_version: (
1017
+ function_name: ::String,
1018
+ ?code_sha_256: ::String,
1019
+ ?description: ::String,
1020
+ ?revision_id: ::String
1021
+ ) -> _PublishVersionResponseSuccess
1022
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PublishVersionResponseSuccess
1023
+
1024
+ interface _PutFunctionCodeSigningConfigResponseSuccess
1025
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutFunctionCodeSigningConfigResponse]
1026
+ def code_signing_config_arn: () -> ::String
1027
+ def function_name: () -> ::String
1028
+ end
1029
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#put_function_code_signing_config-instance_method
1030
+ def put_function_code_signing_config: (
1031
+ code_signing_config_arn: ::String,
1032
+ function_name: ::String
1033
+ ) -> _PutFunctionCodeSigningConfigResponseSuccess
1034
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutFunctionCodeSigningConfigResponseSuccess
1035
+
1036
+ interface _PutFunctionConcurrencyResponseSuccess
1037
+ include ::Seahorse::Client::_ResponseSuccess[Types::Concurrency]
1038
+ def reserved_concurrent_executions: () -> ::Integer
1039
+ end
1040
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#put_function_concurrency-instance_method
1041
+ def put_function_concurrency: (
1042
+ function_name: ::String,
1043
+ reserved_concurrent_executions: ::Integer
1044
+ ) -> _PutFunctionConcurrencyResponseSuccess
1045
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutFunctionConcurrencyResponseSuccess
1046
+
1047
+ interface _PutFunctionEventInvokeConfigResponseSuccess
1048
+ include ::Seahorse::Client::_ResponseSuccess[Types::FunctionEventInvokeConfig]
1049
+ def last_modified: () -> ::Time
1050
+ def function_arn: () -> ::String
1051
+ def maximum_retry_attempts: () -> ::Integer
1052
+ def maximum_event_age_in_seconds: () -> ::Integer
1053
+ def destination_config: () -> Types::DestinationConfig
1054
+ end
1055
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#put_function_event_invoke_config-instance_method
1056
+ def put_function_event_invoke_config: (
1057
+ function_name: ::String,
1058
+ ?qualifier: ::String,
1059
+ ?maximum_retry_attempts: ::Integer,
1060
+ ?maximum_event_age_in_seconds: ::Integer,
1061
+ ?destination_config: {
1062
+ on_success: {
1063
+ destination: ::String?
1064
+ }?,
1065
+ on_failure: {
1066
+ destination: ::String?
1067
+ }?
1068
+ }
1069
+ ) -> _PutFunctionEventInvokeConfigResponseSuccess
1070
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutFunctionEventInvokeConfigResponseSuccess
1071
+
1072
+ interface _PutProvisionedConcurrencyConfigResponseSuccess
1073
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutProvisionedConcurrencyConfigResponse]
1074
+ def requested_provisioned_concurrent_executions: () -> ::Integer
1075
+ def available_provisioned_concurrent_executions: () -> ::Integer
1076
+ def allocated_provisioned_concurrent_executions: () -> ::Integer
1077
+ def status: () -> ("IN_PROGRESS" | "READY" | "FAILED")
1078
+ def status_reason: () -> ::String
1079
+ def last_modified: () -> ::Time
1080
+ end
1081
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#put_provisioned_concurrency_config-instance_method
1082
+ def put_provisioned_concurrency_config: (
1083
+ function_name: ::String,
1084
+ qualifier: ::String,
1085
+ provisioned_concurrent_executions: ::Integer
1086
+ ) -> _PutProvisionedConcurrencyConfigResponseSuccess
1087
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutProvisionedConcurrencyConfigResponseSuccess
1088
+
1089
+ interface _PutRuntimeManagementConfigResponseSuccess
1090
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutRuntimeManagementConfigResponse]
1091
+ def update_runtime_on: () -> ("Auto" | "Manual" | "FunctionUpdate")
1092
+ def function_arn: () -> ::String
1093
+ def runtime_version_arn: () -> ::String
1094
+ end
1095
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#put_runtime_management_config-instance_method
1096
+ def put_runtime_management_config: (
1097
+ function_name: ::String,
1098
+ ?qualifier: ::String,
1099
+ update_runtime_on: ("Auto" | "Manual" | "FunctionUpdate"),
1100
+ ?runtime_version_arn: ::String
1101
+ ) -> _PutRuntimeManagementConfigResponseSuccess
1102
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutRuntimeManagementConfigResponseSuccess
1103
+
1104
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#remove_layer_version_permission-instance_method
1105
+ def remove_layer_version_permission: (
1106
+ layer_name: ::String,
1107
+ version_number: ::Integer,
1108
+ statement_id: ::String,
1109
+ ?revision_id: ::String
1110
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1111
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1112
+
1113
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#remove_permission-instance_method
1114
+ def remove_permission: (
1115
+ function_name: ::String,
1116
+ statement_id: ::String,
1117
+ ?qualifier: ::String,
1118
+ ?revision_id: ::String
1119
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1120
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1121
+
1122
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#tag_resource-instance_method
1123
+ def tag_resource: (
1124
+ resource: ::String,
1125
+ tags: Hash[::String, ::String]
1126
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1127
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1128
+
1129
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#untag_resource-instance_method
1130
+ def untag_resource: (
1131
+ resource: ::String,
1132
+ tag_keys: Array[::String]
1133
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1134
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1135
+
1136
+ interface _UpdateAliasResponseSuccess
1137
+ include ::Seahorse::Client::_ResponseSuccess[Types::AliasConfiguration]
1138
+ def alias_arn: () -> ::String
1139
+ def name: () -> ::String
1140
+ def function_version: () -> ::String
1141
+ def description: () -> ::String
1142
+ def routing_config: () -> Types::AliasRoutingConfiguration
1143
+ def revision_id: () -> ::String
1144
+ end
1145
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#update_alias-instance_method
1146
+ def update_alias: (
1147
+ function_name: ::String,
1148
+ name: ::String,
1149
+ ?function_version: ::String,
1150
+ ?description: ::String,
1151
+ ?routing_config: {
1152
+ additional_version_weights: Hash[::String, ::Float]?
1153
+ },
1154
+ ?revision_id: ::String
1155
+ ) -> _UpdateAliasResponseSuccess
1156
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAliasResponseSuccess
1157
+
1158
+ interface _UpdateCodeSigningConfigResponseSuccess
1159
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCodeSigningConfigResponse]
1160
+ def code_signing_config: () -> Types::CodeSigningConfig
1161
+ end
1162
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#update_code_signing_config-instance_method
1163
+ def update_code_signing_config: (
1164
+ code_signing_config_arn: ::String,
1165
+ ?description: ::String,
1166
+ ?allowed_publishers: {
1167
+ signing_profile_version_arns: Array[::String]
1168
+ },
1169
+ ?code_signing_policies: {
1170
+ untrusted_artifact_on_deployment: ("Warn" | "Enforce")?
1171
+ }
1172
+ ) -> _UpdateCodeSigningConfigResponseSuccess
1173
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCodeSigningConfigResponseSuccess
1174
+
1175
+ interface _UpdateEventSourceMappingResponseSuccess
1176
+ include ::Seahorse::Client::_ResponseSuccess[Types::EventSourceMappingConfiguration]
1177
+ def uuid: () -> ::String
1178
+ def starting_position: () -> ("TRIM_HORIZON" | "LATEST" | "AT_TIMESTAMP")
1179
+ def starting_position_timestamp: () -> ::Time
1180
+ def batch_size: () -> ::Integer
1181
+ def maximum_batching_window_in_seconds: () -> ::Integer
1182
+ def parallelization_factor: () -> ::Integer
1183
+ def event_source_arn: () -> ::String
1184
+ def filter_criteria: () -> Types::FilterCriteria
1185
+ def function_arn: () -> ::String
1186
+ def last_modified: () -> ::Time
1187
+ def last_processing_result: () -> ::String
1188
+ def state: () -> ::String
1189
+ def state_transition_reason: () -> ::String
1190
+ def destination_config: () -> Types::DestinationConfig
1191
+ def topics: () -> ::Array[::String]
1192
+ def queues: () -> ::Array[::String]
1193
+ def source_access_configurations: () -> ::Array[Types::SourceAccessConfiguration]
1194
+ def self_managed_event_source: () -> Types::SelfManagedEventSource
1195
+ def maximum_record_age_in_seconds: () -> ::Integer
1196
+ def bisect_batch_on_function_error: () -> bool
1197
+ def maximum_retry_attempts: () -> ::Integer
1198
+ def tumbling_window_in_seconds: () -> ::Integer
1199
+ def function_response_types: () -> ::Array[("ReportBatchItemFailures")]
1200
+ def amazon_managed_kafka_event_source_config: () -> Types::AmazonManagedKafkaEventSourceConfig
1201
+ def self_managed_kafka_event_source_config: () -> Types::SelfManagedKafkaEventSourceConfig
1202
+ def scaling_config: () -> Types::ScalingConfig
1203
+ def document_db_event_source_config: () -> Types::DocumentDBEventSourceConfig
1204
+ end
1205
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#update_event_source_mapping-instance_method
1206
+ def update_event_source_mapping: (
1207
+ uuid: ::String,
1208
+ ?function_name: ::String,
1209
+ ?enabled: bool,
1210
+ ?batch_size: ::Integer,
1211
+ ?filter_criteria: {
1212
+ filters: Array[
1213
+ {
1214
+ pattern: ::String?
1215
+ },
1216
+ ]?
1217
+ },
1218
+ ?maximum_batching_window_in_seconds: ::Integer,
1219
+ ?destination_config: {
1220
+ on_success: {
1221
+ destination: ::String?
1222
+ }?,
1223
+ on_failure: {
1224
+ destination: ::String?
1225
+ }?
1226
+ },
1227
+ ?maximum_record_age_in_seconds: ::Integer,
1228
+ ?bisect_batch_on_function_error: bool,
1229
+ ?maximum_retry_attempts: ::Integer,
1230
+ ?parallelization_factor: ::Integer,
1231
+ ?source_access_configurations: Array[
1232
+ {
1233
+ 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")?,
1234
+ uri: ::String?
1235
+ },
1236
+ ],
1237
+ ?tumbling_window_in_seconds: ::Integer,
1238
+ ?function_response_types: Array[("ReportBatchItemFailures")],
1239
+ ?scaling_config: {
1240
+ maximum_concurrency: ::Integer?
1241
+ },
1242
+ ?document_db_event_source_config: {
1243
+ database_name: ::String?,
1244
+ collection_name: ::String?,
1245
+ full_document: ("UpdateLookup" | "Default")?
1246
+ }
1247
+ ) -> _UpdateEventSourceMappingResponseSuccess
1248
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEventSourceMappingResponseSuccess
1249
+
1250
+ interface _UpdateFunctionCodeResponseSuccess
1251
+ include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
1252
+ def function_name: () -> ::String
1253
+ def function_arn: () -> ::String
1254
+ def 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")
1255
+ def role: () -> ::String
1256
+ def handler: () -> ::String
1257
+ def code_size: () -> ::Integer
1258
+ def description: () -> ::String
1259
+ def timeout: () -> ::Integer
1260
+ def memory_size: () -> ::Integer
1261
+ def last_modified: () -> ::Time
1262
+ def code_sha_256: () -> ::String
1263
+ def version: () -> ::String
1264
+ def vpc_config: () -> Types::VpcConfigResponse
1265
+ def dead_letter_config: () -> Types::DeadLetterConfig
1266
+ def environment: () -> Types::EnvironmentResponse
1267
+ def kms_key_arn: () -> ::String
1268
+ def tracing_config: () -> Types::TracingConfigResponse
1269
+ def master_arn: () -> ::String
1270
+ def revision_id: () -> ::String
1271
+ def layers: () -> ::Array[Types::Layer]
1272
+ def state: () -> ("Pending" | "Active" | "Inactive" | "Failed")
1273
+ def state_reason: () -> ::String
1274
+ def 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")
1275
+ def last_update_status: () -> ("Successful" | "Failed" | "InProgress")
1276
+ def last_update_status_reason: () -> ::String
1277
+ def 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")
1278
+ def file_system_configs: () -> ::Array[Types::FileSystemConfig]
1279
+ def package_type: () -> ("Zip" | "Image")
1280
+ def image_config_response: () -> Types::ImageConfigResponse
1281
+ def signing_profile_version_arn: () -> ::String
1282
+ def signing_job_arn: () -> ::String
1283
+ def architectures: () -> ::Array[("x86_64" | "arm64")]
1284
+ def ephemeral_storage: () -> Types::EphemeralStorage
1285
+ def snap_start: () -> Types::SnapStartResponse
1286
+ def runtime_version_config: () -> Types::RuntimeVersionConfig
1287
+ def logging_config: () -> Types::LoggingConfig
1288
+ end
1289
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#update_function_code-instance_method
1290
+ def update_function_code: (
1291
+ function_name: ::String,
1292
+ ?zip_file: ::String,
1293
+ ?s3_bucket: ::String,
1294
+ ?s3_key: ::String,
1295
+ ?s3_object_version: ::String,
1296
+ ?image_uri: ::String,
1297
+ ?publish: bool,
1298
+ ?dry_run: bool,
1299
+ ?revision_id: ::String,
1300
+ ?architectures: Array[("x86_64" | "arm64")]
1301
+ ) -> _UpdateFunctionCodeResponseSuccess
1302
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFunctionCodeResponseSuccess
1303
+
1304
+ interface _UpdateFunctionConfigurationResponseSuccess
1305
+ include ::Seahorse::Client::_ResponseSuccess[Types::FunctionConfiguration]
1306
+ def function_name: () -> ::String
1307
+ def function_arn: () -> ::String
1308
+ def 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")
1309
+ def role: () -> ::String
1310
+ def handler: () -> ::String
1311
+ def code_size: () -> ::Integer
1312
+ def description: () -> ::String
1313
+ def timeout: () -> ::Integer
1314
+ def memory_size: () -> ::Integer
1315
+ def last_modified: () -> ::Time
1316
+ def code_sha_256: () -> ::String
1317
+ def version: () -> ::String
1318
+ def vpc_config: () -> Types::VpcConfigResponse
1319
+ def dead_letter_config: () -> Types::DeadLetterConfig
1320
+ def environment: () -> Types::EnvironmentResponse
1321
+ def kms_key_arn: () -> ::String
1322
+ def tracing_config: () -> Types::TracingConfigResponse
1323
+ def master_arn: () -> ::String
1324
+ def revision_id: () -> ::String
1325
+ def layers: () -> ::Array[Types::Layer]
1326
+ def state: () -> ("Pending" | "Active" | "Inactive" | "Failed")
1327
+ def state_reason: () -> ::String
1328
+ def 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")
1329
+ def last_update_status: () -> ("Successful" | "Failed" | "InProgress")
1330
+ def last_update_status_reason: () -> ::String
1331
+ def 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")
1332
+ def file_system_configs: () -> ::Array[Types::FileSystemConfig]
1333
+ def package_type: () -> ("Zip" | "Image")
1334
+ def image_config_response: () -> Types::ImageConfigResponse
1335
+ def signing_profile_version_arn: () -> ::String
1336
+ def signing_job_arn: () -> ::String
1337
+ def architectures: () -> ::Array[("x86_64" | "arm64")]
1338
+ def ephemeral_storage: () -> Types::EphemeralStorage
1339
+ def snap_start: () -> Types::SnapStartResponse
1340
+ def runtime_version_config: () -> Types::RuntimeVersionConfig
1341
+ def logging_config: () -> Types::LoggingConfig
1342
+ end
1343
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#update_function_configuration-instance_method
1344
+ def update_function_configuration: (
1345
+ function_name: ::String,
1346
+ ?role: ::String,
1347
+ ?handler: ::String,
1348
+ ?description: ::String,
1349
+ ?timeout: ::Integer,
1350
+ ?memory_size: ::Integer,
1351
+ ?vpc_config: {
1352
+ subnet_ids: Array[::String]?,
1353
+ security_group_ids: Array[::String]?,
1354
+ ipv_6_allowed_for_dual_stack: bool?
1355
+ },
1356
+ ?environment: {
1357
+ variables: Hash[::String, ::String]?
1358
+ },
1359
+ ?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"),
1360
+ ?dead_letter_config: {
1361
+ target_arn: ::String?
1362
+ },
1363
+ ?kms_key_arn: ::String,
1364
+ ?tracing_config: {
1365
+ mode: ("Active" | "PassThrough")?
1366
+ },
1367
+ ?revision_id: ::String,
1368
+ ?layers: Array[::String],
1369
+ ?file_system_configs: Array[
1370
+ {
1371
+ arn: ::String,
1372
+ local_mount_path: ::String
1373
+ },
1374
+ ],
1375
+ ?image_config: {
1376
+ entry_point: Array[::String]?,
1377
+ command: Array[::String]?,
1378
+ working_directory: ::String?
1379
+ },
1380
+ ?ephemeral_storage: {
1381
+ size: ::Integer
1382
+ },
1383
+ ?snap_start: {
1384
+ apply_on: ("PublishedVersions" | "None")?
1385
+ },
1386
+ ?logging_config: {
1387
+ log_format: ("JSON" | "Text")?,
1388
+ application_log_level: ("TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL")?,
1389
+ system_log_level: ("DEBUG" | "INFO" | "WARN")?,
1390
+ log_group: ::String?
1391
+ }
1392
+ ) -> _UpdateFunctionConfigurationResponseSuccess
1393
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFunctionConfigurationResponseSuccess
1394
+
1395
+ interface _UpdateFunctionEventInvokeConfigResponseSuccess
1396
+ include ::Seahorse::Client::_ResponseSuccess[Types::FunctionEventInvokeConfig]
1397
+ def last_modified: () -> ::Time
1398
+ def function_arn: () -> ::String
1399
+ def maximum_retry_attempts: () -> ::Integer
1400
+ def maximum_event_age_in_seconds: () -> ::Integer
1401
+ def destination_config: () -> Types::DestinationConfig
1402
+ end
1403
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#update_function_event_invoke_config-instance_method
1404
+ def update_function_event_invoke_config: (
1405
+ function_name: ::String,
1406
+ ?qualifier: ::String,
1407
+ ?maximum_retry_attempts: ::Integer,
1408
+ ?maximum_event_age_in_seconds: ::Integer,
1409
+ ?destination_config: {
1410
+ on_success: {
1411
+ destination: ::String?
1412
+ }?,
1413
+ on_failure: {
1414
+ destination: ::String?
1415
+ }?
1416
+ }
1417
+ ) -> _UpdateFunctionEventInvokeConfigResponseSuccess
1418
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFunctionEventInvokeConfigResponseSuccess
1419
+
1420
+ interface _UpdateFunctionUrlConfigResponseSuccess
1421
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateFunctionUrlConfigResponse]
1422
+ def function_url: () -> ::String
1423
+ def function_arn: () -> ::String
1424
+ def auth_type: () -> ("NONE" | "AWS_IAM")
1425
+ def cors: () -> Types::Cors
1426
+ def creation_time: () -> ::Time
1427
+ def last_modified_time: () -> ::Time
1428
+ def invoke_mode: () -> ("BUFFERED" | "RESPONSE_STREAM")
1429
+ end
1430
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#update_function_url_config-instance_method
1431
+ def update_function_url_config: (
1432
+ function_name: ::String,
1433
+ ?qualifier: ::String,
1434
+ ?auth_type: ("NONE" | "AWS_IAM"),
1435
+ ?cors: {
1436
+ allow_credentials: bool?,
1437
+ allow_headers: Array[::String]?,
1438
+ allow_methods: Array[::String]?,
1439
+ allow_origins: Array[::String]?,
1440
+ expose_headers: Array[::String]?,
1441
+ max_age: ::Integer?
1442
+ },
1443
+ ?invoke_mode: ("BUFFERED" | "RESPONSE_STREAM")
1444
+ ) -> _UpdateFunctionUrlConfigResponseSuccess
1445
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFunctionUrlConfigResponseSuccess
1446
+
1447
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Lambda/Client.html#wait_until-instance_method
1448
+ def wait_until: (:function_active waiter_name,
1449
+ function_name: ::String,
1450
+ ?qualifier: ::String
1451
+ ) -> Client::_GetFunctionConfigurationResponseSuccess
1452
+ | (:function_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetFunctionConfigurationResponseSuccess
1453
+ | (:function_active_v2 waiter_name,
1454
+ function_name: ::String,
1455
+ ?qualifier: ::String
1456
+ ) -> Client::_GetFunctionResponseSuccess
1457
+ | (:function_active_v2 waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetFunctionResponseSuccess
1458
+ | (:function_exists waiter_name,
1459
+ function_name: ::String,
1460
+ ?qualifier: ::String
1461
+ ) -> Client::_GetFunctionResponseSuccess
1462
+ | (:function_exists waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetFunctionResponseSuccess
1463
+ | (:function_updated waiter_name,
1464
+ function_name: ::String,
1465
+ ?qualifier: ::String
1466
+ ) -> Client::_GetFunctionConfigurationResponseSuccess
1467
+ | (:function_updated waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetFunctionConfigurationResponseSuccess
1468
+ | (:function_updated_v2 waiter_name,
1469
+ function_name: ::String,
1470
+ ?qualifier: ::String
1471
+ ) -> Client::_GetFunctionResponseSuccess
1472
+ | (:function_updated_v2 waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetFunctionResponseSuccess
1473
+ | (:published_version_active waiter_name,
1474
+ function_name: ::String,
1475
+ ?qualifier: ::String
1476
+ ) -> Client::_GetFunctionConfigurationResponseSuccess
1477
+ | (:published_version_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetFunctionConfigurationResponseSuccess
1478
+ end
1479
+ end
1480
+ end
1481
+