aws-sdk-lambda 1.74.0 → 1.75.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 75dd1a3fbb14a7dd1042d8958f59616345cdff89f7a30cdec2ad7d8beb57cffd
4
- data.tar.gz: ef5c1f54ca84550031918a500cb9ed28c99bc748b2869c1a83b82878b42cb158
3
+ metadata.gz: 6f201e65d3ffb38fc956d2a8234851f1a812746fc5bb0a4324924e213ece54c0
4
+ data.tar.gz: 2acf486b5e1eb922b58396113f9f2c3de8702a96e04abe1e583f84471343b1eb
5
5
  SHA512:
6
- metadata.gz: 5d612704bcd15ca26992dcd9d7e28618515477e2cde82492de2f34dcda800700ad9802ea1be9440f8222ace7297b86b4a814628ff5fc1414d73ed8f2da172f21
7
- data.tar.gz: 9447fe60b4ec965b1716e3e2f8417f744d59d8b829089e557f4c607c8c411eb8f5e0657e26b5af59cc970760c1f7054f41f04a9f26070bb3517f5aedb825d949
6
+ metadata.gz: acd434aa87458e68d6910ca7436cbc8d2190a7a2817e42ac3a6645664e67fc5f2b239be1272ffc0ea45b03759e350e933bbc21d13cd305ac63f3ff718811ca57
7
+ data.tar.gz: 84c98f89b7374f8e1f9580b73b2f2e72f4ca887629a98507a5af8130de0b80fe3c9e8fa7c95c0682bc8853454275dd88835c99360c89850413d47c12e9445712
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.75.0 (2021-11-24)
5
+ ------------------
6
+
7
+ * Feature - Remove Lambda function url apis
8
+
4
9
  1.74.0 (2021-11-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.74.0
1
+ 1.75.0
@@ -786,8 +786,8 @@ module Aws::Lambda
786
786
  # * **Amazon MQ (ActiveMQ and RabbitMQ)** - Default 100. Max 10,000.
787
787
  #
788
788
  # @option params [Types::FilterCriteria] :filter_criteria
789
- # (Streams and Amazon SQS) A object that defines the filter criteria
790
- # used to determine whether Lambda should process an event. For more
789
+ # (Streams and Amazon SQS) An object that defines the filter criteria
790
+ # that determine whether Lambda should process an event. For more
791
791
  # information, see [Lambda event filtering][1].
792
792
  #
793
793
  #
@@ -852,8 +852,8 @@ module Aws::Lambda
852
852
  # The Self-Managed Apache Kafka cluster to send records.
853
853
  #
854
854
  # @option params [Array<String>] :function_response_types
855
- # (Streams only) A list of current response type enums applied to the
856
- # event source mapping.
855
+ # (Streams and Amazon SQS) A list of current response type enums applied
856
+ # to the event source mapping.
857
857
  #
858
858
  # @return [Types::EventSourceMappingConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
859
859
  #
@@ -1058,7 +1058,8 @@ module Aws::Lambda
1058
1058
  # only the function name, it is limited to 64 characters in length.
1059
1059
  #
1060
1060
  # @option params [String] :runtime
1061
- # The identifier of the function's [runtime][1].
1061
+ # The identifier of the function's [runtime][1]. Runtime is required if
1062
+ # the deployment package is a .zip file archive.
1062
1063
  #
1063
1064
  #
1064
1065
  #
@@ -1069,7 +1070,8 @@ module Aws::Lambda
1069
1070
  #
1070
1071
  # @option params [String] :handler
1071
1072
  # The name of the method within your code that Lambda calls to execute
1072
- # your function. The format includes the file name. It can also include
1073
+ # your function. Handler is required if the deployment package is a .zip
1074
+ # file archive. The format includes the file name. It can also include
1073
1075
  # namespaces and other qualifiers, depending on the runtime. For more
1074
1076
  # information, see [Programming Model][1].
1075
1077
  #
@@ -1337,64 +1339,6 @@ module Aws::Lambda
1337
1339
  req.send_request(options)
1338
1340
  end
1339
1341
 
1340
- # @option params [required, String] :function_name
1341
- #
1342
- # @option params [String] :qualifier
1343
- #
1344
- # @option params [required, String] :authorization_type
1345
- #
1346
- # @option params [Types::Cors] :cors
1347
- #
1348
- # @return [Types::CreateFunctionUrlConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1349
- #
1350
- # * {Types::CreateFunctionUrlConfigResponse#function_url #function_url} => String
1351
- # * {Types::CreateFunctionUrlConfigResponse#function_arn #function_arn} => String
1352
- # * {Types::CreateFunctionUrlConfigResponse#authorization_type #authorization_type} => String
1353
- # * {Types::CreateFunctionUrlConfigResponse#cors #cors} => Types::Cors
1354
- # * {Types::CreateFunctionUrlConfigResponse#creation_time #creation_time} => Time
1355
- #
1356
- # @example Request syntax with placeholder values
1357
- #
1358
- # resp = client.create_function_url_config({
1359
- # function_name: "FunctionName", # required
1360
- # qualifier: "FunctionUrlQualifier",
1361
- # authorization_type: "NONE", # required, accepts NONE, AWS_IAM
1362
- # cors: {
1363
- # allow_credentials: false,
1364
- # allow_headers: ["Header"],
1365
- # allow_methods: ["Method"],
1366
- # allow_origins: ["Origin"],
1367
- # expose_headers: ["Header"],
1368
- # max_age: 1,
1369
- # },
1370
- # })
1371
- #
1372
- # @example Response structure
1373
- #
1374
- # resp.function_url #=> String
1375
- # resp.function_arn #=> String
1376
- # resp.authorization_type #=> String, one of "NONE", "AWS_IAM"
1377
- # resp.cors.allow_credentials #=> Boolean
1378
- # resp.cors.allow_headers #=> Array
1379
- # resp.cors.allow_headers[0] #=> String
1380
- # resp.cors.allow_methods #=> Array
1381
- # resp.cors.allow_methods[0] #=> String
1382
- # resp.cors.allow_origins #=> Array
1383
- # resp.cors.allow_origins[0] #=> String
1384
- # resp.cors.expose_headers #=> Array
1385
- # resp.cors.expose_headers[0] #=> String
1386
- # resp.cors.max_age #=> Integer
1387
- # resp.creation_time #=> Time
1388
- #
1389
- # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateFunctionUrlConfig AWS API Documentation
1390
- #
1391
- # @overload create_function_url_config(params = {})
1392
- # @param [Hash] params ({})
1393
- def create_function_url_config(params = {}, options = {})
1394
- req = build_request(:create_function_url_config, params)
1395
- req.send_request(options)
1396
- end
1397
-
1398
1342
  # Deletes a Lambda function [alias][1].
1399
1343
  #
1400
1344
  #
@@ -1709,28 +1653,6 @@ module Aws::Lambda
1709
1653
  req.send_request(options)
1710
1654
  end
1711
1655
 
1712
- # @option params [required, String] :function_name
1713
- #
1714
- # @option params [String] :qualifier
1715
- #
1716
- # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1717
- #
1718
- # @example Request syntax with placeholder values
1719
- #
1720
- # resp = client.delete_function_url_config({
1721
- # function_name: "FunctionName", # required
1722
- # qualifier: "FunctionUrlQualifier",
1723
- # })
1724
- #
1725
- # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/DeleteFunctionUrlConfig AWS API Documentation
1726
- #
1727
- # @overload delete_function_url_config(params = {})
1728
- # @param [Hash] params ({})
1729
- def delete_function_url_config(params = {}, options = {})
1730
- req = build_request(:delete_function_url_config, params)
1731
- req.send_request(options)
1732
- end
1733
-
1734
1656
  # Deletes a version of an [Lambda layer][1]. Deleted versions can no
1735
1657
  # longer be viewed or added to functions. To avoid breaking functions, a
1736
1658
  # copy of the version remains in Lambda until no functions refer to it.
@@ -2406,53 +2328,6 @@ module Aws::Lambda
2406
2328
  req.send_request(options)
2407
2329
  end
2408
2330
 
2409
- # @option params [required, String] :function_name
2410
- #
2411
- # @option params [String] :qualifier
2412
- #
2413
- # @return [Types::GetFunctionUrlConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2414
- #
2415
- # * {Types::GetFunctionUrlConfigResponse#function_url #function_url} => String
2416
- # * {Types::GetFunctionUrlConfigResponse#function_arn #function_arn} => String
2417
- # * {Types::GetFunctionUrlConfigResponse#authorization_type #authorization_type} => String
2418
- # * {Types::GetFunctionUrlConfigResponse#cors #cors} => Types::Cors
2419
- # * {Types::GetFunctionUrlConfigResponse#creation_time #creation_time} => Time
2420
- # * {Types::GetFunctionUrlConfigResponse#last_modified_time #last_modified_time} => Time
2421
- #
2422
- # @example Request syntax with placeholder values
2423
- #
2424
- # resp = client.get_function_url_config({
2425
- # function_name: "FunctionName", # required
2426
- # qualifier: "FunctionUrlQualifier",
2427
- # })
2428
- #
2429
- # @example Response structure
2430
- #
2431
- # resp.function_url #=> String
2432
- # resp.function_arn #=> String
2433
- # resp.authorization_type #=> String, one of "NONE", "AWS_IAM"
2434
- # resp.cors.allow_credentials #=> Boolean
2435
- # resp.cors.allow_headers #=> Array
2436
- # resp.cors.allow_headers[0] #=> String
2437
- # resp.cors.allow_methods #=> Array
2438
- # resp.cors.allow_methods[0] #=> String
2439
- # resp.cors.allow_origins #=> Array
2440
- # resp.cors.allow_origins[0] #=> String
2441
- # resp.cors.expose_headers #=> Array
2442
- # resp.cors.expose_headers[0] #=> String
2443
- # resp.cors.max_age #=> Integer
2444
- # resp.creation_time #=> Time
2445
- # resp.last_modified_time #=> Time
2446
- #
2447
- # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetFunctionUrlConfig AWS API Documentation
2448
- #
2449
- # @overload get_function_url_config(params = {})
2450
- # @param [Hash] params ({})
2451
- def get_function_url_config(params = {}, options = {})
2452
- req = build_request(:get_function_url_config, params)
2453
- req.send_request(options)
2454
- end
2455
-
2456
2331
  # Returns information about a version of an [Lambda layer][1], with a
2457
2332
  # link to download the layer archive that's valid for 10 minutes.
2458
2333
  #
@@ -3183,56 +3058,6 @@ module Aws::Lambda
3183
3058
  req.send_request(options)
3184
3059
  end
3185
3060
 
3186
- # @option params [required, String] :function_name
3187
- #
3188
- # @option params [String] :marker
3189
- #
3190
- # @option params [Integer] :max_items
3191
- #
3192
- # @return [Types::ListFunctionUrlConfigsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3193
- #
3194
- # * {Types::ListFunctionUrlConfigsResponse#function_url_configs #function_url_configs} => Array&lt;Types::FunctionUrlConfig&gt;
3195
- # * {Types::ListFunctionUrlConfigsResponse#next_marker #next_marker} => String
3196
- #
3197
- # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3198
- #
3199
- # @example Request syntax with placeholder values
3200
- #
3201
- # resp = client.list_function_url_configs({
3202
- # function_name: "FunctionName", # required
3203
- # marker: "String",
3204
- # max_items: 1,
3205
- # })
3206
- #
3207
- # @example Response structure
3208
- #
3209
- # resp.function_url_configs #=> Array
3210
- # resp.function_url_configs[0].function_url #=> String
3211
- # resp.function_url_configs[0].function_arn #=> String
3212
- # resp.function_url_configs[0].creation_time #=> Time
3213
- # resp.function_url_configs[0].last_modified_time #=> Time
3214
- # resp.function_url_configs[0].cors.allow_credentials #=> Boolean
3215
- # resp.function_url_configs[0].cors.allow_headers #=> Array
3216
- # resp.function_url_configs[0].cors.allow_headers[0] #=> String
3217
- # resp.function_url_configs[0].cors.allow_methods #=> Array
3218
- # resp.function_url_configs[0].cors.allow_methods[0] #=> String
3219
- # resp.function_url_configs[0].cors.allow_origins #=> Array
3220
- # resp.function_url_configs[0].cors.allow_origins[0] #=> String
3221
- # resp.function_url_configs[0].cors.expose_headers #=> Array
3222
- # resp.function_url_configs[0].cors.expose_headers[0] #=> String
3223
- # resp.function_url_configs[0].cors.max_age #=> Integer
3224
- # resp.function_url_configs[0].authorization_type #=> String, one of "NONE", "AWS_IAM"
3225
- # resp.next_marker #=> String
3226
- #
3227
- # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListFunctionUrlConfigs AWS API Documentation
3228
- #
3229
- # @overload list_function_url_configs(params = {})
3230
- # @param [Hash] params ({})
3231
- def list_function_url_configs(params = {}, options = {})
3232
- req = build_request(:list_function_url_configs, params)
3233
- req.send_request(options)
3234
- end
3235
-
3236
3061
  # Returns a list of Lambda functions, with the version-specific
3237
3062
  # configuration of each. Lambda returns up to 50 functions per call.
3238
3063
  #
@@ -4689,8 +4514,8 @@ module Aws::Lambda
4689
4514
  # * **Amazon MQ (ActiveMQ and RabbitMQ)** - Default 100. Max 10,000.
4690
4515
  #
4691
4516
  # @option params [Types::FilterCriteria] :filter_criteria
4692
- # (Streams and Amazon SQS) A object that defines the filter criteria
4693
- # used to determine whether Lambda should process an event. For more
4517
+ # (Streams and Amazon SQS) An object that defines the filter criteria
4518
+ # that determine whether Lambda should process an event. For more
4694
4519
  # information, see [Lambda event filtering][1].
4695
4520
  #
4696
4521
  #
@@ -4737,8 +4562,8 @@ module Aws::Lambda
4737
4562
  # range is between 1 second up to 900 seconds.
4738
4563
  #
4739
4564
  # @option params [Array<String>] :function_response_types
4740
- # (Streams only) A list of current response type enums applied to the
4741
- # event source mapping.
4565
+ # (Streams and Amazon SQS) A list of current response type enums applied
4566
+ # to the event source mapping.
4742
4567
  #
4743
4568
  # @return [Types::EventSourceMappingConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4744
4569
  #
@@ -5076,7 +4901,8 @@ module Aws::Lambda
5076
4901
  #
5077
4902
  # @option params [String] :handler
5078
4903
  # The name of the method within your code that Lambda calls to execute
5079
- # your function. The format includes the file name. It can also include
4904
+ # your function. Handler is required if the deployment package is a .zip
4905
+ # file archive. The format includes the file name. It can also include
5080
4906
  # namespaces and other qualifiers, depending on the runtime. For more
5081
4907
  # information, see [Programming Model][1].
5082
4908
  #
@@ -5122,7 +4948,8 @@ module Aws::Lambda
5122
4948
  # execution.
5123
4949
  #
5124
4950
  # @option params [String] :runtime
5125
- # The identifier of the function's [runtime][1].
4951
+ # The identifier of the function's [runtime][1]. Runtime is required if
4952
+ # the deployment package is a .zip file archive.
5126
4953
  #
5127
4954
  #
5128
4955
  #
@@ -5405,66 +5232,6 @@ module Aws::Lambda
5405
5232
  req.send_request(options)
5406
5233
  end
5407
5234
 
5408
- # @option params [required, String] :function_name
5409
- #
5410
- # @option params [String] :qualifier
5411
- #
5412
- # @option params [String] :authorization_type
5413
- #
5414
- # @option params [Types::Cors] :cors
5415
- #
5416
- # @return [Types::UpdateFunctionUrlConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5417
- #
5418
- # * {Types::UpdateFunctionUrlConfigResponse#function_url #function_url} => String
5419
- # * {Types::UpdateFunctionUrlConfigResponse#function_arn #function_arn} => String
5420
- # * {Types::UpdateFunctionUrlConfigResponse#authorization_type #authorization_type} => String
5421
- # * {Types::UpdateFunctionUrlConfigResponse#cors #cors} => Types::Cors
5422
- # * {Types::UpdateFunctionUrlConfigResponse#creation_time #creation_time} => Time
5423
- # * {Types::UpdateFunctionUrlConfigResponse#last_modified_time #last_modified_time} => Time
5424
- #
5425
- # @example Request syntax with placeholder values
5426
- #
5427
- # resp = client.update_function_url_config({
5428
- # function_name: "FunctionName", # required
5429
- # qualifier: "FunctionUrlQualifier",
5430
- # authorization_type: "NONE", # accepts NONE, AWS_IAM
5431
- # cors: {
5432
- # allow_credentials: false,
5433
- # allow_headers: ["Header"],
5434
- # allow_methods: ["Method"],
5435
- # allow_origins: ["Origin"],
5436
- # expose_headers: ["Header"],
5437
- # max_age: 1,
5438
- # },
5439
- # })
5440
- #
5441
- # @example Response structure
5442
- #
5443
- # resp.function_url #=> String
5444
- # resp.function_arn #=> String
5445
- # resp.authorization_type #=> String, one of "NONE", "AWS_IAM"
5446
- # resp.cors.allow_credentials #=> Boolean
5447
- # resp.cors.allow_headers #=> Array
5448
- # resp.cors.allow_headers[0] #=> String
5449
- # resp.cors.allow_methods #=> Array
5450
- # resp.cors.allow_methods[0] #=> String
5451
- # resp.cors.allow_origins #=> Array
5452
- # resp.cors.allow_origins[0] #=> String
5453
- # resp.cors.expose_headers #=> Array
5454
- # resp.cors.expose_headers[0] #=> String
5455
- # resp.cors.max_age #=> Integer
5456
- # resp.creation_time #=> Time
5457
- # resp.last_modified_time #=> Time
5458
- #
5459
- # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateFunctionUrlConfig AWS API Documentation
5460
- #
5461
- # @overload update_function_url_config(params = {})
5462
- # @param [Hash] params ({})
5463
- def update_function_url_config(params = {}, options = {})
5464
- req = build_request(:update_function_url_config, params)
5465
- req.send_request(options)
5466
- end
5467
-
5468
5235
  # @!endgroup
5469
5236
 
5470
5237
  # @param params ({})
@@ -5478,7 +5245,7 @@ module Aws::Lambda
5478
5245
  params: params,
5479
5246
  config: config)
