aws-sdk-lambda 1.44.0 → 1.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-lambda.rb +2 -2
- data/lib/aws-sdk-lambda/client.rb +99 -45
- data/lib/aws-sdk-lambda/client_api.rb +6 -0
- data/lib/aws-sdk-lambda/customizations.rb +1 -0
- data/lib/aws-sdk-lambda/types.rb +174 -18
- metadata +2 -2
@@ -230,6 +230,8 @@ module Aws::Lambda
|
|
230
230
|
Timeout = Shapes::IntegerShape.new(name: 'Timeout')
|
231
231
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
232
232
|
TooManyRequestsException = Shapes::StructureShape.new(name: 'TooManyRequestsException')
|
233
|
+
Topic = Shapes::StringShape.new(name: 'Topic')
|
234
|
+
Topics = Shapes::ListShape.new(name: 'Topics')
|
233
235
|
TracingConfig = Shapes::StructureShape.new(name: 'TracingConfig')
|
234
236
|
TracingConfigResponse = Shapes::StructureShape.new(name: 'TracingConfigResponse')
|
235
237
|
TracingMode = Shapes::StringShape.new(name: 'TracingMode')
|
@@ -329,6 +331,7 @@ module Aws::Lambda
|
|
329
331
|
CreateEventSourceMappingRequest.add_member(:maximum_record_age_in_seconds, Shapes::ShapeRef.new(shape: MaximumRecordAgeInSeconds, location_name: "MaximumRecordAgeInSeconds"))
|
330
332
|
CreateEventSourceMappingRequest.add_member(:bisect_batch_on_function_error, Shapes::ShapeRef.new(shape: BisectBatchOnFunctionError, location_name: "BisectBatchOnFunctionError"))
|
331
333
|
CreateEventSourceMappingRequest.add_member(:maximum_retry_attempts, Shapes::ShapeRef.new(shape: MaximumRetryAttemptsEventSourceMapping, location_name: "MaximumRetryAttempts"))
|
334
|
+
CreateEventSourceMappingRequest.add_member(:topics, Shapes::ShapeRef.new(shape: Topics, location_name: "Topics"))
|
332
335
|
CreateEventSourceMappingRequest.struct_class = Types::CreateEventSourceMappingRequest
|
333
336
|
|
334
337
|
CreateFunctionRequest.add_member(:function_name, Shapes::ShapeRef.new(shape: FunctionName, required: true, location_name: "FunctionName"))
|
@@ -441,6 +444,7 @@ module Aws::Lambda
|
|
441
444
|
EventSourceMappingConfiguration.add_member(:state, Shapes::ShapeRef.new(shape: String, location_name: "State"))
|
442
445
|
EventSourceMappingConfiguration.add_member(:state_transition_reason, Shapes::ShapeRef.new(shape: String, location_name: "StateTransitionReason"))
|
443
446
|
EventSourceMappingConfiguration.add_member(:destination_config, Shapes::ShapeRef.new(shape: DestinationConfig, location_name: "DestinationConfig"))
|
447
|
+
EventSourceMappingConfiguration.add_member(:topics, Shapes::ShapeRef.new(shape: Topics, location_name: "Topics"))
|
444
448
|
EventSourceMappingConfiguration.add_member(:maximum_record_age_in_seconds, Shapes::ShapeRef.new(shape: MaximumRecordAgeInSeconds, location_name: "MaximumRecordAgeInSeconds"))
|
445
449
|
EventSourceMappingConfiguration.add_member(:bisect_batch_on_function_error, Shapes::ShapeRef.new(shape: BisectBatchOnFunctionError, location_name: "BisectBatchOnFunctionError"))
|
446
450
|
EventSourceMappingConfiguration.add_member(:maximum_retry_attempts, Shapes::ShapeRef.new(shape: MaximumRetryAttemptsEventSourceMapping, location_name: "MaximumRetryAttempts"))
|
@@ -907,6 +911,8 @@ module Aws::Lambda
|
|
907
911
|
TooManyRequestsException.add_member(:reason, Shapes::ShapeRef.new(shape: ThrottleReason, location_name: "Reason"))
|
908
912
|
TooManyRequestsException.struct_class = Types::TooManyRequestsException
|
909
913
|
|
914
|
+
Topics.member = Shapes::ShapeRef.new(shape: Topic)
|
915
|
+
|
910
916
|
TracingConfig.add_member(:mode, Shapes::ShapeRef.new(shape: TracingMode, location_name: "Mode"))
|
911
917
|
TracingConfig.struct_class = Types::TracingConfig
|
912
918
|
|
data/lib/aws-sdk-lambda/types.rb
CHANGED
@@ -46,6 +46,7 @@ module Aws::Lambda
|
|
46
46
|
:code_size_zipped,
|
47
47
|
:concurrent_executions,
|
48
48
|
:unreserved_concurrent_executions)
|
49
|
+
SENSITIVE = []
|
49
50
|
include Aws::Structure
|
50
51
|
end
|
51
52
|
|
@@ -65,6 +66,7 @@ module Aws::Lambda
|
|
65
66
|
class AccountUsage < Struct.new(
|
66
67
|
:total_code_size,
|
67
68
|
:function_count)
|
69
|
+
SENSITIVE = []
|
68
70
|
include Aws::Structure
|
69
71
|
end
|
70
72
|
|
@@ -124,6 +126,7 @@ module Aws::Lambda
|
|
124
126
|
:principal,
|
125
127
|
:organization_id,
|
126
128
|
:revision_id)
|
129
|
+
SENSITIVE = []
|
127
130
|
include Aws::Structure
|
128
131
|
end
|
129
132
|
|
@@ -140,6 +143,7 @@ module Aws::Lambda
|
|
140
143
|
class AddLayerVersionPermissionResponse < Struct.new(
|
141
144
|
:statement,
|
142
145
|
:revision_id)
|
146
|
+
SENSITIVE = []
|
143
147
|
include Aws::Structure
|
144
148
|
end
|
145
149
|
|
@@ -232,6 +236,7 @@ module Aws::Lambda
|
|
232
236
|
:event_source_token,
|
233
237
|
:qualifier,
|
234
238
|
:revision_id)
|
239
|
+
SENSITIVE = []
|
235
240
|
include Aws::Structure
|
236
241
|
end
|
237
242
|
|
@@ -243,6 +248,7 @@ module Aws::Lambda
|
|
243
248
|
#
|
244
249
|
class AddPermissionResponse < Struct.new(
|
245
250
|
:statement)
|
251
|
+
SENSITIVE = []
|
246
252
|
include Aws::Structure
|
247
253
|
end
|
248
254
|
|
@@ -289,6 +295,7 @@ module Aws::Lambda
|
|
289
295
|
:description,
|
290
296
|
:routing_config,
|
291
297
|
:revision_id)
|
298
|
+
SENSITIVE = []
|
292
299
|
include Aws::Structure
|
293
300
|
end
|
294
301
|
|
@@ -316,6 +323,7 @@ module Aws::Lambda
|
|
316
323
|
#
|
317
324
|
class AliasRoutingConfiguration < Struct.new(
|
318
325
|
:additional_version_weights)
|
326
|
+
SENSITIVE = []
|
319
327
|
include Aws::Structure
|
320
328
|
end
|
321
329
|
|
@@ -338,6 +346,7 @@ module Aws::Lambda
|
|
338
346
|
class CodeStorageExceededException < Struct.new(
|
339
347
|
:type,
|
340
348
|
:message)
|
349
|
+
SENSITIVE = []
|
341
350
|
include Aws::Structure
|
342
351
|
end
|
343
352
|
|
@@ -354,6 +363,7 @@ module Aws::Lambda
|
|
354
363
|
#
|
355
364
|
class Concurrency < Struct.new(
|
356
365
|
:reserved_concurrent_executions)
|
366
|
+
SENSITIVE = []
|
357
367
|
include Aws::Structure
|
358
368
|
end
|
359
369
|
|
@@ -416,6 +426,7 @@ module Aws::Lambda
|
|
416
426
|
:function_version,
|
417
427
|
:description,
|
418
428
|
:routing_config)
|
429
|
+
SENSITIVE = []
|
419
430
|
include Aws::Structure
|
420
431
|
end
|
421
432
|
|
@@ -442,6 +453,7 @@ module Aws::Lambda
|
|
442
453
|
# maximum_record_age_in_seconds: 1,
|
443
454
|
# bisect_batch_on_function_error: false,
|
444
455
|
# maximum_retry_attempts: 1,
|
456
|
+
# topics: ["Topic"],
|
445
457
|
# }
|
446
458
|
#
|
447
459
|
# @!attribute [rw] event_source_arn
|
@@ -453,6 +465,9 @@ module Aws::Lambda
|
|
453
465
|
# * **Amazon DynamoDB Streams** - The ARN of the stream.
|
454
466
|
#
|
455
467
|
# * **Amazon Simple Queue Service** - The ARN of the queue.
|
468
|
+
#
|
469
|
+
# * **Amazon Managed Streaming for Apache Kafka** - The ARN of the
|
470
|
+
# cluster.
|
456
471
|
# @return [String]
|
457
472
|
#
|
458
473
|
# @!attribute [rw] function_name
|
@@ -475,7 +490,8 @@ module Aws::Lambda
|
|
475
490
|
# @return [String]
|
476
491
|
#
|
477
492
|
# @!attribute [rw] enabled
|
478
|
-
#
|
493
|
+
# If true, the event source mapping is active. Set to false to pause
|
494
|
+
# polling and invocation.
|
479
495
|
# @return [Boolean]
|
480
496
|
#
|
481
497
|
# @!attribute [rw] batch_size
|
@@ -486,6 +502,9 @@ module Aws::Lambda
|
|
486
502
|
# * **Amazon DynamoDB Streams** - Default 100. Max 1,000.
|
487
503
|
#
|
488
504
|
# * **Amazon Simple Queue Service** - Default 10. Max 10.
|
505
|
+
#
|
506
|
+
# * **Amazon Managed Streaming for Apache Kafka** - Default 100. Max
|
507
|
+
# 10,000.
|
489
508
|
# @return [Integer]
|
490
509
|
#
|
491
510
|
# @!attribute [rw] maximum_batching_window_in_seconds
|
@@ -500,8 +519,8 @@ module Aws::Lambda
|
|
500
519
|
#
|
501
520
|
# @!attribute [rw] starting_position
|
502
521
|
# The position in a stream from which to start reading. Required for
|
503
|
-
# Amazon Kinesis and Amazon
|
504
|
-
# is only supported for Amazon Kinesis streams.
|
522
|
+
# Amazon Kinesis, Amazon DynamoDB, and Amazon MSK Streams sources.
|
523
|
+
# `AT_TIMESTAMP` is only supported for Amazon Kinesis streams.
|
505
524
|
# @return [String]
|
506
525
|
#
|
507
526
|
# @!attribute [rw] starting_position_timestamp
|
@@ -515,8 +534,8 @@ module Aws::Lambda
|
|
515
534
|
# @return [Types::DestinationConfig]
|
516
535
|
#
|
517
536
|
# @!attribute [rw] maximum_record_age_in_seconds
|
518
|
-
# (Streams)
|
519
|
-
#
|
537
|
+
# (Streams) Discard records older than the specified age. The default
|
538
|
+
# value is infinite (-1).
|
520
539
|
# @return [Integer]
|
521
540
|
#
|
522
541
|
# @!attribute [rw] bisect_batch_on_function_error
|
@@ -525,10 +544,15 @@ module Aws::Lambda
|
|
525
544
|
# @return [Boolean]
|
526
545
|
#
|
527
546
|
# @!attribute [rw] maximum_retry_attempts
|
528
|
-
# (Streams)
|
529
|
-
#
|
547
|
+
# (Streams) Discard records after the specified number of retries. The
|
548
|
+
# default value is infinite (-1). When set to infinite (-1), failed
|
549
|
+
# records will be retried until the record expires.
|
530
550
|
# @return [Integer]
|
531
551
|
#
|
552
|
+
# @!attribute [rw] topics
|
553
|
+
# (MSK) The name of the Kafka topic.
|
554
|
+
# @return [Array<String>]
|
555
|
+
#
|
532
556
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateEventSourceMappingRequest AWS API Documentation
|
533
557
|
#
|
534
558
|
class CreateEventSourceMappingRequest < Struct.new(
|
@@ -543,7 +567,9 @@ module Aws::Lambda
|
|
543
567
|
:destination_config,
|
544
568
|
:maximum_record_age_in_seconds,
|
545
569
|
:bisect_batch_on_function_error,
|
546
|
-
:maximum_retry_attempts
|
570
|
+
:maximum_retry_attempts,
|
571
|
+
:topics)
|
572
|
+
SENSITIVE = []
|
547
573
|
include Aws::Structure
|
548
574
|
end
|
549
575
|
|
@@ -552,7 +578,7 @@ module Aws::Lambda
|
|
552
578
|
#
|
553
579
|
# {
|
554
580
|
# function_name: "FunctionName", # required
|
555
|
-
# runtime: "nodejs", # required, accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, java8, java11, python2.7, python3.6, python3.7, python3.8, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided
|
581
|
+
# runtime: "nodejs", # required, accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2
|
556
582
|
# role: "RoleArn", # required
|
557
583
|
# handler: "Handler", # required
|
558
584
|
# code: { # required
|
@@ -735,6 +761,7 @@ module Aws::Lambda
|
|
735
761
|
:tags,
|
736
762
|
:layers,
|
737
763
|
:file_system_configs)
|
764
|
+
SENSITIVE = []
|
738
765
|
include Aws::Structure
|
739
766
|
end
|
740
767
|
|
@@ -760,6 +787,7 @@ module Aws::Lambda
|
|
760
787
|
#
|
761
788
|
class DeadLetterConfig < Struct.new(
|
762
789
|
:target_arn)
|
790
|
+
SENSITIVE = []
|
763
791
|
include Aws::Structure
|
764
792
|
end
|
765
793
|
|
@@ -796,6 +824,7 @@ module Aws::Lambda
|
|
796
824
|
class DeleteAliasRequest < Struct.new(
|
797
825
|
:function_name,
|
798
826
|
:name)
|
827
|
+
SENSITIVE = []
|
799
828
|
include Aws::Structure
|
800
829
|
end
|
801
830
|
|
@@ -814,6 +843,7 @@ module Aws::Lambda
|
|
814
843
|
#
|
815
844
|
class DeleteEventSourceMappingRequest < Struct.new(
|
816
845
|
:uuid)
|
846
|
+
SENSITIVE = []
|
817
847
|
include Aws::Structure
|
818
848
|
end
|
819
849
|
|
@@ -844,6 +874,7 @@ module Aws::Lambda
|
|
844
874
|
#
|
845
875
|
class DeleteFunctionConcurrencyRequest < Struct.new(
|
846
876
|
:function_name)
|
877
|
+
SENSITIVE = []
|
847
878
|
include Aws::Structure
|
848
879
|
end
|
849
880
|
|
@@ -882,6 +913,7 @@ module Aws::Lambda
|
|
882
913
|
class DeleteFunctionEventInvokeConfigRequest < Struct.new(
|
883
914
|
:function_name,
|
884
915
|
:qualifier)
|
916
|
+
SENSITIVE = []
|
885
917
|
include Aws::Structure
|
886
918
|
end
|
887
919
|
|
@@ -921,6 +953,7 @@ module Aws::Lambda
|
|
921
953
|
class DeleteFunctionRequest < Struct.new(
|
922
954
|
:function_name,
|
923
955
|
:qualifier)
|
956
|
+
SENSITIVE = []
|
924
957
|
include Aws::Structure
|
925
958
|
end
|
926
959
|
|
@@ -945,6 +978,7 @@ module Aws::Lambda
|
|
945
978
|
class DeleteLayerVersionRequest < Struct.new(
|
946
979
|
:layer_name,
|
947
980
|
:version_number)
|
981
|
+
SENSITIVE = []
|
948
982
|
include Aws::Structure
|
949
983
|
end
|
950
984
|
|
@@ -981,6 +1015,7 @@ module Aws::Lambda
|
|
981
1015
|
class DeleteProvisionedConcurrencyConfigRequest < Struct.new(
|
982
1016
|
:function_name,
|
983
1017
|
:qualifier)
|
1018
|
+
SENSITIVE = []
|
984
1019
|
include Aws::Structure
|
985
1020
|
end
|
986
1021
|
|
@@ -1012,6 +1047,7 @@ module Aws::Lambda
|
|
1012
1047
|
class DestinationConfig < Struct.new(
|
1013
1048
|
:on_success,
|
1014
1049
|
:on_failure)
|
1050
|
+
SENSITIVE = []
|
1015
1051
|
include Aws::Structure
|
1016
1052
|
end
|
1017
1053
|
|
@@ -1028,6 +1064,7 @@ module Aws::Lambda
|
|
1028
1064
|
class EC2AccessDeniedException < Struct.new(
|
1029
1065
|
:type,
|
1030
1066
|
:message)
|
1067
|
+
SENSITIVE = []
|
1031
1068
|
include Aws::Structure
|
1032
1069
|
end
|
1033
1070
|
|
@@ -1046,6 +1083,7 @@ module Aws::Lambda
|
|
1046
1083
|
class EC2ThrottledException < Struct.new(
|
1047
1084
|
:type,
|
1048
1085
|
:message)
|
1086
|
+
SENSITIVE = []
|
1049
1087
|
include Aws::Structure
|
1050
1088
|
end
|
1051
1089
|
|
@@ -1067,6 +1105,7 @@ module Aws::Lambda
|
|
1067
1105
|
:type,
|
1068
1106
|
:message,
|
1069
1107
|
:ec2_error_code)
|
1108
|
+
SENSITIVE = []
|
1070
1109
|
include Aws::Structure
|
1071
1110
|
end
|
1072
1111
|
|
@@ -1084,6 +1123,7 @@ module Aws::Lambda
|
|
1084
1123
|
class EFSIOException < Struct.new(
|
1085
1124
|
:type,
|
1086
1125
|
:message)
|
1126
|
+
SENSITIVE = []
|
1087
1127
|
include Aws::Structure
|
1088
1128
|
end
|
1089
1129
|
|
@@ -1101,6 +1141,7 @@ module Aws::Lambda
|
|
1101
1141
|
class EFSMountConnectivityException < Struct.new(
|
1102
1142
|
:type,
|
1103
1143
|
:message)
|
1144
|
+
SENSITIVE = []
|
1104
1145
|
include Aws::Structure
|
1105
1146
|
end
|
1106
1147
|
|
@@ -1118,6 +1159,7 @@ module Aws::Lambda
|
|
1118
1159
|
class EFSMountFailureException < Struct.new(
|
1119
1160
|
:type,
|
1120
1161
|
:message)
|
1162
|
+
SENSITIVE = []
|
1121
1163
|
include Aws::Structure
|
1122
1164
|
end
|
1123
1165
|
|
@@ -1135,6 +1177,7 @@ module Aws::Lambda
|
|
1135
1177
|
class EFSMountTimeoutException < Struct.new(
|
1136
1178
|
:type,
|
1137
1179
|
:message)
|
1180
|
+
SENSITIVE = []
|
1138
1181
|
include Aws::Structure
|
1139
1182
|
end
|
1140
1183
|
|
@@ -1153,6 +1196,7 @@ module Aws::Lambda
|
|
1153
1196
|
class ENILimitReachedException < Struct.new(
|
1154
1197
|
:type,
|
1155
1198
|
:message)
|
1199
|
+
SENSITIVE = []
|
1156
1200
|
include Aws::Structure
|
1157
1201
|
end
|
1158
1202
|
|
@@ -1175,6 +1219,7 @@ module Aws::Lambda
|
|
1175
1219
|
#
|
1176
1220
|
class Environment < Struct.new(
|
1177
1221
|
:variables)
|
1222
|
+
SENSITIVE = [:variables]
|
1178
1223
|
include Aws::Structure
|
1179
1224
|
end
|
1180
1225
|
|
@@ -1193,6 +1238,7 @@ module Aws::Lambda
|
|
1193
1238
|
class EnvironmentError < Struct.new(
|
1194
1239
|
:error_code,
|
1195
1240
|
:message)
|
1241
|
+
SENSITIVE = [:message]
|
1196
1242
|
include Aws::Structure
|
1197
1243
|
end
|
1198
1244
|
|
@@ -1214,6 +1260,7 @@ module Aws::Lambda
|
|
1214
1260
|
class EnvironmentResponse < Struct.new(
|
1215
1261
|
:variables,
|
1216
1262
|
:error)
|
1263
|
+
SENSITIVE = [:variables]
|
1217
1264
|
include Aws::Structure
|
1218
1265
|
end
|
1219
1266
|
|
@@ -1272,6 +1319,10 @@ module Aws::Lambda
|
|
1272
1319
|
# discarded records.
|
1273
1320
|
# @return [Types::DestinationConfig]
|
1274
1321
|
#
|
1322
|
+
# @!attribute [rw] topics
|
1323
|
+
# (MSK) The name of the Kafka topic.
|
1324
|
+
# @return [Array<String>]
|
1325
|
+
#
|
1275
1326
|
# @!attribute [rw] maximum_record_age_in_seconds
|
1276
1327
|
# (Streams) The maximum age of a record that Lambda sends to a
|
1277
1328
|
# function for processing.
|
@@ -1301,9 +1352,11 @@ module Aws::Lambda
|
|
1301
1352
|
:state,
|
1302
1353
|
:state_transition_reason,
|
1303
1354
|
:destination_config,
|
1355
|
+
:topics,
|
1304
1356
|
:maximum_record_age_in_seconds,
|
1305
1357
|
:bisect_batch_on_function_error,
|
1306
1358
|
:maximum_retry_attempts)
|
1359
|
+
SENSITIVE = []
|
1307
1360
|
include Aws::Structure
|
1308
1361
|
end
|
1309
1362
|
|
@@ -1333,6 +1386,7 @@ module Aws::Lambda
|
|
1333
1386
|
class FileSystemConfig < Struct.new(
|
1334
1387
|
:arn,
|
1335
1388
|
:local_mount_path)
|
1389
|
+
SENSITIVE = []
|
1336
1390
|
include Aws::Structure
|
1337
1391
|
end
|
1338
1392
|
|
@@ -1375,6 +1429,7 @@ module Aws::Lambda
|
|
1375
1429
|
:s3_bucket,
|
1376
1430
|
:s3_key,
|
1377
1431
|
:s3_object_version)
|
1432
|
+
SENSITIVE = [:zip_file]
|
1378
1433
|
include Aws::Structure
|
1379
1434
|
end
|
1380
1435
|
|
@@ -1393,6 +1448,7 @@ module Aws::Lambda
|
|
1393
1448
|
class FunctionCodeLocation < Struct.new(
|
1394
1449
|
:repository_type,
|
1395
1450
|
:location)
|
1451
|
+
SENSITIVE = []
|
1396
1452
|
include Aws::Structure
|
1397
1453
|
end
|
1398
1454
|
|
@@ -1552,6 +1608,7 @@ module Aws::Lambda
|
|
1552
1608
|
:last_update_status_reason,
|
1553
1609
|
:last_update_status_reason_code,
|
1554
1610
|
:file_system_configs)
|
1611
|
+
SENSITIVE = []
|
1555
1612
|
include Aws::Structure
|
1556
1613
|
end
|
1557
1614
|
|
@@ -1597,6 +1654,7 @@ module Aws::Lambda
|
|
1597
1654
|
:maximum_retry_attempts,
|
1598
1655
|
:maximum_event_age_in_seconds,
|
1599
1656
|
:destination_config)
|
1657
|
+
SENSITIVE = []
|
1600
1658
|
include Aws::Structure
|
1601
1659
|
end
|
1602
1660
|
|
@@ -1619,6 +1677,7 @@ module Aws::Lambda
|
|
1619
1677
|
class GetAccountSettingsResponse < Struct.new(
|
1620
1678
|
:account_limit,
|
1621
1679
|
:account_usage)
|
1680
|
+
SENSITIVE = []
|
1622
1681
|
include Aws::Structure
|
1623
1682
|
end
|
1624
1683
|
|
@@ -1655,6 +1714,7 @@ module Aws::Lambda
|
|
1655
1714
|
class GetAliasRequest < Struct.new(
|
1656
1715
|
:function_name,
|
1657
1716
|
:name)
|
1717
|
+
SENSITIVE = []
|
1658
1718
|
include Aws::Structure
|
1659
1719
|
end
|
1660
1720
|
|
@@ -1673,6 +1733,7 @@ module Aws::Lambda
|
|
1673
1733
|
#
|
1674
1734
|
class GetEventSourceMappingRequest < Struct.new(
|
1675
1735
|
:uuid)
|
1736
|
+
SENSITIVE = []
|
1676
1737
|
include Aws::Structure
|
1677
1738
|
end
|
1678
1739
|
|
@@ -1703,6 +1764,7 @@ module Aws::Lambda
|
|
1703
1764
|
#
|
1704
1765
|
class GetFunctionConcurrencyRequest < Struct.new(
|
1705
1766
|
:function_name)
|
1767
|
+
SENSITIVE = []
|
1706
1768
|
include Aws::Structure
|
1707
1769
|
end
|
1708
1770
|
|
@@ -1715,6 +1777,7 @@ module Aws::Lambda
|
|
1715
1777
|
#
|
1716
1778
|
class GetFunctionConcurrencyResponse < Struct.new(
|
1717
1779
|
:reserved_concurrent_executions)
|
1780
|
+
SENSITIVE = []
|
1718
1781
|
include Aws::Structure
|
1719
1782
|
end
|
1720
1783
|
|
@@ -1754,6 +1817,7 @@ module Aws::Lambda
|
|
1754
1817
|
class GetFunctionConfigurationRequest < Struct.new(
|
1755
1818
|
:function_name,
|
1756
1819
|
:qualifier)
|
1820
|
+
SENSITIVE = []
|
1757
1821
|
include Aws::Structure
|
1758
1822
|
end
|
1759
1823
|
|
@@ -1792,6 +1856,7 @@ module Aws::Lambda
|
|
1792
1856
|
class GetFunctionEventInvokeConfigRequest < Struct.new(
|
1793
1857
|
:function_name,
|
1794
1858
|
:qualifier)
|
1859
|
+
SENSITIVE = []
|
1795
1860
|
include Aws::Structure
|
1796
1861
|
end
|
1797
1862
|
|
@@ -1831,6 +1896,7 @@ module Aws::Lambda
|
|
1831
1896
|
class GetFunctionRequest < Struct.new(
|
1832
1897
|
:function_name,
|
1833
1898
|
:qualifier)
|
1899
|
+
SENSITIVE = []
|
1834
1900
|
include Aws::Structure
|
1835
1901
|
end
|
1836
1902
|
|
@@ -1865,6 +1931,7 @@ module Aws::Lambda
|
|
1865
1931
|
:code,
|
1866
1932
|
:tags,
|
1867
1933
|
:concurrency)
|
1934
|
+
SENSITIVE = []
|
1868
1935
|
include Aws::Structure
|
1869
1936
|
end
|
1870
1937
|
|
@@ -1883,6 +1950,7 @@ module Aws::Lambda
|
|
1883
1950
|
#
|
1884
1951
|
class GetLayerVersionByArnRequest < Struct.new(
|
1885
1952
|
:arn)
|
1953
|
+
SENSITIVE = []
|
1886
1954
|
include Aws::Structure
|
1887
1955
|
end
|
1888
1956
|
|
@@ -1907,6 +1975,7 @@ module Aws::Lambda
|
|
1907
1975
|
class GetLayerVersionPolicyRequest < Struct.new(
|
1908
1976
|
:layer_name,
|
1909
1977
|
:version_number)
|
1978
|
+
SENSITIVE = []
|
1910
1979
|
include Aws::Structure
|
1911
1980
|
end
|
1912
1981
|
|
@@ -1923,6 +1992,7 @@ module Aws::Lambda
|
|
1923
1992
|
class GetLayerVersionPolicyResponse < Struct.new(
|
1924
1993
|
:policy,
|
1925
1994
|
:revision_id)
|
1995
|
+
SENSITIVE = []
|
1926
1996
|
include Aws::Structure
|
1927
1997
|
end
|
1928
1998
|
|
@@ -1947,6 +2017,7 @@ module Aws::Lambda
|
|
1947
2017
|
class GetLayerVersionRequest < Struct.new(
|
1948
2018
|
:layer_name,
|
1949
2019
|
:version_number)
|
2020
|
+
SENSITIVE = []
|
1950
2021
|
include Aws::Structure
|
1951
2022
|
end
|
1952
2023
|
|
@@ -1998,6 +2069,7 @@ module Aws::Lambda
|
|
1998
2069
|
:version,
|
1999
2070
|
:compatible_runtimes,
|
2000
2071
|
:license_info)
|
2072
|
+
SENSITIVE = []
|
2001
2073
|
include Aws::Structure
|
2002
2074
|
end
|
2003
2075
|
|
@@ -2036,6 +2108,7 @@ module Aws::Lambda
|
|
2036
2108
|
class GetPolicyRequest < Struct.new(
|
2037
2109
|
:function_name,
|
2038
2110
|
:qualifier)
|
2111
|
+
SENSITIVE = []
|
2039
2112
|
include Aws::Structure
|
2040
2113
|
end
|
2041
2114
|
|
@@ -2052,6 +2125,7 @@ module Aws::Lambda
|
|
2052
2125
|
class GetPolicyResponse < Struct.new(
|
2053
2126
|
:policy,
|
2054
2127
|
:revision_id)
|
2128
|
+
SENSITIVE = []
|
2055
2129
|
include Aws::Structure
|
2056
2130
|
end
|
2057
2131
|
|
@@ -2088,6 +2162,7 @@ module Aws::Lambda
|
|
2088
2162
|
class GetProvisionedConcurrencyConfigRequest < Struct.new(
|
2089
2163
|
:function_name,
|
2090
2164
|
:qualifier)
|
2165
|
+
SENSITIVE = []
|
2091
2166
|
include Aws::Structure
|
2092
2167
|
end
|
2093
2168
|
|
@@ -2130,6 +2205,7 @@ module Aws::Lambda
|
|
2130
2205
|
:status,
|
2131
2206
|
:status_reason,
|
2132
2207
|
:last_modified)
|
2208
|
+
SENSITIVE = []
|
2133
2209
|
include Aws::Structure
|
2134
2210
|
end
|
2135
2211
|
|
@@ -2148,6 +2224,7 @@ module Aws::Lambda
|
|
2148
2224
|
class InvalidParameterValueException < Struct.new(
|
2149
2225
|
:type,
|
2150
2226
|
:message)
|
2227
|
+
SENSITIVE = []
|
2151
2228
|
include Aws::Structure
|
2152
2229
|
end
|
2153
2230
|
|
@@ -2166,6 +2243,7 @@ module Aws::Lambda
|
|
2166
2243
|
class InvalidRequestContentException < Struct.new(
|
2167
2244
|
:type,
|
2168
2245
|
:message)
|
2246
|
+
SENSITIVE = []
|
2169
2247
|
include Aws::Structure
|
2170
2248
|
end
|
2171
2249
|
|
@@ -2182,6 +2260,7 @@ module Aws::Lambda
|
|
2182
2260
|
class InvalidRuntimeException < Struct.new(
|
2183
2261
|
:type,
|
2184
2262
|
:message)
|
2263
|
+
SENSITIVE = []
|
2185
2264
|
include Aws::Structure
|
2186
2265
|
end
|
2187
2266
|
|
@@ -2199,6 +2278,7 @@ module Aws::Lambda
|
|
2199
2278
|
class InvalidSecurityGroupIDException < Struct.new(
|
2200
2279
|
:type,
|
2201
2280
|
:message)
|
2281
|
+
SENSITIVE = []
|
2202
2282
|
include Aws::Structure
|
2203
2283
|
end
|
2204
2284
|
|
@@ -2216,6 +2296,7 @@ module Aws::Lambda
|
|
2216
2296
|
class InvalidSubnetIDException < Struct.new(
|
2217
2297
|
:type,
|
2218
2298
|
:message)
|
2299
|
+
SENSITIVE = []
|
2219
2300
|
include Aws::Structure
|
2220
2301
|
end
|
2221
2302
|
|
@@ -2232,6 +2313,7 @@ module Aws::Lambda
|
|
2232
2313
|
class InvalidZipFileException < Struct.new(
|
2233
2314
|
:type,
|
2234
2315
|
:message)
|
2316
|
+
SENSITIVE = []
|
2235
2317
|
include Aws::Structure
|
2236
2318
|
end
|
2237
2319
|
|
@@ -2308,6 +2390,7 @@ module Aws::Lambda
|
|
2308
2390
|
:client_context,
|
2309
2391
|
:payload,
|
2310
2392
|
:qualifier)
|
2393
|
+
SENSITIVE = [:payload]
|
2311
2394
|
include Aws::Structure
|
2312
2395
|
end
|
2313
2396
|
|
@@ -2346,6 +2429,7 @@ module Aws::Lambda
|
|
2346
2429
|
:log_result,
|
2347
2430
|
:payload,
|
2348
2431
|
:executed_version)
|
2432
|
+
SENSITIVE = [:payload]
|
2349
2433
|
include Aws::Structure
|
2350
2434
|
end
|
2351
2435
|
|
@@ -2382,6 +2466,7 @@ module Aws::Lambda
|
|
2382
2466
|
class InvokeAsyncRequest < Struct.new(
|
2383
2467
|
:function_name,
|
2384
2468
|
:invoke_args)
|
2469
|
+
SENSITIVE = []
|
2385
2470
|
include Aws::Structure
|
2386
2471
|
end
|
2387
2472
|
|
@@ -2396,6 +2481,7 @@ module Aws::Lambda
|
|
2396
2481
|
#
|
2397
2482
|
class InvokeAsyncResponse < Struct.new(
|
2398
2483
|
:status)
|
2484
|
+
SENSITIVE = []
|
2399
2485
|
include Aws::Structure
|
2400
2486
|
end
|
2401
2487
|
|
@@ -2413,6 +2499,7 @@ module Aws::Lambda
|
|
2413
2499
|
class KMSAccessDeniedException < Struct.new(
|
2414
2500
|
:type,
|
2415
2501
|
:message)
|
2502
|
+
SENSITIVE = []
|
2416
2503
|
include Aws::Structure
|
2417
2504
|
end
|
2418
2505
|
|
@@ -2430,6 +2517,7 @@ module Aws::Lambda
|
|
2430
2517
|
class KMSDisabledException < Struct.new(
|
2431
2518
|
:type,
|
2432
2519
|
:message)
|
2520
|
+
SENSITIVE = []
|
2433
2521
|
include Aws::Structure
|
2434
2522
|
end
|
2435
2523
|
|
@@ -2448,6 +2536,7 @@ module Aws::Lambda
|
|
2448
2536
|
class KMSInvalidStateException < Struct.new(
|
2449
2537
|
:type,
|
2450
2538
|
:message)
|
2539
|
+
SENSITIVE = []
|
2451
2540
|
include Aws::Structure
|
2452
2541
|
end
|
2453
2542
|
|
@@ -2465,6 +2554,7 @@ module Aws::Lambda
|
|
2465
2554
|
class KMSNotFoundException < Struct.new(
|
2466
2555
|
:type,
|
2467
2556
|
:message)
|
2557
|
+
SENSITIVE = []
|
2468
2558
|
include Aws::Structure
|
2469
2559
|
end
|
2470
2560
|
|
@@ -2487,6 +2577,7 @@ module Aws::Lambda
|
|
2487
2577
|
class Layer < Struct.new(
|
2488
2578
|
:arn,
|
2489
2579
|
:code_size)
|
2580
|
+
SENSITIVE = []
|
2490
2581
|
include Aws::Structure
|
2491
2582
|
end
|
2492
2583
|
|
@@ -2533,6 +2624,7 @@ module Aws::Lambda
|
|
2533
2624
|
:s3_key,
|
2534
2625
|
:s3_object_version,
|
2535
2626
|
:zip_file)
|
2627
|
+
SENSITIVE = [:zip_file]
|
2536
2628
|
include Aws::Structure
|
2537
2629
|
end
|
2538
2630
|
|
@@ -2561,6 +2653,7 @@ module Aws::Lambda
|
|
2561
2653
|
:location,
|
2562
2654
|
:code_sha_256,
|
2563
2655
|
:code_size)
|
2656
|
+
SENSITIVE = []
|
2564
2657
|
include Aws::Structure
|
2565
2658
|
end
|
2566
2659
|
|
@@ -2604,6 +2697,7 @@ module Aws::Lambda
|
|
2604
2697
|
:created_date,
|
2605
2698
|
:compatible_runtimes,
|
2606
2699
|
:license_info)
|
2700
|
+
SENSITIVE = []
|
2607
2701
|
include Aws::Structure
|
2608
2702
|
end
|
2609
2703
|
|
@@ -2631,6 +2725,7 @@ module Aws::Lambda
|
|
2631
2725
|
:layer_name,
|
2632
2726
|
:layer_arn,
|
2633
2727
|
:latest_matching_version)
|
2728
|
+
SENSITIVE = []
|
2634
2729
|
include Aws::Structure
|
2635
2730
|
end
|
2636
2731
|
|
@@ -2681,6 +2776,7 @@ module Aws::Lambda
|
|
2681
2776
|
:function_version,
|
2682
2777
|
:marker,
|
2683
2778
|
:max_items)
|
2779
|
+
SENSITIVE = []
|
2684
2780
|
include Aws::Structure
|
2685
2781
|
end
|
2686
2782
|
|
@@ -2697,6 +2793,7 @@ module Aws::Lambda
|
|
2697
2793
|
class ListAliasesResponse < Struct.new(
|
2698
2794
|
:next_marker,
|
2699
2795
|
:aliases)
|
2796
|
+
SENSITIVE = []
|
2700
2797
|
include Aws::Structure
|
2701
2798
|
end
|
2702
2799
|
|
@@ -2719,6 +2816,9 @@ module Aws::Lambda
|
|
2719
2816
|
# * **Amazon DynamoDB Streams** - The ARN of the stream.
|
2720
2817
|
#
|
2721
2818
|
# * **Amazon Simple Queue Service** - The ARN of the queue.
|
2819
|
+
#
|
2820
|
+
# * **Amazon Managed Streaming for Apache Kafka** - The ARN of the
|
2821
|
+
# cluster.
|
2722
2822
|
# @return [String]
|
2723
2823
|
#
|
2724
2824
|
# @!attribute [rw] function_name
|
@@ -2755,6 +2855,7 @@ module Aws::Lambda
|
|
2755
2855
|
:function_name,
|
2756
2856
|
:marker,
|
2757
2857
|
:max_items)
|
2858
|
+
SENSITIVE = []
|
2758
2859
|
include Aws::Structure
|
2759
2860
|
end
|
2760
2861
|
|
@@ -2772,6 +2873,7 @@ module Aws::Lambda
|
|
2772
2873
|
class ListEventSourceMappingsResponse < Struct.new(
|
2773
2874
|
:next_marker,
|
2774
2875
|
:event_source_mappings)
|
2876
|
+
SENSITIVE = []
|
2775
2877
|
include Aws::Structure
|
2776
2878
|
end
|
2777
2879
|
|
@@ -2815,6 +2917,7 @@ module Aws::Lambda
|
|
2815
2917
|
:function_name,
|
2816
2918
|
:marker,
|
2817
2919
|
:max_items)
|
2920
|
+
SENSITIVE = []
|
2818
2921
|
include Aws::Structure
|
2819
2922
|
end
|
2820
2923
|
|
@@ -2831,6 +2934,7 @@ module Aws::Lambda
|
|
2831
2934
|
class ListFunctionEventInvokeConfigsResponse < Struct.new(
|
2832
2935
|
:function_event_invoke_configs,
|
2833
2936
|
:next_marker)
|
2937
|
+
SENSITIVE = []
|
2834
2938
|
include Aws::Structure
|
2835
2939
|
end
|
2836
2940
|
|
@@ -2873,6 +2977,7 @@ module Aws::Lambda
|
|
2873
2977
|
:function_version,
|
2874
2978
|
:marker,
|
2875
2979
|
:max_items)
|
2980
|
+
SENSITIVE = []
|
2876
2981
|
include Aws::Structure
|
2877
2982
|
end
|
2878
2983
|
|
@@ -2891,6 +2996,7 @@ module Aws::Lambda
|
|
2891
2996
|
class ListFunctionsResponse < Struct.new(
|
2892
2997
|
:next_marker,
|
2893
2998
|
:functions)
|
2999
|
+
SENSITIVE = []
|
2894
3000
|
include Aws::Structure
|
2895
3001
|
end
|
2896
3002
|
|
@@ -2898,7 +3004,7 @@ module Aws::Lambda
|
|
2898
3004
|
# data as a hash:
|
2899
3005
|
#
|
2900
3006
|
# {
|
2901
|
-
# compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, java8, java11, python2.7, python3.6, python3.7, python3.8, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided
|
3007
|
+
# compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2
|
2902
3008
|
# layer_name: "LayerName", # required
|
2903
3009
|
# marker: "String",
|
2904
3010
|
# max_items: 1,
|
@@ -2927,6 +3033,7 @@ module Aws::Lambda
|
|
2927
3033
|
:layer_name,
|
2928
3034
|
:marker,
|
2929
3035
|
:max_items)
|
3036
|
+
SENSITIVE = []
|
2930
3037
|
include Aws::Structure
|
2931
3038
|
end
|
2932
3039
|
|
@@ -2944,6 +3051,7 @@ module Aws::Lambda
|
|
2944
3051
|
class ListLayerVersionsResponse < Struct.new(
|
2945
3052
|
:next_marker,
|
2946
3053
|
:layer_versions)
|
3054
|
+
SENSITIVE = []
|
2947
3055
|
include Aws::Structure
|
2948
3056
|
end
|
2949
3057
|
|
@@ -2951,7 +3059,7 @@ module Aws::Lambda
|
|
2951
3059
|
# data as a hash:
|
2952
3060
|
#
|
2953
3061
|
# {
|
2954
|
-
# compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, java8, java11, python2.7, python3.6, python3.7, python3.8, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided
|
3062
|
+
# compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2
|
2955
3063
|
# marker: "String",
|
2956
3064
|
# max_items: 1,
|
2957
3065
|
# }
|
@@ -2974,6 +3082,7 @@ module Aws::Lambda
|
|
2974
3082
|
:compatible_runtime,
|
2975
3083
|
:marker,
|
2976
3084
|
:max_items)
|
3085
|
+
SENSITIVE = []
|
2977
3086
|
include Aws::Structure
|
2978
3087
|
end
|
2979
3088
|
|
@@ -2991,6 +3100,7 @@ module Aws::Lambda
|
|
2991
3100
|
class ListLayersResponse < Struct.new(
|
2992
3101
|
:next_marker,
|
2993
3102
|
:layers)
|
3103
|
+
SENSITIVE = []
|
2994
3104
|
include Aws::Structure
|
2995
3105
|
end
|
2996
3106
|
|
@@ -3034,6 +3144,7 @@ module Aws::Lambda
|
|
3034
3144
|
:function_name,
|
3035
3145
|
:marker,
|
3036
3146
|
:max_items)
|
3147
|
+
SENSITIVE = []
|
3037
3148
|
include Aws::Structure
|
3038
3149
|
end
|
3039
3150
|
|
@@ -3050,6 +3161,7 @@ module Aws::Lambda
|
|
3050
3161
|
class ListProvisionedConcurrencyConfigsResponse < Struct.new(
|
3051
3162
|
:provisioned_concurrency_configs,
|
3052
3163
|
:next_marker)
|
3164
|
+
SENSITIVE = []
|
3053
3165
|
include Aws::Structure
|
3054
3166
|
end
|
3055
3167
|
|
@@ -3068,6 +3180,7 @@ module Aws::Lambda
|
|
3068
3180
|
#
|
3069
3181
|
class ListTagsRequest < Struct.new(
|
3070
3182
|
:resource)
|
3183
|
+
SENSITIVE = []
|
3071
3184
|
include Aws::Structure
|
3072
3185
|
end
|
3073
3186
|
|
@@ -3079,6 +3192,7 @@ module Aws::Lambda
|
|
3079
3192
|
#
|
3080
3193
|
class ListTagsResponse < Struct.new(
|
3081
3194
|
:tags)
|
3195
|
+
SENSITIVE = []
|
3082
3196
|
include Aws::Structure
|
3083
3197
|
end
|
3084
3198
|
|
@@ -3122,6 +3236,7 @@ module Aws::Lambda
|
|
3122
3236
|
:function_name,
|
3123
3237
|
:marker,
|
3124
3238
|
:max_items)
|
3239
|
+
SENSITIVE = []
|
3125
3240
|
include Aws::Structure
|
3126
3241
|
end
|
3127
3242
|
|
@@ -3138,6 +3253,7 @@ module Aws::Lambda
|
|
3138
3253
|
class ListVersionsByFunctionResponse < Struct.new(
|
3139
3254
|
:next_marker,
|
3140
3255
|
:versions)
|
3256
|
+
SENSITIVE = []
|
3141
3257
|
include Aws::Structure
|
3142
3258
|
end
|
3143
3259
|
|
@@ -3158,6 +3274,7 @@ module Aws::Lambda
|
|
3158
3274
|
#
|
3159
3275
|
class OnFailure < Struct.new(
|
3160
3276
|
:destination)
|
3277
|
+
SENSITIVE = []
|
3161
3278
|
include Aws::Structure
|
3162
3279
|
end
|
3163
3280
|
|
@@ -3178,6 +3295,7 @@ module Aws::Lambda
|
|
3178
3295
|
#
|
3179
3296
|
class OnSuccess < Struct.new(
|
3180
3297
|
:destination)
|
3298
|
+
SENSITIVE = []
|
3181
3299
|
include Aws::Structure
|
3182
3300
|
end
|
3183
3301
|
|
@@ -3198,6 +3316,7 @@ module Aws::Lambda
|
|
3198
3316
|
class PolicyLengthExceededException < Struct.new(
|
3199
3317
|
:type,
|
3200
3318
|
:message)
|
3319
|
+
SENSITIVE = []
|
3201
3320
|
include Aws::Structure
|
3202
3321
|
end
|
3203
3322
|
|
@@ -3218,6 +3337,7 @@ module Aws::Lambda
|
|
3218
3337
|
class PreconditionFailedException < Struct.new(
|
3219
3338
|
:type,
|
3220
3339
|
:message)
|
3340
|
+
SENSITIVE = []
|
3221
3341
|
include Aws::Structure
|
3222
3342
|
end
|
3223
3343
|
|
@@ -3268,6 +3388,7 @@ module Aws::Lambda
|
|
3268
3388
|
:status,
|
3269
3389
|
:status_reason,
|
3270
3390
|
:last_modified)
|
3391
|
+
SENSITIVE = []
|
3271
3392
|
include Aws::Structure
|
3272
3393
|
end
|
3273
3394
|
|
@@ -3284,6 +3405,7 @@ module Aws::Lambda
|
|
3284
3405
|
class ProvisionedConcurrencyConfigNotFoundException < Struct.new(
|
3285
3406
|
:type,
|
3286
3407
|
:message)
|
3408
|
+
SENSITIVE = []
|
3287
3409
|
include Aws::Structure
|
3288
3410
|
end
|
3289
3411
|
|
@@ -3299,7 +3421,7 @@ module Aws::Lambda
|
|
3299
3421
|
# s3_object_version: "S3ObjectVersion",
|
3300
3422
|
# zip_file: "data",
|
3301
3423
|
# },
|
3302
|
-
# compatible_runtimes: ["nodejs"], # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, java8, java11, python2.7, python3.6, python3.7, python3.8, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided
|
3424
|
+
# compatible_runtimes: ["nodejs"], # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2
|
3303
3425
|
# license_info: "LicenseInfo",
|
3304
3426
|
# }
|
3305
3427
|
#
|
@@ -3347,6 +3469,7 @@ module Aws::Lambda
|
|
3347
3469
|
:content,
|
3348
3470
|
:compatible_runtimes,
|
3349
3471
|
:license_info)
|
3472
|
+
SENSITIVE = []
|
3350
3473
|
include Aws::Structure
|
3351
3474
|
end
|
3352
3475
|
|
@@ -3398,6 +3521,7 @@ module Aws::Lambda
|
|
3398
3521
|
:version,
|
3399
3522
|
:compatible_runtimes,
|
3400
3523
|
:license_info)
|
3524
|
+
SENSITIVE = []
|
3401
3525
|
include Aws::Structure
|
3402
3526
|
end
|
3403
3527
|
|
@@ -3453,6 +3577,7 @@ module Aws::Lambda
|
|
3453
3577
|
:code_sha_256,
|
3454
3578
|
:description,
|
3455
3579
|
:revision_id)
|
3580
|
+
SENSITIVE = []
|
3456
3581
|
include Aws::Structure
|
3457
3582
|
end
|
3458
3583
|
|
@@ -3489,6 +3614,7 @@ module Aws::Lambda
|
|
3489
3614
|
class PutFunctionConcurrencyRequest < Struct.new(
|
3490
3615
|
:function_name,
|
3491
3616
|
:reserved_concurrent_executions)
|
3617
|
+
SENSITIVE = []
|
3492
3618
|
include Aws::Structure
|
3493
3619
|
end
|
3494
3620
|
|
@@ -3566,6 +3692,7 @@ module Aws::Lambda
|
|
3566
3692
|
:maximum_retry_attempts,
|
3567
3693
|
:maximum_event_age_in_seconds,
|
3568
3694
|
:destination_config)
|
3695
|
+
SENSITIVE = []
|
3569
3696
|
include Aws::Structure
|
3570
3697
|
end
|
3571
3698
|
|
@@ -3609,6 +3736,7 @@ module Aws::Lambda
|
|
3609
3736
|
:function_name,
|
3610
3737
|
:qualifier,
|
3611
3738
|
:provisioned_concurrent_executions)
|
3739
|
+
SENSITIVE = []
|
3612
3740
|
include Aws::Structure
|
3613
3741
|
end
|
3614
3742
|
|
@@ -3651,6 +3779,7 @@ module Aws::Lambda
|
|
3651
3779
|
:status,
|
3652
3780
|
:status_reason,
|
3653
3781
|
:last_modified)
|
3782
|
+
SENSITIVE = []
|
3654
3783
|
include Aws::Structure
|
3655
3784
|
end
|
3656
3785
|
|
@@ -3689,6 +3818,7 @@ module Aws::Lambda
|
|
3689
3818
|
:version_number,
|
3690
3819
|
:statement_id,
|
3691
3820
|
:revision_id)
|
3821
|
+
SENSITIVE = []
|
3692
3822
|
include Aws::Structure
|
3693
3823
|
end
|
3694
3824
|
|
@@ -3742,6 +3872,7 @@ module Aws::Lambda
|
|
3742
3872
|
:statement_id,
|
3743
3873
|
:qualifier,
|
3744
3874
|
:revision_id)
|
3875
|
+
SENSITIVE = []
|
3745
3876
|
include Aws::Structure
|
3746
3877
|
end
|
3747
3878
|
|
@@ -3763,6 +3894,7 @@ module Aws::Lambda
|
|
3763
3894
|
class RequestTooLargeException < Struct.new(
|
3764
3895
|
:type,
|
3765
3896
|
:message)
|
3897
|
+
SENSITIVE = []
|
3766
3898
|
include Aws::Structure
|
3767
3899
|
end
|
3768
3900
|
|
@@ -3781,6 +3913,7 @@ module Aws::Lambda
|
|
3781
3913
|
class ResourceConflictException < Struct.new(
|
3782
3914
|
:type,
|
3783
3915
|
:message)
|
3916
|
+
SENSITIVE = []
|
3784
3917
|
include Aws::Structure
|
3785
3918
|
end
|
3786
3919
|
|
@@ -3800,6 +3933,7 @@ module Aws::Lambda
|
|
3800
3933
|
class ResourceInUseException < Struct.new(
|
3801
3934
|
:type,
|
3802
3935
|
:message)
|
3936
|
+
SENSITIVE = []
|
3803
3937
|
include Aws::Structure
|
3804
3938
|
end
|
3805
3939
|
|
@@ -3816,6 +3950,7 @@ module Aws::Lambda
|
|
3816
3950
|
class ResourceNotFoundException < Struct.new(
|
3817
3951
|
:type,
|
3818
3952
|
:message)
|
3953
|
+
SENSITIVE = []
|
3819
3954
|
include Aws::Structure
|
3820
3955
|
end
|
3821
3956
|
|
@@ -3835,6 +3970,7 @@ module Aws::Lambda
|
|
3835
3970
|
class ResourceNotReadyException < Struct.new(
|
3836
3971
|
:type,
|
3837
3972
|
:message)
|
3973
|
+
SENSITIVE = []
|
3838
3974
|
include Aws::Structure
|
3839
3975
|
end
|
3840
3976
|
|
@@ -3851,6 +3987,7 @@ module Aws::Lambda
|
|
3851
3987
|
class ServiceException < Struct.new(
|
3852
3988
|
:type,
|
3853
3989
|
:message)
|
3990
|
+
SENSITIVE = []
|
3854
3991
|
include Aws::Structure
|
3855
3992
|
end
|
3856
3993
|
|
@@ -3868,6 +4005,7 @@ module Aws::Lambda
|
|
3868
4005
|
class SubnetIPAddressLimitReachedException < Struct.new(
|
3869
4006
|
:type,
|
3870
4007
|
:message)
|
4008
|
+
SENSITIVE = []
|
3871
4009
|
include Aws::Structure
|
3872
4010
|
end
|
3873
4011
|
|
@@ -3894,6 +4032,7 @@ module Aws::Lambda
|
|
3894
4032
|
class TagResourceRequest < Struct.new(
|
3895
4033
|
:resource,
|
3896
4034
|
:tags)
|
4035
|
+
SENSITIVE = []
|
3897
4036
|
include Aws::Structure
|
3898
4037
|
end
|
3899
4038
|
|
@@ -3919,6 +4058,7 @@ module Aws::Lambda
|
|
3919
4058
|
:type,
|
3920
4059
|
:message,
|
3921
4060
|
:reason)
|
4061
|
+
SENSITIVE = []
|
3922
4062
|
include Aws::Structure
|
3923
4063
|
end
|
3924
4064
|
|
@@ -3940,6 +4080,7 @@ module Aws::Lambda
|
|
3940
4080
|
#
|
3941
4081
|
class TracingConfig < Struct.new(
|
3942
4082
|
:mode)
|
4083
|
+
SENSITIVE = []
|
3943
4084
|
include Aws::Structure
|
3944
4085
|
end
|
3945
4086
|
|
@@ -3953,6 +4094,7 @@ module Aws::Lambda
|
|
3953
4094
|
#
|
3954
4095
|
class TracingConfigResponse < Struct.new(
|
3955
4096
|
:mode)
|
4097
|
+
SENSITIVE = []
|
3956
4098
|
include Aws::Structure
|
3957
4099
|
end
|
3958
4100
|
|
@@ -3969,6 +4111,7 @@ module Aws::Lambda
|
|
3969
4111
|
class UnsupportedMediaTypeException < Struct.new(
|
3970
4112
|
:type,
|
3971
4113
|
:message)
|
4114
|
+
SENSITIVE = []
|
3972
4115
|
include Aws::Structure
|
3973
4116
|
end
|
3974
4117
|
|
@@ -3993,6 +4136,7 @@ module Aws::Lambda
|
|
3993
4136
|
class UntagResourceRequest < Struct.new(
|
3994
4137
|
:resource,
|
3995
4138
|
:tag_keys)
|
4139
|
+
SENSITIVE = []
|
3996
4140
|
include Aws::Structure
|
3997
4141
|
end
|
3998
4142
|
|
@@ -4063,6 +4207,7 @@ module Aws::Lambda
|
|
4063
4207
|
:description,
|
4064
4208
|
:routing_config,
|
4065
4209
|
:revision_id)
|
4210
|
+
SENSITIVE = []
|
4066
4211
|
include Aws::Structure
|
4067
4212
|
end
|
4068
4213
|
|
@@ -4113,7 +4258,8 @@ module Aws::Lambda
|
|
4113
4258
|
# @return [String]
|
4114
4259
|
#
|
4115
4260
|
# @!attribute [rw] enabled
|
4116
|
-
#
|
4261
|
+
# If true, the event source mapping is active. Set to false to pause
|
4262
|
+
# polling and invocation.
|
4117
4263
|
# @return [Boolean]
|
4118
4264
|
#
|
4119
4265
|
# @!attribute [rw] batch_size
|
@@ -4124,6 +4270,9 @@ module Aws::Lambda
|
|
4124
4270
|
# * **Amazon DynamoDB Streams** - Default 100. Max 1,000.
|
4125
4271
|
#
|
4126
4272
|
# * **Amazon Simple Queue Service** - Default 10. Max 10.
|
4273
|
+
#
|
4274
|
+
# * **Amazon Managed Streaming for Apache Kafka** - Default 100. Max
|
4275
|
+
# 10,000.
|
4127
4276
|
# @return [Integer]
|
4128
4277
|
#
|
4129
4278
|
# @!attribute [rw] maximum_batching_window_in_seconds
|
@@ -4137,8 +4286,8 @@ module Aws::Lambda
|
|
4137
4286
|
# @return [Types::DestinationConfig]
|
4138
4287
|
#
|
4139
4288
|
# @!attribute [rw] maximum_record_age_in_seconds
|
4140
|
-
# (Streams)
|
4141
|
-
#
|
4289
|
+
# (Streams) Discard records older than the specified age. The default
|
4290
|
+
# value is infinite (-1).
|
4142
4291
|
# @return [Integer]
|
4143
4292
|
#
|
4144
4293
|
# @!attribute [rw] bisect_batch_on_function_error
|
@@ -4147,8 +4296,9 @@ module Aws::Lambda
|
|
4147
4296
|
# @return [Boolean]
|
4148
4297
|
#
|
4149
4298
|
# @!attribute [rw] maximum_retry_attempts
|
4150
|
-
# (Streams)
|
4151
|
-
#
|
4299
|
+
# (Streams) Discard records after the specified number of retries. The
|
4300
|
+
# default value is infinite (-1). When set to infinite (-1), failed
|
4301
|
+
# records will be retried until the record expires.
|
4152
4302
|
# @return [Integer]
|
4153
4303
|
#
|
4154
4304
|
# @!attribute [rw] parallelization_factor
|
@@ -4169,6 +4319,7 @@ module Aws::Lambda
|
|
4169
4319
|
:bisect_batch_on_function_error,
|
4170
4320
|
:maximum_retry_attempts,
|
4171
4321
|
:parallelization_factor)
|
4322
|
+
SENSITIVE = []
|
4172
4323
|
include Aws::Structure
|
4173
4324
|
end
|
4174
4325
|
|
@@ -4249,6 +4400,7 @@ module Aws::Lambda
|
|
4249
4400
|
:publish,
|
4250
4401
|
:dry_run,
|
4251
4402
|
:revision_id)
|
4403
|
+
SENSITIVE = [:zip_file]
|
4252
4404
|
include Aws::Structure
|
4253
4405
|
end
|
4254
4406
|
|
@@ -4271,7 +4423,7 @@ module Aws::Lambda
|
|
4271
4423
|
# "EnvironmentVariableName" => "EnvironmentVariableValue",
|
4272
4424
|
# },
|
4273
4425
|
# },
|
4274
|
-
# runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, java8, java11, python2.7, python3.6, python3.7, python3.8, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided
|
4426
|
+
# runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, nodejs10.x, nodejs12.x, java8, java8.al2, java11, python2.7, python3.6, python3.7, python3.8, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, dotnetcore3.1, nodejs4.3-edge, go1.x, ruby2.5, ruby2.7, provided, provided.al2
|
4275
4427
|
# dead_letter_config: {
|
4276
4428
|
# target_arn: "ResourceArn",
|
4277
4429
|
# },
|
@@ -4418,6 +4570,7 @@ module Aws::Lambda
|
|
4418
4570
|
:revision_id,
|
4419
4571
|
:layers,
|
4420
4572
|
:file_system_configs)
|
4573
|
+
SENSITIVE = []
|
4421
4574
|
include Aws::Structure
|
4422
4575
|
end
|
4423
4576
|
|
@@ -4495,6 +4648,7 @@ module Aws::Lambda
|
|
4495
4648
|
:maximum_retry_attempts,
|
4496
4649
|
:maximum_event_age_in_seconds,
|
4497
4650
|
:destination_config)
|
4651
|
+
SENSITIVE = []
|
4498
4652
|
include Aws::Structure
|
4499
4653
|
end
|
4500
4654
|
|
@@ -4526,6 +4680,7 @@ module Aws::Lambda
|
|
4526
4680
|
class VpcConfig < Struct.new(
|
4527
4681
|
:subnet_ids,
|
4528
4682
|
:security_group_ids)
|
4683
|
+
SENSITIVE = []
|
4529
4684
|
include Aws::Structure
|
4530
4685
|
end
|
4531
4686
|
|
@@ -4550,6 +4705,7 @@ module Aws::Lambda
|
|
4550
4705
|
:subnet_ids,
|
4551
4706
|
:security_group_ids,
|
4552
4707
|
:vpc_id)
|
4708
|
+
SENSITIVE = []
|
4553
4709
|
include Aws::Structure
|
4554
4710
|
end
|
4555
4711
|
|