5480
5247
  context[:gem_name] = 'aws-sdk-lambda'
5481
- context[:gem_version] = '1.74.0'
5248
+ context[:gem_version] = '1.75.0'
5482
5249
  Seahorse::Client::Request.new(handlers, context)
5483
5250
  end
5484
5251
 
@@ -26,14 +26,10 @@ module Aws::Lambda
26
26
  AliasConfiguration = Shapes::StructureShape.new(name: 'AliasConfiguration')
27
27
  AliasList = Shapes::ListShape.new(name: 'AliasList')
28
28
  AliasRoutingConfiguration = Shapes::StructureShape.new(name: 'AliasRoutingConfiguration')
29
- AllowCredentials = Shapes::BooleanShape.new(name: 'AllowCredentials')
30
- AllowMethodsList = Shapes::ListShape.new(name: 'AllowMethodsList')
31
- AllowOriginsList = Shapes::ListShape.new(name: 'AllowOriginsList')
32
29
  AllowedPublishers = Shapes::StructureShape.new(name: 'AllowedPublishers')
33
30
  Architecture = Shapes::StringShape.new(name: 'Architecture')
34
31
  ArchitecturesList = Shapes::ListShape.new(name: 'ArchitecturesList')
35
32
  Arn = Shapes::StringShape.new(name: 'Arn')
36
- AuthorizationType = Shapes::StringShape.new(name: 'AuthorizationType')
37
33
  BatchSize = Shapes::IntegerShape.new(name: 'BatchSize')
38
34
  BisectBatchOnFunctionError = Shapes::BooleanShape.new(name: 'BisectBatchOnFunctionError')
39
35
  Blob = Shapes::BlobShape.new(name: 'Blob')
@@ -51,14 +47,11 @@ module Aws::Lambda
51
47
  CompatibleArchitectures = Shapes::ListShape.new(name: 'CompatibleArchitectures')
52
48
  CompatibleRuntimes = Shapes::ListShape.new(name: 'CompatibleRuntimes')
53
49
  Concurrency = Shapes::StructureShape.new(name: 'Concurrency')
54
- Cors = Shapes::StructureShape.new(name: 'Cors')
55
50
  CreateAliasRequest = Shapes::StructureShape.new(name: 'CreateAliasRequest')
56
51
  CreateCodeSigningConfigRequest = Shapes::StructureShape.new(name: 'CreateCodeSigningConfigRequest')
57
52
  CreateCodeSigningConfigResponse = Shapes::StructureShape.new(name: 'CreateCodeSigningConfigResponse')
58
53
  CreateEventSourceMappingRequest = Shapes::StructureShape.new(name: 'CreateEventSourceMappingRequest')
59
54
  CreateFunctionRequest = Shapes::StructureShape.new(name: 'CreateFunctionRequest')
60
- CreateFunctionUrlConfigRequest = Shapes::StructureShape.new(name: 'CreateFunctionUrlConfigRequest')
61
- CreateFunctionUrlConfigResponse = Shapes::StructureShape.new(name: 'CreateFunctionUrlConfigResponse')
62
55
  Date = Shapes::TimestampShape.new(name: 'Date')
63
56
  DeadLetterConfig = Shapes::StructureShape.new(name: 'DeadLetterConfig')
64
57
  DeleteAliasRequest = Shapes::StructureShape.new(name: 'DeleteAliasRequest')
@@ -69,7 +62,6 @@ module Aws::Lambda
69
62
  DeleteFunctionConcurrencyRequest = Shapes::StructureShape.new(name: 'DeleteFunctionConcurrencyRequest')
70
63
  DeleteFunctionEventInvokeConfigRequest = Shapes::StructureShape.new(name: 'DeleteFunctionEventInvokeConfigRequest')
71
64
  DeleteFunctionRequest = Shapes::StructureShape.new(name: 'DeleteFunctionRequest')
72
- DeleteFunctionUrlConfigRequest = Shapes::StructureShape.new(name: 'DeleteFunctionUrlConfigRequest')
73
65
  DeleteLayerVersionRequest = Shapes::StructureShape.new(name: 'DeleteLayerVersionRequest')
74
66
  DeleteProvisionedConcurrencyConfigRequest = Shapes::StructureShape.new(name: 'DeleteProvisionedConcurrencyConfigRequest')
75
67
  Description = Shapes::StringShape.new(name: 'Description')
@@ -115,10 +107,6 @@ module Aws::Lambda
115
107
  FunctionName = Shapes::StringShape.new(name: 'FunctionName')
116
108
  FunctionResponseType = Shapes::StringShape.new(name: 'FunctionResponseType')
117
109
  FunctionResponseTypeList = Shapes::ListShape.new(name: 'FunctionResponseTypeList')
118
- FunctionUrl = Shapes::StringShape.new(name: 'FunctionUrl')
119
- FunctionUrlConfig = Shapes::StructureShape.new(name: 'FunctionUrlConfig')
120
- FunctionUrlConfigList = Shapes::ListShape.new(name: 'FunctionUrlConfigList')
121
- FunctionUrlQualifier = Shapes::StringShape.new(name: 'FunctionUrlQualifier')
122
110
  FunctionVersion = Shapes::StringShape.new(name: 'FunctionVersion')
123
111
  GetAccountSettingsRequest = Shapes::StructureShape.new(name: 'GetAccountSettingsRequest')
124
112
  GetAccountSettingsResponse = Shapes::StructureShape.new(name: 'GetAccountSettingsResponse')
@@ -134,8 +122,6 @@ module Aws::Lambda
134
122
  GetFunctionEventInvokeConfigRequest = Shapes::StructureShape.new(name: 'GetFunctionEventInvokeConfigRequest')
135
123
  GetFunctionRequest = Shapes::StructureShape.new(name: 'GetFunctionRequest')
136
124
  GetFunctionResponse = Shapes::StructureShape.new(name: 'GetFunctionResponse')
137
- GetFunctionUrlConfigRequest = Shapes::StructureShape.new(name: 'GetFunctionUrlConfigRequest')
138
- GetFunctionUrlConfigResponse = Shapes::StructureShape.new(name: 'GetFunctionUrlConfigResponse')
139
125
  GetLayerVersionByArnRequest = Shapes::StructureShape.new(name: 'GetLayerVersionByArnRequest')
140
126
  GetLayerVersionPolicyRequest = Shapes::StructureShape.new(name: 'GetLayerVersionPolicyRequest')
141
127
  GetLayerVersionPolicyResponse = Shapes::StructureShape.new(name: 'GetLayerVersionPolicyResponse')
@@ -146,8 +132,6 @@ module Aws::Lambda
146
132
  GetProvisionedConcurrencyConfigRequest = Shapes::StructureShape.new(name: 'GetProvisionedConcurrencyConfigRequest')
147
133
  GetProvisionedConcurrencyConfigResponse = Shapes::StructureShape.new(name: 'GetProvisionedConcurrencyConfigResponse')
148
134
  Handler = Shapes::StringShape.new(name: 'Handler')
149
- Header = Shapes::StringShape.new(name: 'Header')
150
- HeadersList = Shapes::ListShape.new(name: 'HeadersList')
151
135
  HttpStatus = Shapes::IntegerShape.new(name: 'HttpStatus')
152
136
  ImageConfig = Shapes::StructureShape.new(name: 'ImageConfig')
153
137
  ImageConfigError = Shapes::StructureShape.new(name: 'ImageConfigError')
@@ -197,8 +181,6 @@ module Aws::Lambda
197
181
  ListEventSourceMappingsResponse = Shapes::StructureShape.new(name: 'ListEventSourceMappingsResponse')
198
182
  ListFunctionEventInvokeConfigsRequest = Shapes::StructureShape.new(name: 'ListFunctionEventInvokeConfigsRequest')
199
183
  ListFunctionEventInvokeConfigsResponse = Shapes::StructureShape.new(name: 'ListFunctionEventInvokeConfigsResponse')
200
- ListFunctionUrlConfigsRequest = Shapes::StructureShape.new(name: 'ListFunctionUrlConfigsRequest')
201
- ListFunctionUrlConfigsResponse = Shapes::StructureShape.new(name: 'ListFunctionUrlConfigsResponse')
202
184
  ListFunctionsByCodeSigningConfigRequest = Shapes::StructureShape.new(name: 'ListFunctionsByCodeSigningConfigRequest')
203
185
  ListFunctionsByCodeSigningConfigResponse = Shapes::StructureShape.new(name: 'ListFunctionsByCodeSigningConfigResponse')
204
186
  ListFunctionsRequest = Shapes::StructureShape.new(name: 'ListFunctionsRequest')
@@ -217,9 +199,7 @@ module Aws::Lambda
217
199
  LogType = Shapes::StringShape.new(name: 'LogType')
218
200
  Long = Shapes::IntegerShape.new(name: 'Long')
219
201
  MasterRegion = Shapes::StringShape.new(name: 'MasterRegion')
220
- MaxAge = Shapes::IntegerShape.new(name: 'MaxAge')
221
202
  MaxFunctionEventInvokeConfigListItems = Shapes::IntegerShape.new(name: 'MaxFunctionEventInvokeConfigListItems')
222
- MaxItems = Shapes::IntegerShape.new(name: 'MaxItems')
223
203
  MaxLayerListItems = Shapes::IntegerShape.new(name: 'MaxLayerListItems')
224
204
  MaxListItems = Shapes::IntegerShape.new(name: 'MaxListItems')
225
205
  MaxProvisionedConcurrencyConfigListItems = Shapes::IntegerShape.new(name: 'MaxProvisionedConcurrencyConfigListItems')
@@ -229,7 +209,6 @@ module Aws::Lambda
229
209
  MaximumRetryAttempts = Shapes::IntegerShape.new(name: 'MaximumRetryAttempts')
230
210
  MaximumRetryAttemptsEventSourceMapping = Shapes::IntegerShape.new(name: 'MaximumRetryAttemptsEventSourceMapping')
231
211
  MemorySize = Shapes::IntegerShape.new(name: 'MemorySize')
232
- Method = Shapes::StringShape.new(name: 'Method')
233
212
  NameSpacedFunctionArn = Shapes::StringShape.new(name: 'NameSpacedFunctionArn')
234
213
  NamespacedFunctionName = Shapes::StringShape.new(name: 'NamespacedFunctionName')
235
214
  NamespacedStatementId = Shapes::StringShape.new(name: 'NamespacedStatementId')
@@ -237,7 +216,6 @@ module Aws::Lambda
237
216
  OnFailure = Shapes::StructureShape.new(name: 'OnFailure')
238
217
  OnSuccess = Shapes::StructureShape.new(name: 'OnSuccess')
239
218
  OrganizationId = Shapes::StringShape.new(name: 'OrganizationId')
240
- Origin = Shapes::StringShape.new(name: 'Origin')
241
219
  PackageType = Shapes::StringShape.new(name: 'PackageType')
242
220
  ParallelizationFactor = Shapes::IntegerShape.new(name: 'ParallelizationFactor')
243
221
  Pattern = Shapes::StringShape.new(name: 'Pattern')
@@ -320,8 +298,6 @@ module Aws::Lambda
320
298
  UpdateFunctionCodeRequest = Shapes::StructureShape.new(name: 'UpdateFunctionCodeRequest')
321
299
  UpdateFunctionConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateFunctionConfigurationRequest')
322
300
  UpdateFunctionEventInvokeConfigRequest = Shapes::StructureShape.new(name: 'UpdateFunctionEventInvokeConfigRequest')
323
- UpdateFunctionUrlConfigRequest = Shapes::StructureShape.new(name: 'UpdateFunctionUrlConfigRequest')
324
- UpdateFunctionUrlConfigResponse = Shapes::StructureShape.new(name: 'UpdateFunctionUrlConfigResponse')
325
301
  Version = Shapes::StringShape.new(name: 'Version')
326
302
  VpcConfig = Shapes::StructureShape.new(name: 'VpcConfig')
327
303
  VpcConfigResponse = Shapes::StructureShape.new(name: 'VpcConfigResponse')
@@ -383,10 +359,6 @@ module Aws::Lambda
383
359
  AliasRoutingConfiguration.add_member(:additional_version_weights, Shapes::ShapeRef.new(shape: AdditionalVersionWeights, location_name: "AdditionalVersionWeights"))
384
360
  AliasRoutingConfiguration.struct_class = Types::AliasRoutingConfiguration
385
361
 
386
- AllowMethodsList.member = Shapes::ShapeRef.new(shape: Method)
387
-
388
- AllowOriginsList.member = Shapes::ShapeRef.new(shape: Origin)
389
-
390
362
  AllowedPublishers.add_member(:signing_profile_version_arns, Shapes::ShapeRef.new(shape: SigningProfileVersionArns, required: true, location_name: "SigningProfileVersionArns"))
391
363
  AllowedPublishers.struct_class = Types::AllowedPublishers
392
364
 
@@ -424,14 +396,6 @@ module Aws::Lambda
424
396
  Concurrency.add_member(:reserved_concurrent_executions, Shapes::ShapeRef.new(shape: ReservedConcurrentExecutions, location_name: "ReservedConcurrentExecutions"))
425
397
  Concurrency.struct_class = Types::Concurrency
426
398
 
427
- Cors.add_member(:allow_credentials, Shapes::ShapeRef.new(shape: AllowCredentials, location_name: "AllowCredentials"))
428
- Cors.add_member(:allow_headers, Shapes::ShapeRef.new(shape: HeadersList, location_name: "AllowHeaders"))
429
- Cors.add_member(:allow_methods, Shapes::ShapeRef.new(shape: AllowMethodsList, location_name: "AllowMethods"))
430
- Cors.add_member(:allow_origins, Shapes::ShapeRef.new(shape: AllowOriginsList, location_name: "AllowOrigins"))
431
- Cors.add_member(:expose_headers, Shapes::ShapeRef.new(shape: HeadersList, location_name: "ExposeHeaders"))
432
- Cors.add_member(:max_age, Shapes::ShapeRef.new(shape: MaxAge, location_name: "MaxAge"))
433
- Cors.struct_class = Types::Cors
434
-
435
399
  CreateAliasRequest.add_member(:function_name, Shapes::ShapeRef.new(shape: FunctionName, required: true, location: "uri", location_name: "FunctionName"))
436
400
  CreateAliasRequest.add_member(:name, Shapes::ShapeRef.new(shape: Alias, required: true, location_name: "Name"))
437
401
  CreateAliasRequest.add_member(:function_version, Shapes::ShapeRef.new(shape: Version, required: true, location_name: "FunctionVersion"))
@@ -491,19 +455,6 @@ module Aws::Lambda
491
455
  CreateFunctionRequest.add_member(:architectures, Shapes::ShapeRef.new(shape: ArchitecturesList, location_name: "Architectures"))
492
456
  CreateFunctionRequest.struct_class = Types::CreateFunctionRequest
493
457
 
494
- CreateFunctionUrlConfigRequest.add_member(:function_name, Shapes::ShapeRef.new(shape: FunctionName, required: true, location: "uri", location_name: "FunctionName"))
495
- CreateFunctionUrlConfigRequest.add_member(:qualifier, Shapes::ShapeRef.new(shape: FunctionUrlQualifier, location: "querystring", location_name: "Qualifier"))
496
- CreateFunctionUrlConfigRequest.add_member(:authorization_type, Shapes::ShapeRef.new(shape: AuthorizationType, required: true, location_name: "AuthorizationType"))
497
- CreateFunctionUrlConfigRequest.add_member(:cors, Shapes::ShapeRef.new(shape: Cors, location_name: "Cors"))
498
- CreateFunctionUrlConfigRequest.struct_class = Types::CreateFunctionUrlConfigRequest
499
-
500
- CreateFunctionUrlConfigResponse.add_member(:function_url, Shapes::ShapeRef.new(shape: FunctionUrl, required: true, location_name: "FunctionUrl"))
501
- CreateFunctionUrlConfigResponse.add_member(:function_arn, Shapes::ShapeRef.new(shape: FunctionArn, required: true, location_name: "FunctionArn"))
502
- CreateFunctionUrlConfigResponse.add_member(:authorization_type, Shapes::ShapeRef.new(shape: AuthorizationType, required: true, location_name: "AuthorizationType"))
503
- CreateFunctionUrlConfigResponse.add_member(:cors, Shapes::ShapeRef.new(shape: Cors, location_name: "Cors"))
504
- CreateFunctionUrlConfigResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
505
- CreateFunctionUrlConfigResponse.struct_class = Types::CreateFunctionUrlConfigResponse
506
-
507
458
  DeadLetterConfig.add_member(:target_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "TargetArn"))
508
459
  DeadLetterConfig.struct_class = Types::DeadLetterConfig
509
460
 
@@ -533,10 +484,6 @@ module Aws::Lambda
533
484
  DeleteFunctionRequest.add_member(:qualifier, Shapes::ShapeRef.new(shape: Qualifier, location: "querystring", location_name: "Qualifier"))
534
485
  DeleteFunctionRequest.struct_class = Types::DeleteFunctionRequest
535
486
 
536
- DeleteFunctionUrlConfigRequest.add_member(:function_name, Shapes::ShapeRef.new(shape: FunctionName, required: true, location: "uri", location_name: "FunctionName"))
537
- DeleteFunctionUrlConfigRequest.add_member(:qualifier, Shapes::ShapeRef.new(shape: FunctionUrlQualifier, location: "querystring", location_name: "Qualifier"))
538
- DeleteFunctionUrlConfigRequest.struct_class = Types::DeleteFunctionUrlConfigRequest
539
-
540
487
  DeleteLayerVersionRequest.add_member(:layer_name, Shapes::ShapeRef.new(shape: LayerName, required: true, location: "uri", location_name: "LayerName"))
541
488
  DeleteLayerVersionRequest.add_member(:version_number, Shapes::ShapeRef.new(shape: LayerVersionNumber, required: true, location: "uri", location_name: "VersionNumber"))
542
489
  DeleteLayerVersionRequest.struct_class = Types::DeleteLayerVersionRequest
@@ -704,16 +651,6 @@ module Aws::Lambda
704
651
 
705
652
  FunctionResponseTypeList.member = Shapes::ShapeRef.new(shape: FunctionResponseType)
706
653
 
707
- FunctionUrlConfig.add_member(:function_url, Shapes::ShapeRef.new(shape: FunctionUrl, required: true, location_name: "FunctionUrl"))
708
- FunctionUrlConfig.add_member(:function_arn, Shapes::ShapeRef.new(shape: FunctionArn, required: true, location_name: "FunctionArn"))
709
- FunctionUrlConfig.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
710
- FunctionUrlConfig.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "LastModifiedTime"))
711
- FunctionUrlConfig.add_member(:cors, Shapes::ShapeRef.new(shape: Cors, location_name: "Cors"))
712
- FunctionUrlConfig.add_member(:authorization_type, Shapes::ShapeRef.new(shape: AuthorizationType, required: true, location_name: "AuthorizationType"))
713
- FunctionUrlConfig.struct_class = Types::FunctionUrlConfig
714
-
715
- FunctionUrlConfigList.member = Shapes::ShapeRef.new(shape: FunctionUrlConfig)
716
-
717
654
  GetAccountSettingsRequest.struct_class = Types::GetAccountSettingsRequest
718
655
 
719
656
  GetAccountSettingsResponse.add_member(:account_limit, Shapes::ShapeRef.new(shape: AccountLimit, location_name: "AccountLimit"))
@@ -764,18 +701,6 @@ module Aws::Lambda
764
701
  GetFunctionResponse.add_member(:concurrency, Shapes::ShapeRef.new(shape: Concurrency, location_name: "Concurrency"))
765
702
  GetFunctionResponse.struct_class = Types::GetFunctionResponse
766
703
 
767
- GetFunctionUrlConfigRequest.add_member(:function_name, Shapes::ShapeRef.new(shape: FunctionName, required: true, location: "uri", location_name: "FunctionName"))
768
- GetFunctionUrlConfigRequest.add_member(:qualifier, Shapes::ShapeRef.new(shape: FunctionUrlQualifier, location: "querystring", location_name: "Qualifier"))
769
- GetFunctionUrlConfigRequest.struct_class = Types::GetFunctionUrlConfigRequest
770
-
771
- GetFunctionUrlConfigResponse.add_member(:function_url, Shapes::ShapeRef.new(shape: FunctionUrl, required: true, location_name: "FunctionUrl"))
772
- GetFunctionUrlConfigResponse.add_member(:function_arn, Shapes::ShapeRef.new(shape: FunctionArn, required: true, location_name: "FunctionArn"))
773
- GetFunctionUrlConfigResponse.add_member(:authorization_type, Shapes::ShapeRef.new(shape: AuthorizationType, required: true, location_name: "AuthorizationType"))
774
- GetFunctionUrlConfigResponse.add_member(:cors, Shapes::ShapeRef.new(shape: Cors, location_name: "Cors"))
775
- GetFunctionUrlConfigResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
776
- GetFunctionUrlConfigResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "LastModifiedTime"))
777
- GetFunctionUrlConfigResponse.struct_class = Types::GetFunctionUrlConfigResponse
778
-
779
704
  GetLayerVersionByArnRequest.add_member(:arn, Shapes::ShapeRef.new(shape: LayerVersionArn, required: true, location: "querystring", location_name: "Arn"))
780
705
  GetLayerVersionByArnRequest.struct_class = Types::GetLayerVersionByArnRequest
781
706
 
@@ -822,8 +747,6 @@ module Aws::Lambda
822
747
  GetProvisionedConcurrencyConfigResponse.add_member(:last_modified, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModified"))
823
748
  GetProvisionedConcurrencyConfigResponse.struct_class = Types::GetProvisionedConcurrencyConfigResponse
824
749
 
825
- HeadersList.member = Shapes::ShapeRef.new(shape: Header)
826
-
827
750
  ImageConfig.add_member(:entry_point, Shapes::ShapeRef.new(shape: StringList, location_name: "EntryPoint"))
828
751
  ImageConfig.add_member(:command, Shapes::ShapeRef.new(shape: StringList, location_name: "Command"))
829
752
  ImageConfig.add_member(:working_directory, Shapes::ShapeRef.new(shape: WorkingDirectory, location_name: "WorkingDirectory"))
@@ -987,15 +910,6 @@ module Aws::Lambda
987
910
  ListFunctionEventInvokeConfigsResponse.add_member(:next_marker, Shapes::ShapeRef.new(shape: String, location_name: "NextMarker"))
988
911
  ListFunctionEventInvokeConfigsResponse.struct_class = Types::ListFunctionEventInvokeConfigsResponse
989
912
 
990
- ListFunctionUrlConfigsRequest.add_member(:function_name, Shapes::ShapeRef.new(shape: FunctionName, required: true, location: "uri", location_name: "FunctionName"))
991
- ListFunctionUrlConfigsRequest.add_member(:marker, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "Marker"))
992
- ListFunctionUrlConfigsRequest.add_member(:max_items, Shapes::ShapeRef.new(shape: MaxItems, location: "querystring", location_name: "MaxItems"))
993
- ListFunctionUrlConfigsRequest.struct_class = Types::ListFunctionUrlConfigsRequest
994
-
995
- ListFunctionUrlConfigsResponse.add_member(:function_url_configs, Shapes::ShapeRef.new(shape: FunctionUrlConfigList, required: true, location_name: "FunctionUrlConfigs"))
996
- ListFunctionUrlConfigsResponse.add_member(:next_marker, Shapes::ShapeRef.new(shape: String, location_name: "NextMarker"))
997
- ListFunctionUrlConfigsResponse.struct_class = Types::ListFunctionUrlConfigsResponse
998
-
999
913
  ListFunctionsByCodeSigningConfigRequest.add_member(:code_signing_config_arn, Shapes::ShapeRef.new(shape: CodeSigningConfigArn, required: true, location: "uri", location_name: "CodeSigningConfigArn"))
1000
914
  ListFunctionsByCodeSigningConfigRequest.add_member(:marker, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "Marker"))
1001
915
  ListFunctionsByCodeSigningConfigRequest.add_member(:max_items, Shapes::ShapeRef.new(shape: MaxListItems, location: "querystring", location_name: "MaxItems"))
@@ -1306,20 +1220,6 @@ module Aws::Lambda
1306
1220
  UpdateFunctionEventInvokeConfigRequest.add_member(:destination_config, Shapes::ShapeRef.new(shape: DestinationConfig, location_name: "DestinationConfig"))
1307
1221
  UpdateFunctionEventInvokeConfigRequest.struct_class = Types::UpdateFunctionEventInvokeConfigRequest
1308
1222
 
1309
- UpdateFunctionUrlConfigRequest.add_member(:function_name, Shapes::ShapeRef.new(shape: FunctionName, required: true, location: "uri", location_name: "FunctionName"))
1310
- UpdateFunctionUrlConfigRequest.add_member(:qualifier, Shapes::ShapeRef.new(shape: FunctionUrlQualifier, location: "querystring", location_name: "Qualifier"))
1311
- UpdateFunctionUrlConfigRequest.add_member(:authorization_type, Shapes::ShapeRef.new(shape: AuthorizationType, location_name: "AuthorizationType"))
1312
- UpdateFunctionUrlConfigRequest.add_member(:cors, Shapes::ShapeRef.new(shape: Cors, location_name: "Cors"))
1313
- UpdateFunctionUrlConfigRequest.struct_class = Types::UpdateFunctionUrlConfigRequest
1314
-
1315
- UpdateFunctionUrlConfigResponse.add_member(:function_url, Shapes::ShapeRef.new(shape: FunctionUrl, required: true, location_name: "FunctionUrl"))
1316
- UpdateFunctionUrlConfigResponse.add_member(:function_arn, Shapes::ShapeRef.new(shape: FunctionArn, required: true, location_name: "FunctionArn"))
1317
- UpdateFunctionUrlConfigResponse.add_member(:authorization_type, Shapes::ShapeRef.new(shape: AuthorizationType, required: true, location_name: "AuthorizationType"))
1318
- UpdateFunctionUrlConfigResponse.add_member(:cors, Shapes::ShapeRef.new(shape: Cors, location_name: "Cors"))
1319
- UpdateFunctionUrlConfigResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
1320
- UpdateFunctionUrlConfigResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "LastModifiedTime"))
1321
- UpdateFunctionUrlConfigResponse.struct_class = Types::UpdateFunctionUrlConfigResponse
1322
-
1323
1223
  VpcConfig.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "SubnetIds"))
1324
1224
  VpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
1325
1225
  VpcConfig.struct_class = Types::VpcConfig
@@ -1428,19 +1328,6 @@ module Aws::Lambda
1428
1328
  o.errors << Shapes::ShapeRef.new(shape: CodeSigningConfigNotFoundException)
1429
1329
  end)
1430
1330
 
1431
- api.add_operation(:create_function_url_config, Seahorse::Model::Operation.new.tap do |o|
1432
- o.name = "CreateFunctionUrlConfig"
1433
- o.http_method = "POST"
1434
- o.http_request_uri = "/2021-10-31/functions/{FunctionName}/url"
1435
- o.input = Shapes::ShapeRef.new(shape: CreateFunctionUrlConfigRequest)
1436
- o.output = Shapes::ShapeRef.new(shape: CreateFunctionUrlConfigResponse)
1437
- o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
1438
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1439
- o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
1440
- o.errors << Shapes::ShapeRef.new(shape: ServiceException)
1441
- o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
1442
- end)
1443
-
1444
1331
  api.add_operation(:delete_alias, Seahorse::Model::Operation.new.tap do |o|
1445
1332
  o.name = "DeleteAlias"
1446
1333
  o.http_method = "DELETE"
@@ -1531,18 +1418,6 @@ module Aws::Lambda
1531
1418
  o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
1532
1419
  end)
1533
1420
 
1534
- api.add_operation(:delete_function_url_config, Seahorse::Model::Operation.new.tap do |o|
1535
- o.name = "DeleteFunctionUrlConfig"
1536
- o.http_method = "DELETE"
1537
- o.http_request_uri = "/2021-10-31/functions/{FunctionName}/url"
1538
- o.input = Shapes::ShapeRef.new(shape: DeleteFunctionUrlConfigRequest)
1539
- o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
1540
- o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
1541
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1542
- o.errors << Shapes::ShapeRef.new(shape: ServiceException)
1543
- o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
1544
- end)
1545
-
1546
1421
  api.add_operation(:delete_layer_version, Seahorse::Model::Operation.new.tap do |o|
1547
1422
  o.name = "DeleteLayerVersion"
1548
1423
  o.http_method = "DELETE"
@@ -1671,18 +1546,6 @@ module Aws::Lambda
1671
1546
  o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
1672
1547
  end)
1673
1548
 
1674
- api.add_operation(:get_function_url_config, Seahorse::Model::Operation.new.tap do |o|
1675
- o.name = "GetFunctionUrlConfig"
1676
- o.http_method = "GET"
1677
- o.http_request_uri = "/2021-10-31/functions/{FunctionName}/url"
1678
- o.input = Shapes::ShapeRef.new(shape: GetFunctionUrlConfigRequest)
1679
- o.output = Shapes::ShapeRef.new(shape: GetFunctionUrlConfigResponse)
1680
- o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
1681
- o.errors << Shapes::ShapeRef.new(shape: ServiceException)
1682
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1683
- o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
1684
- end)
1685
-
1686
1549
  api.add_operation(:get_layer_version, Seahorse::Model::Operation.new.tap do |o|
1687
1550
  o.name = "GetLayerVersion"
1688
1551
  o.http_method = "GET"
@@ -1862,24 +1725,6 @@ module Aws::Lambda
1862
1725
  )
1863
1726
  end)
1864
1727
 
1865
- api.add_operation(:list_function_url_configs, Seahorse::Model::Operation.new.tap do |o|
1866
- o.name = "ListFunctionUrlConfigs"
1867
- o.http_method = "GET"
1868
- o.http_request_uri = "/2021-10-31/functions/{FunctionName}/urls"
1869
- o.input = Shapes::ShapeRef.new(shape: ListFunctionUrlConfigsRequest)
1870
- o.output = Shapes::ShapeRef.new(shape: ListFunctionUrlConfigsResponse)
1871
- o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
1872
- o.errors << Shapes::ShapeRef.new(shape: ServiceException)
1873
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1874
- o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
1875
- o[:pager] = Aws::Pager.new(
1876
- limit_key: "max_items",
1877
- tokens: {
1878
- "next_marker" => "marker"
1879
- }
1880
- )
1881
- end)
1882
-
1883
1728
  api.add_operation(:list_functions, Seahorse::Model::Operation.new.tap do |o|
1884
1729
  o.name = "ListFunctions"
1885
1730
  o.http_method = "GET"
@@ -2216,19 +2061,6 @@ module Aws::Lambda
2216
2061
  o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
2217
2062
  o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
2218
2063
  end)
2219
-
2220
- api.add_operation(:update_function_url_config, Seahorse::Model::Operation.new.tap do |o|
2221
- o.name = "UpdateFunctionUrlConfig"
2222
- o.http_method = "PUT"
2223
- o.http_request_uri = "/2021-10-31/functions/{FunctionName}/url"
2224
- o.input = Shapes::ShapeRef.new(shape: UpdateFunctionUrlConfigRequest)
2225
- o.output = Shapes::ShapeRef.new(shape: UpdateFunctionUrlConfigResponse)
2226
- o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
2227
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2228
- o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
2229
- o.errors << Shapes::ShapeRef.new(shape: ServiceException)
2230
- o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
2231
- end)
2232
2064
  end
2233
2065
 
2234
2066
  end
@@ -511,49 +511,6 @@ module Aws::Lambda
511
511
  include Aws::Structure
512
512
  end
513
513
 
514
- # @note When making an API call, you may pass Cors
515
- # data as a hash:
516
- #
517
- # {
518
- # allow_credentials: false,
519
- # allow_headers: ["Header"],
520
- # allow_methods: ["Method"],
521
- # allow_origins: ["Origin"],
522
- # expose_headers: ["Header"],
523
- # max_age: 1,
524
- # }
525
- #
526
- # @!attribute [rw] allow_credentials
527
- # @return [Boolean]
528
- #
529
- # @!attribute [rw] allow_headers
530
- # @return [Array<String>]
531
- #
532
- # @!attribute [rw] allow_methods
533
- # @return [Array<String>]
534
- #
535
- # @!attribute [rw] allow_origins
536
- # @return [Array<String>]
537
- #
538
- # @!attribute [rw] expose_headers
539
- # @return [Array<String>]
540
- #
541
- # @!attribute [rw] max_age
542
- # @return [Integer]
543
- #
544
- # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/Cors AWS API Documentation
545
- #
546
- class Cors < Struct.new(
547
- :allow_credentials,
548
- :allow_headers,
549
- :allow_methods,
550
- :allow_origins,
551
- :expose_headers,
552
- :max_age)
553
- SENSITIVE = []
554
- include Aws::Structure
555
- end
556
-
557
514
  # @note When making an API call, you may pass CreateAliasRequest
558
515
  # data as a hash:
559
516
  #
@@ -774,8 +731,8 @@ module Aws::Lambda
774
731
  # @return [Integer]
775
732
  #
776
733
  # @!attribute [rw] filter_criteria
777
- # (Streams and Amazon SQS) A object that defines the filter criteria
778
- # used to determine whether Lambda should process an event. For more
734
+ # (Streams and Amazon SQS) An object that defines the filter criteria
735
+ # that determine whether Lambda should process an event. For more
779
736
  # information, see [Lambda event filtering][1].
780
737
  #
781
738
  #
@@ -854,8 +811,8 @@ module Aws::Lambda
854
811
  # @return [Types::SelfManagedEventSource]
855
812
  #
856
813
  # @!attribute [rw] function_response_types
857
- # (Streams only) A list of current response type enums applied to the
858
- # event source mapping.
814
+ # (Streams and Amazon SQS) A list of current response type enums
815
+ # applied to the event source mapping.
859
816
  # @return [Array<String>]
860
817
  #
861
818
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateEventSourceMappingRequest AWS API Documentation
@@ -956,7 +913,8 @@ module Aws::Lambda
956
913
  # @return [String]
957
914
  #
958
915
  # @!attribute [rw] runtime
959
- # The identifier of the function's [runtime][1].
916
+ # The identifier of the function's [runtime][1]. Runtime is required
917
+ # if the deployment package is a .zip file archive.
960
918
  #
961
919
  #
962
920
  #
@@ -969,7 +927,8 @@ module Aws::Lambda
969
927
  #
970
928
  # @!attribute [rw] handler
971
929
  # The name of the method within your code that Lambda calls to execute
972
- # your function. The format includes the file name. It can also
930
+ # your function. Handler is required if the deployment package is a
931
+ # .zip file archive. The format includes the file name. It can also
973
932
  # include namespaces and other qualifiers, depending on the runtime.
974
933
  # For more information, see [Programming Model][1].
975
934
  #
@@ -1130,73 +1089,6 @@ module Aws::Lambda
1130
1089
  include Aws::Structure
1131
1090
  end
1132
1091
 
1133
- # @note When making an API call, you may pass CreateFunctionUrlConfigRequest
1134
- # data as a hash:
1135
- #
1136
- # {
1137
- # function_name: "FunctionName", # required
1138
- # qualifier: "FunctionUrlQualifier",
1139
- # authorization_type: "NONE", # required, accepts NONE, AWS_IAM
1140
- # cors: {
1141
- # allow_credentials: false,
1142
- # allow_headers: ["Header"],
1143
- # allow_methods: ["Method"],
1144
- # allow_origins: ["Origin"],
1145
- # expose_headers: ["Header"],
1146
- # max_age: 1,
1147
- # },
1148
- # }
1149
- #
1150
- # @!attribute [rw] function_name
1151
- # @return [String]
1152
- #
1153
- # @!attribute [rw] qualifier
1154
- # @return [String]
1155
- #
1156
- # @!attribute [rw] authorization_type
1157
- # @return [String]
1158
- #
1159
- # @!attribute [rw] cors
1160
- # @return [Types::Cors]
1161
- #
1162
- # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateFunctionUrlConfigRequest AWS API Documentation
1163
- #
1164
- class CreateFunctionUrlConfigRequest < Struct.new(
1165
- :function_name,
1166
- :qualifier,
1167
- :authorization_type,
1168
- :cors)
1169
- SENSITIVE = []
1170
- include Aws::Structure
1171
- end
1172
-
1173
- # @!attribute [rw] function_url
1174
- # @return [String]
1175
- #
1176
- # @!attribute [rw] function_arn
1177
- # @return [String]
1178
- #
1179
- # @!attribute [rw] authorization_type
1180
- # @return [String]
1181
- #
1182
- # @!attribute [rw] cors
1183
- # @return [Types::Cors]
1184
- #
1185
- # @!attribute [rw] creation_time
1186
- # @return [Time]
1187
- #
1188
- # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateFunctionUrlConfigResponse AWS API Documentation
1189
- #
1190
- class CreateFunctionUrlConfigResponse < Struct.new(
1191
- :function_url,
1192
- :function_arn,
1193
- :authorization_type,
1194
- :cors,
1195
- :creation_time)
1196
- SENSITIVE = []
1197
- include Aws::Structure
1198
- end
1199
-
1200
1092
  # The [dead-letter queue][1] for failed asynchronous invocations.
1201
1093
  #
1202
1094
  #
@@ -1444,29 +1336,6 @@ module Aws::Lambda
1444
1336
  include Aws::Structure
1445
1337
  end
1446
1338
 
1447
- # @note When making an API call, you may pass DeleteFunctionUrlConfigRequest
1448
- # data as a hash:
1449
- #
1450
- # {
1451
- # function_name: "FunctionName", # required
1452
- # qualifier: "FunctionUrlQualifier",
1453
- # }
1454
- #
1455
- # @!attribute [rw] function_name
1456
- # @return [String]
1457
- #
1458
- # @!attribute [rw] qualifier
1459
- # @return [String]
1460
- #
1461
- # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/DeleteFunctionUrlConfigRequest AWS API Documentation
1462
- #
1463
- class DeleteFunctionUrlConfigRequest < Struct.new(
1464
- :function_name,
1465
- :qualifier)
1466
- SENSITIVE = []
1467
- include Aws::Structure
1468
- end
1469
-
1470
1339
  # @note When making an API call, you may pass DeleteLayerVersionRequest
1471
1340
  # data as a hash:
1472
1341
  #
@@ -1834,9 +1703,13 @@ module Aws::Lambda
1834
1703
  # @return [String]
1835
1704
  #
1836
1705
  # @!attribute [rw] filter_criteria
1837
- # (Streams and Amazon SQS) A object that defines the filter criteria
1838
- # used to determine whether Lambda should process an event. For more
1839
- # information, see Event filtering.
1706
+ # (Streams and Amazon SQS) An object that defines the filter criteria
1707
+ # that determine whether Lambda should process an event. For more
1708
+ # information, see [Lambda event filtering][1].
1709
+ #
1710
+ #
1711
+ #
1712
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html
1840
1713
  # @return [Types::FilterCriteria]
1841
1714
  #
1842
1715
  # @!attribute [rw] function_arn
@@ -1978,7 +1851,8 @@ module Aws::Lambda
1978
1851
  include Aws::Structure
1979
1852
  end
1980
1853
 
1981
- # An object that specifies a filter criteria.
1854
+ # A structure within a `FilterCriteria` object that defines an event
1855
+ # filtering pattern.
1982
1856
  #
1983
1857
  # @note When making an API call, you may pass Filter
1984
1858
  # data as a hash:
@@ -1989,7 +1863,7 @@ module Aws::Lambda
1989
1863
  #
1990
1864
  # @!attribute [rw] pattern
1991
1865
  # A filter pattern. For more information on the syntax of a filter
1992
- # pattern, see [ Filter criteria syntax][1].
1866
+ # pattern, see [ Filter rule syntax][1].
1993
1867
  #
1994
1868
  #
1995
1869
  #
@@ -2004,7 +1878,7 @@ module Aws::Lambda
2004
1878
  include Aws::Structure
2005
1879
  end
2006
1880
 
2007
- # An object that contains the filters on the event source.
1881
+ # An object that contains the filters for an event source.
2008
1882
  #
2009
1883
  # @note When making an API call, you may pass FilterCriteria
2010
1884
  # data as a hash:
@@ -2356,37 +2230,6 @@ module Aws::Lambda
2356
2230
  include Aws::Structure
2357
2231
  end
2358
2232
 
2359
- # @!attribute [rw] function_url
2360
- # @return [String]
2361
- #
2362
- # @!attribute [rw] function_arn
2363
- # @return [String]
2364
- #
2365
- # @!attribute [rw] creation_time
2366
- # @return [Time]
2367
- #
2368
- # @!attribute [rw] last_modified_time
2369
- # @return [Time]
2370
- #
2371
- # @!attribute [rw] cors
2372
- # @return [Types::Cors]
2373
- #
2374
- # @!attribute [rw] authorization_type
2375
- # @return [String]
2376
- #
2377
- # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/FunctionUrlConfig AWS API Documentation
2378
- #
2379
- class FunctionUrlConfig < Struct.new(
2380
- :function_url,
2381
- :function_arn,
2382
- :creation_time,
2383
- :last_modified_time,
2384
- :cors,
2385
- :authorization_type)
2386
- SENSITIVE = []
2387
- include Aws::Structure
2388
- end
2389
-
2390
2233
  # @api private
2391
2234
  #
2392
2235
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetAccountSettingsRequest AWS API Documentation
@@ -2757,60 +2600,6 @@ module Aws::Lambda
2757
2600
  include Aws::Structure
2758
2601
  end
2759
2602
 
2760
- # @note When making an API call, you may pass GetFunctionUrlConfigRequest
2761
- # data as a hash:
2762
- #
2763
- # {
2764
- # function_name: "FunctionName", # required
2765
- # qualifier: "FunctionUrlQualifier",
2766
- # }
2767
- #
2768
- # @!attribute [rw] function_name
2769
- # @return [String]
2770
- #
2771
- # @!attribute [rw] qualifier
2772
- # @return [String]
2773
- #
2774
- # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetFunctionUrlConfigRequest AWS API Documentation
2775
- #
2776
- class GetFunctionUrlConfigRequest < Struct.new(
2777
- :function_name,
2778
- :qualifier)
2779
- SENSITIVE = []
2780
- include Aws::Structure
2781
- end
2782
-
2783
- # @!attribute [rw] function_url
2784
- # @return [String]
2785
- #
2786
- # @!attribute [rw] function_arn
2787
- # @return [String]
2788
- #
2789
- # @!attribute [rw] authorization_type
2790
- # @return [String]
2791
- #
2792
- # @!attribute [rw] cors
2793
- # @return [Types::Cors]
2794
- #
2795
- # @!attribute [rw] creation_time
2796
- # @return [Time]
2797
- #
2798
- # @!attribute [rw] last_modified_time
2799
- # @return [Time]
2800
- #
2801
- # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/GetFunctionUrlConfigResponse AWS API Documentation
2802
- #
2803
- class GetFunctionUrlConfigResponse < Struct.new(
2804
- :function_url,
2805
- :function_arn,
2806
- :authorization_type,
2807
- :cors,
2808
- :creation_time,
2809
- :last_modified_time)
2810
- SENSITIVE = []
2811
- include Aws::Structure
2812
- end
2813
-
2814
2603
  # @note When making an API call, you may pass GetLayerVersionByArnRequest
2815
2604
  # data as a hash:
2816
2605
  #
@@ -3999,49 +3788,6 @@ module Aws::Lambda
3999
3788
  include Aws::Structure
4000
3789
  end
4001
3790
 
4002
- # @note When making an API call, you may pass ListFunctionUrlConfigsRequest
4003
- # data as a hash:
4004
- #
4005
- # {
4006
- # function_name: "FunctionName", # required
4007
- # marker: "String",
4008
- # max_items: 1,
4009
- # }
4010
- #
4011
- # @!attribute [rw] function_name
4012
- # @return [String]
4013
- #
4014
- # @!attribute [rw] marker
4015
- # @return [String]
4016
- #
4017
- # @!attribute [rw] max_items
4018
- # @return [Integer]
4019
- #
4020
- # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListFunctionUrlConfigsRequest AWS API Documentation
4021
- #
4022
- class ListFunctionUrlConfigsRequest < Struct.new(
4023
- :function_name,
4024
- :marker,
4025
- :max_items)
4026
- SENSITIVE = []
4027
- include Aws::Structure
4028
- end
4029
-
4030
- # @!attribute [rw] function_url_configs
4031
- # @return [Array<Types::FunctionUrlConfig>]
4032
- #
4033
- # @!attribute [rw] next_marker
4034
- # @return [String]
4035
- #
4036
- # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/ListFunctionUrlConfigsResponse AWS API Documentation
4037
- #
4038
- class ListFunctionUrlConfigsResponse < Struct.new(
4039
- :function_url_configs,
4040
- :next_marker)
4041
- SENSITIVE = []
4042
- include Aws::Structure
4043
- end
4044
-
4045
3791
  # @note When making an API call, you may pass ListFunctionsByCodeSigningConfigRequest
4046
3792
  # data as a hash:
4047
3793
  #
@@ -5323,6 +5069,17 @@ module Aws::Lambda
5323
5069
  # RabbitMQ broker. Lambda uses this RabbitMQ host as the event
5324
5070
  # source. This property cannot be specified in an
5325
5071
  # UpdateEventSourceMapping API call.
5072
+ #
5073
+ # * `CLIENT_CERTIFICATE_TLS_AUTH` - (Amazon MSK, Self-managed Apache
5074
+ # Kafka) The Secrets Manager ARN of your secret key containing the
5075
+ # certificate chain (X.509 PEM), private key (PKCS#8 PEM), and
5076
+ # private key password (optional) used for mutual TLS authentication
5077
+ # of your MSK/Apache Kafka brokers.
5078
+ #
5079
+ # * `SERVER_ROOT_CA_CERTIFICATE` - (Self-managed Apache Kafka) The
5080
+ # Secrets Manager ARN of your secret key containing the root CA
5081
+ # certificate (X.509 PEM) used for TLS encryption of your Apache
5082
+ # Kafka brokers.
5326
5083
  # @return [String]
5327
5084
  #
5328
5085
  # @!attribute [rw] uri
@@ -5708,8 +5465,8 @@ module Aws::Lambda
5708
5465
  # @return [Integer]
5709
5466
  #
5710
5467
  # @!attribute [rw] filter_criteria
5711
- # (Streams and Amazon SQS) A object that defines the filter criteria
5712
- # used to determine whether Lambda should process an event. For more
5468
+ # (Streams and Amazon SQS) An object that defines the filter criteria
5469
+ # that determine whether Lambda should process an event. For more
5713
5470
  # information, see [Lambda event filtering][1].
5714
5471
  #
5715
5472
  #
@@ -5765,8 +5522,8 @@ module Aws::Lambda
5765
5522
  # @return [Integer]
5766
5523
  #
5767
5524
  # @!attribute [rw] function_response_types
5768
- # (Streams only) A list of current response type enums applied to the
5769
- # event source mapping.
5525
+ # (Streams and Amazon SQS) A list of current response type enums
5526
+ # applied to the event source mapping.
5770
5527
  # @return [Array<String>]
5771
5528
  #
5772
5529
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateEventSourceMappingRequest AWS API Documentation
@@ -5951,7 +5708,8 @@ module Aws::Lambda
5951
5708
  #
5952
5709
  # @!attribute [rw] handler
5953
5710
  # The name of the method within your code that Lambda calls to execute
5954
- # your function. The format includes the file name. It can also
5711
+ # your function. Handler is required if the deployment package is a
5712
+ # .zip file archive. The format includes the file name. It can also
5955
5713
  # include namespaces and other qualifiers, depending on the runtime.
5956
5714
  # For more information, see [Programming Model][1].
5957
5715
  #
@@ -6003,7 +5761,8 @@ module Aws::Lambda
6003
5761
  # @return [Types::Environment]
6004
5762
  #
6005
5763
  # @!attribute [rw] runtime
6006
- # The identifier of the function's [runtime][1].
5764
+ # The identifier of the function's [runtime][1]. Runtime is required
5765
+ # if the deployment package is a .zip file archive.
6007
5766
  #
6008
5767
  #
6009
5768
  #
@@ -6164,77 +5923,6 @@ module Aws::Lambda
6164
5923
  include Aws::Structure
6165
5924
  end
6166
5925
 
6167
- # @note When making an API call, you may pass UpdateFunctionUrlConfigRequest
6168
- # data as a hash:
6169
- #
6170
- # {
6171
- # function_name: "FunctionName", # required
6172
- # qualifier: "FunctionUrlQualifier",
6173
- # authorization_type: "NONE", # accepts NONE, AWS_IAM
6174
- # cors: {
6175
- # allow_credentials: false,
6176
- # allow_headers: ["Header"],
6177
- # allow_methods: ["Method"],
6178
- # allow_origins: ["Origin"],
6179
- # expose_headers: ["Header"],
6180
- # max_age: 1,
6181
- # },
6182
- # }
6183
- #
6184
- # @!attribute [rw] function_name
6185
- # @return [String]
6186
- #
6187
- # @!attribute [rw] qualifier
6188
- # @return [String]
6189
- #
6190
- # @!attribute [rw] authorization_type
6191
- # @return [String]
6192
- #
6193
- # @!attribute [rw] cors
6194
- # @return [Types::Cors]
6195
- #
6196
- # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateFunctionUrlConfigRequest AWS API Documentation
6197
- #
6198
- class UpdateFunctionUrlConfigRequest < Struct.new(
6199
- :function_name,
6200
- :qualifier,
6201
- :authorization_type,
6202
- :cors)
6203
- SENSITIVE = []
6204
- include Aws::Structure
6205
- end
6206
-
6207
- # @!attribute [rw] function_url
6208
- # @return [String]
6209
- #
6210
- # @!attribute [rw] function_arn
6211
- # @return [String]
6212
- #
6213
- # @!attribute [rw] authorization_type
6214
- # @return [String]
6215
- #
6216
- # @!attribute [rw] cors
6217
- # @return [Types::Cors]
6218
- #
6219
- # @!attribute [rw] creation_time
6220
- # @return [Time]
6221
- #
6222
- # @!attribute [rw] last_modified_time
6223
- # @return [Time]
6224
- #
6225
- # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateFunctionUrlConfigResponse AWS API Documentation
6226
- #
6227
- class UpdateFunctionUrlConfigResponse < Struct.new(
6228
- :function_url,
6229
- :function_arn,
6230
- :authorization_type,
6231
- :cors,
6232
- :creation_time,
6233
- :last_modified_time)
6234
- SENSITIVE = []
6235
- include Aws::Structure
6236
- end
6237
-
6238
5926
  # The VPC security groups and subnets that are attached to a Lambda
6239
5927
  # function. For more information, see [VPC Settings][1].
6240
5928
  #
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-lambda/customizations'
49
49
  # @!group service
50
50
  module Aws::Lambda
51
51
 
52
- GEM_VERSION = '1.74.0'
52
+ GEM_VERSION = '1.75.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lambda
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.74.0
4
+ version: 1.75.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-23 00:00:00.000000000 Z
11
+ date: 2021-11-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core