aws-sdk-lambda 1.40.0 → 1.45.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -44,6 +46,7 @@ module Aws::Lambda
44
46
  :code_size_zipped,
45
47
  :concurrent_executions,
46
48
  :unreserved_concurrent_executions)
49
+ SENSITIVE = []
47
50
  include Aws::Structure
48
51
  end
49
52
 
@@ -63,6 +66,7 @@ module Aws::Lambda
63
66
  class AccountUsage < Struct.new(
64
67
  :total_code_size,
65
68
  :function_count)
69
+ SENSITIVE = []
66
70
  include Aws::Structure
67
71
  end
68
72
 
@@ -122,6 +126,7 @@ module Aws::Lambda
122
126
  :principal,
123
127
  :organization_id,
124
128
  :revision_id)
129
+ SENSITIVE = []
125
130
  include Aws::Structure
126
131
  end
127
132
 
@@ -138,6 +143,7 @@ module Aws::Lambda
138
143
  class AddLayerVersionPermissionResponse < Struct.new(
139
144
  :statement,
140
145
  :revision_id)
146
+ SENSITIVE = []
141
147
  include Aws::Structure
142
148
  end
143
149
 
@@ -230,6 +236,7 @@ module Aws::Lambda
230
236
  :event_source_token,
231
237
  :qualifier,
232
238
  :revision_id)
239
+ SENSITIVE = []
233
240
  include Aws::Structure
234
241
  end
235
242
 
@@ -241,6 +248,7 @@ module Aws::Lambda
241
248
  #
242
249
  class AddPermissionResponse < Struct.new(
243
250
  :statement)
251
+ SENSITIVE = []
244
252
  include Aws::Structure
245
253
  end
246
254
 
@@ -287,6 +295,7 @@ module Aws::Lambda
287
295
  :description,
288
296
  :routing_config,
289
297
  :revision_id)
298
+ SENSITIVE = []
290
299
  include Aws::Structure
291
300
  end
292
301
 
@@ -306,14 +315,15 @@ module Aws::Lambda
306
315
  # }
307
316
  #
308
317
  # @!attribute [rw] additional_version_weights
309
- # The name of the second alias, and the percentage of traffic that's
310
- # routed to it.
318
+ # The second version, and the percentage of traffic that's routed to
319
+ # it.
311
320
  # @return [Hash<String,Float>]
312
321
  #
313
322
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/AliasRoutingConfiguration AWS API Documentation
314
323
  #
315
324
  class AliasRoutingConfiguration < Struct.new(
316
325
  :additional_version_weights)
326
+ SENSITIVE = []
317
327
  include Aws::Structure
318
328
  end
319
329
 
@@ -336,6 +346,7 @@ module Aws::Lambda
336
346
  class CodeStorageExceededException < Struct.new(
337
347
  :type,
338
348
  :message)
349
+ SENSITIVE = []
339
350
  include Aws::Structure
340
351
  end
341
352
 
@@ -352,6 +363,7 @@ module Aws::Lambda
352
363
  #
353
364
  class Concurrency < Struct.new(
354
365
  :reserved_concurrent_executions)
366
+ SENSITIVE = []
355
367
  include Aws::Structure
356
368
  end
357
369
 
@@ -403,7 +415,7 @@ module Aws::Lambda
403
415
  #
404
416
  #
405
417
  #
406
- # [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-traffic-shifting-using-aliases.html
418
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html#configuring-alias-routing
407
419
  # @return [Types::AliasRoutingConfiguration]
408
420
  #
409
421
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateAliasRequest AWS API Documentation
@@ -414,6 +426,7 @@ module Aws::Lambda
414
426
  :function_version,
415
427
  :description,
416
428
  :routing_config)
429
+ SENSITIVE = []
417
430
  include Aws::Structure
418
431
  end
419
432
 
@@ -542,6 +555,7 @@ module Aws::Lambda
542
555
  :maximum_record_age_in_seconds,
543
556
  :bisect_batch_on_function_error,
544
557
  :maximum_retry_attempts)
558
+ SENSITIVE = []
545
559
  include Aws::Structure
546
560
  end
547
561
 
@@ -583,6 +597,12 @@ module Aws::Lambda
583
597
  # "TagKey" => "TagValue",
584
598
  # },
585
599
  # layers: ["LayerVersionArn"],
600
+ # file_system_configs: [
601
+ # {
602
+ # arn: "FileSystemArn", # required
603
+ # local_mount_path: "LocalMountPath", # required
604
+ # },
605
+ # ],
586
606
  # }
587
607
  #
588
608
  # @!attribute [rw] function_name
@@ -703,6 +723,10 @@ module Aws::Lambda
703
723
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html
704
724
  # @return [Array<String>]
705
725
  #
726
+ # @!attribute [rw] file_system_configs
727
+ # Connection settings for an Amazon EFS file system.
728
+ # @return [Array<Types::FileSystemConfig>]
729
+ #
706
730
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/CreateFunctionRequest AWS API Documentation
707
731
  #
708
732
  class CreateFunctionRequest < Struct.new(
@@ -721,7 +745,9 @@ module Aws::Lambda
721
745
  :kms_key_arn,
722
746
  :tracing_config,
723
747
  :tags,
724
- :layers)
748
+ :layers,
749
+ :file_system_configs)
750
+ SENSITIVE = []
725
751
  include Aws::Structure
726
752
  end
727
753
 
@@ -747,6 +773,7 @@ module Aws::Lambda
747
773
  #
748
774
  class DeadLetterConfig < Struct.new(
749
775
  :target_arn)
776
+ SENSITIVE = []
750
777
  include Aws::Structure
751
778
  end
752
779
 
@@ -783,6 +810,7 @@ module Aws::Lambda
783
810
  class DeleteAliasRequest < Struct.new(
784
811
  :function_name,
785
812
  :name)
813
+ SENSITIVE = []
786
814
  include Aws::Structure
787
815
  end
788
816
 
@@ -801,6 +829,7 @@ module Aws::Lambda
801
829
  #
802
830
  class DeleteEventSourceMappingRequest < Struct.new(
803
831
  :uuid)
832
+ SENSITIVE = []
804
833
  include Aws::Structure
805
834
  end
806
835
 
@@ -831,6 +860,7 @@ module Aws::Lambda
831
860
  #
832
861
  class DeleteFunctionConcurrencyRequest < Struct.new(
833
862
  :function_name)
863
+ SENSITIVE = []
834
864
  include Aws::Structure
835
865
  end
836
866
 
@@ -869,6 +899,7 @@ module Aws::Lambda
869
899
  class DeleteFunctionEventInvokeConfigRequest < Struct.new(
870
900
  :function_name,
871
901
  :qualifier)
902
+ SENSITIVE = []
872
903
  include Aws::Structure
873
904
  end
874
905
 
@@ -908,6 +939,7 @@ module Aws::Lambda
908
939
  class DeleteFunctionRequest < Struct.new(
909
940
  :function_name,
910
941
  :qualifier)
942
+ SENSITIVE = []
911
943
  include Aws::Structure
912
944
  end
913
945
 
@@ -932,6 +964,7 @@ module Aws::Lambda
932
964
  class DeleteLayerVersionRequest < Struct.new(
933
965
  :layer_name,
934
966
  :version_number)
967
+ SENSITIVE = []
935
968
  include Aws::Structure
936
969
  end
937
970
 
@@ -968,6 +1001,7 @@ module Aws::Lambda
968
1001
  class DeleteProvisionedConcurrencyConfigRequest < Struct.new(
969
1002
  :function_name,
970
1003
  :qualifier)
1004
+ SENSITIVE = []
971
1005
  include Aws::Structure
972
1006
  end
973
1007
 
@@ -999,6 +1033,7 @@ module Aws::Lambda
999
1033
  class DestinationConfig < Struct.new(
1000
1034
  :on_success,
1001
1035
  :on_failure)
1036
+ SENSITIVE = []
1002
1037
  include Aws::Structure
1003
1038
  end
1004
1039
 
@@ -1015,6 +1050,7 @@ module Aws::Lambda
1015
1050
  class EC2AccessDeniedException < Struct.new(
1016
1051
  :type,
1017
1052
  :message)
1053
+ SENSITIVE = []
1018
1054
  include Aws::Structure
1019
1055
  end
1020
1056
 
@@ -1033,6 +1069,7 @@ module Aws::Lambda
1033
1069
  class EC2ThrottledException < Struct.new(
1034
1070
  :type,
1035
1071
  :message)
1072
+ SENSITIVE = []
1036
1073
  include Aws::Structure
1037
1074
  end
1038
1075
 
@@ -1054,6 +1091,79 @@ module Aws::Lambda
1054
1091
  :type,
1055
1092
  :message,
1056
1093
  :ec2_error_code)
1094
+ SENSITIVE = []
1095
+ include Aws::Structure
1096
+ end
1097
+
1098
+ # An error occured when reading from or writing to a connected file
1099
+ # system.
1100
+ #
1101
+ # @!attribute [rw] type
1102
+ # @return [String]
1103
+ #
1104
+ # @!attribute [rw] message
1105
+ # @return [String]
1106
+ #
1107
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/EFSIOException AWS API Documentation
1108
+ #
1109
+ class EFSIOException < Struct.new(
1110
+ :type,
1111
+ :message)
1112
+ SENSITIVE = []
1113
+ include Aws::Structure
1114
+ end
1115
+
1116
+ # The function couldn't make a network connection to the configured
1117
+ # file system.
1118
+ #
1119
+ # @!attribute [rw] type
1120
+ # @return [String]
1121
+ #
1122
+ # @!attribute [rw] message
1123
+ # @return [String]
1124
+ #
1125
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/EFSMountConnectivityException AWS API Documentation
1126
+ #
1127
+ class EFSMountConnectivityException < Struct.new(
1128
+ :type,
1129
+ :message)
1130
+ SENSITIVE = []
1131
+ include Aws::Structure
1132
+ end
1133
+
1134
+ # The function couldn't mount the configured file system due to a
1135
+ # permission or configuration issue.
1136
+ #
1137
+ # @!attribute [rw] type
1138
+ # @return [String]
1139
+ #
1140
+ # @!attribute [rw] message
1141
+ # @return [String]
1142
+ #
1143
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/EFSMountFailureException AWS API Documentation
1144
+ #
1145
+ class EFSMountFailureException < Struct.new(
1146
+ :type,
1147
+ :message)
1148
+ SENSITIVE = []
1149
+ include Aws::Structure
1150
+ end
1151
+
1152
+ # The function was able to make a network connection to the configured
1153
+ # file system, but the mount operation timed out.
1154
+ #
1155
+ # @!attribute [rw] type
1156
+ # @return [String]
1157
+ #
1158
+ # @!attribute [rw] message
1159
+ # @return [String]
1160
+ #
1161
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/EFSMountTimeoutException AWS API Documentation
1162
+ #
1163
+ class EFSMountTimeoutException < Struct.new(
1164
+ :type,
1165
+ :message)
1166
+ SENSITIVE = []
1057
1167
  include Aws::Structure
1058
1168
  end
1059
1169
 
@@ -1072,6 +1182,7 @@ module Aws::Lambda
1072
1182
  class ENILimitReachedException < Struct.new(
1073
1183
  :type,
1074
1184
  :message)
1185
+ SENSITIVE = []
1075
1186
  include Aws::Structure
1076
1187
  end
1077
1188
 
@@ -1094,6 +1205,7 @@ module Aws::Lambda
1094
1205
  #
1095
1206
  class Environment < Struct.new(
1096
1207
  :variables)
1208
+ SENSITIVE = [:variables]
1097
1209
  include Aws::Structure
1098
1210
  end
1099
1211
 
@@ -1112,6 +1224,7 @@ module Aws::Lambda
1112
1224
  class EnvironmentError < Struct.new(
1113
1225
  :error_code,
1114
1226
  :message)
1227
+ SENSITIVE = [:message]
1115
1228
  include Aws::Structure
1116
1229
  end
1117
1230
 
@@ -1133,6 +1246,7 @@ module Aws::Lambda
1133
1246
  class EnvironmentResponse < Struct.new(
1134
1247
  :variables,
1135
1248
  :error)
1249
+ SENSITIVE = [:variables]
1136
1250
  include Aws::Structure
1137
1251
  end
1138
1252
 
@@ -1223,6 +1337,37 @@ module Aws::Lambda
1223
1337
  :maximum_record_age_in_seconds,
1224
1338
  :bisect_batch_on_function_error,
1225
1339
  :maximum_retry_attempts)
1340
+ SENSITIVE = []
1341
+ include Aws::Structure
1342
+ end
1343
+
1344
+ # Details about the connection between a Lambda function and an Amazon
1345
+ # EFS file system.
1346
+ #
1347
+ # @note When making an API call, you may pass FileSystemConfig
1348
+ # data as a hash:
1349
+ #
1350
+ # {
1351
+ # arn: "FileSystemArn", # required
1352
+ # local_mount_path: "LocalMountPath", # required
1353
+ # }
1354
+ #
1355
+ # @!attribute [rw] arn
1356
+ # The Amazon Resource Name (ARN) of the Amazon EFS access point that
1357
+ # provides access to the file system.
1358
+ # @return [String]
1359
+ #
1360
+ # @!attribute [rw] local_mount_path
1361
+ # The path where the function can access the file system, starting
1362
+ # with `/mnt/`.
1363
+ # @return [String]
1364
+ #
1365
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/FileSystemConfig AWS API Documentation
1366
+ #
1367
+ class FileSystemConfig < Struct.new(
1368
+ :arn,
1369
+ :local_mount_path)
1370
+ SENSITIVE = []
1226
1371
  include Aws::Structure
1227
1372
  end
1228
1373
 
@@ -1265,6 +1410,7 @@ module Aws::Lambda
1265
1410
  :s3_bucket,
1266
1411
  :s3_key,
1267
1412
  :s3_object_version)
1413
+ SENSITIVE = [:zip_file]
1268
1414
  include Aws::Structure
1269
1415
  end
1270
1416
 
@@ -1283,6 +1429,7 @@ module Aws::Lambda
1283
1429
  class FunctionCodeLocation < Struct.new(
1284
1430
  :repository_type,
1285
1431
  :location)
1432
+ SENSITIVE = []
1286
1433
  include Aws::Structure
1287
1434
  end
1288
1435
 
@@ -1408,6 +1555,10 @@ module Aws::Lambda
1408
1555
  # function.
1409
1556
  # @return [String]
1410
1557
  #
1558
+ # @!attribute [rw] file_system_configs
1559
+ # Connection settings for an Amazon EFS file system.
1560
+ # @return [Array<Types::FileSystemConfig>]
1561
+ #
1411
1562
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/FunctionConfiguration AWS API Documentation
1412
1563
  #
1413
1564
  class FunctionConfiguration < Struct.new(
@@ -1436,7 +1587,9 @@ module Aws::Lambda
1436
1587
  :state_reason_code,
1437
1588
  :last_update_status,
1438
1589
  :last_update_status_reason,
1439
- :last_update_status_reason_code)
1590
+ :last_update_status_reason_code,
1591
+ :file_system_configs)
1592
+ SENSITIVE = []
1440
1593
  include Aws::Structure
1441
1594
  end
1442
1595
 
@@ -1482,6 +1635,7 @@ module Aws::Lambda
1482
1635
  :maximum_retry_attempts,
1483
1636
  :maximum_event_age_in_seconds,
1484
1637
  :destination_config)
1638
+ SENSITIVE = []
1485
1639
  include Aws::Structure
1486
1640
  end
1487
1641
 
@@ -1504,6 +1658,7 @@ module Aws::Lambda
1504
1658
  class GetAccountSettingsResponse < Struct.new(
1505
1659
  :account_limit,
1506
1660
  :account_usage)
1661
+ SENSITIVE = []
1507
1662
  include Aws::Structure
1508
1663
  end
1509
1664
 
@@ -1540,6 +1695,7 @@ module Aws::Lambda
1540
1695
  class GetAliasRequest < Struct.new(
1541
1696
  :function_name,
1542
1697
  :name)
1698
+ SENSITIVE = []
1543
1699
  include Aws::Structure
1544
1700
  end
1545
1701
 
@@ -1558,6 +1714,7 @@ module Aws::Lambda
1558
1714
  #
1559
1715
  class GetEventSourceMappingRequest < Struct.new(
1560
1716
  :uuid)
1717
+ SENSITIVE = []
1561
1718
  include Aws::Structure
1562
1719
  end
1563
1720
 
@@ -1588,6 +1745,7 @@ module Aws::Lambda
1588
1745
  #
1589
1746
  class GetFunctionConcurrencyRequest < Struct.new(
1590
1747
  :function_name)
1748
+ SENSITIVE = []
1591
1749
  include Aws::Structure
1592
1750
  end
1593
1751
 
@@ -1600,6 +1758,7 @@ module Aws::Lambda
1600
1758
  #
1601
1759
  class GetFunctionConcurrencyResponse < Struct.new(
1602
1760
  :reserved_concurrent_executions)
1761
+ SENSITIVE = []
1603
1762
  include Aws::Structure
1604
1763
  end
1605
1764
 
@@ -1639,6 +1798,7 @@ module Aws::Lambda
1639
1798
  class GetFunctionConfigurationRequest < Struct.new(
1640
1799
  :function_name,
1641
1800
  :qualifier)
1801
+ SENSITIVE = []
1642
1802
  include Aws::Structure
1643
1803
  end
1644
1804
 
@@ -1677,6 +1837,7 @@ module Aws::Lambda
1677
1837
  class GetFunctionEventInvokeConfigRequest < Struct.new(
1678
1838
  :function_name,
1679
1839
  :qualifier)
1840
+ SENSITIVE = []
1680
1841
  include Aws::Structure
1681
1842
  end
1682
1843
 
@@ -1716,6 +1877,7 @@ module Aws::Lambda
1716
1877
  class GetFunctionRequest < Struct.new(
1717
1878
  :function_name,
1718
1879
  :qualifier)
1880
+ SENSITIVE = []
1719
1881
  include Aws::Structure
1720
1882
  end
1721
1883
 
@@ -1750,6 +1912,7 @@ module Aws::Lambda
1750
1912
  :code,
1751
1913
  :tags,
1752
1914
  :concurrency)
1915
+ SENSITIVE = []
1753
1916
  include Aws::Structure
1754
1917
  end
1755
1918
 
@@ -1768,6 +1931,7 @@ module Aws::Lambda
1768
1931
  #
1769
1932
  class GetLayerVersionByArnRequest < Struct.new(
1770
1933
  :arn)
1934
+ SENSITIVE = []
1771
1935
  include Aws::Structure
1772
1936
  end
1773
1937
 
@@ -1792,6 +1956,7 @@ module Aws::Lambda
1792
1956
  class GetLayerVersionPolicyRequest < Struct.new(
1793
1957
  :layer_name,
1794
1958
  :version_number)
1959
+ SENSITIVE = []
1795
1960
  include Aws::Structure
1796
1961
  end
1797
1962
 
@@ -1808,6 +1973,7 @@ module Aws::Lambda
1808
1973
  class GetLayerVersionPolicyResponse < Struct.new(
1809
1974
  :policy,
1810
1975
  :revision_id)
1976
+ SENSITIVE = []
1811
1977
  include Aws::Structure
1812
1978
  end
1813
1979
 
@@ -1832,6 +1998,7 @@ module Aws::Lambda
1832
1998
  class GetLayerVersionRequest < Struct.new(
1833
1999
  :layer_name,
1834
2000
  :version_number)
2001
+ SENSITIVE = []
1835
2002
  include Aws::Structure
1836
2003
  end
1837
2004
 
@@ -1883,6 +2050,7 @@ module Aws::Lambda
1883
2050
  :version,
1884
2051
  :compatible_runtimes,
1885
2052
  :license_info)
2053
+ SENSITIVE = []
1886
2054
  include Aws::Structure
1887
2055
  end
1888
2056
 
@@ -1921,6 +2089,7 @@ module Aws::Lambda
1921
2089
  class GetPolicyRequest < Struct.new(
1922
2090
  :function_name,
1923
2091
  :qualifier)
2092
+ SENSITIVE = []
1924
2093
  include Aws::Structure
1925
2094
  end
1926
2095
 
@@ -1937,6 +2106,7 @@ module Aws::Lambda
1937
2106
  class GetPolicyResponse < Struct.new(
1938
2107
  :policy,
1939
2108
  :revision_id)
2109
+ SENSITIVE = []
1940
2110
  include Aws::Structure
1941
2111
  end
1942
2112
 
@@ -1973,6 +2143,7 @@ module Aws::Lambda
1973
2143
  class GetProvisionedConcurrencyConfigRequest < Struct.new(
1974
2144
  :function_name,
1975
2145
  :qualifier)
2146
+ SENSITIVE = []
1976
2147
  include Aws::Structure
1977
2148
  end
1978
2149
 
@@ -2015,6 +2186,7 @@ module Aws::Lambda
2015
2186
  :status,
2016
2187
  :status_reason,
2017
2188
  :last_modified)
2189
+ SENSITIVE = []
2018
2190
  include Aws::Structure
2019
2191
  end
2020
2192
 
@@ -2033,6 +2205,7 @@ module Aws::Lambda
2033
2205
  class InvalidParameterValueException < Struct.new(
2034
2206
  :type,
2035
2207
  :message)
2208
+ SENSITIVE = []
2036
2209
  include Aws::Structure
2037
2210
  end
2038
2211
 
@@ -2051,6 +2224,7 @@ module Aws::Lambda
2051
2224
  class InvalidRequestContentException < Struct.new(
2052
2225
  :type,
2053
2226
  :message)
2227
+ SENSITIVE = []
2054
2228
  include Aws::Structure
2055
2229
  end
2056
2230
 
@@ -2067,6 +2241,7 @@ module Aws::Lambda
2067
2241
  class InvalidRuntimeException < Struct.new(
2068
2242
  :type,
2069
2243
  :message)
2244
+ SENSITIVE = []
2070
2245
  include Aws::Structure
2071
2246
  end
2072
2247
 
@@ -2084,6 +2259,7 @@ module Aws::Lambda
2084
2259
  class InvalidSecurityGroupIDException < Struct.new(
2085
2260
  :type,
2086
2261
  :message)
2262
+ SENSITIVE = []
2087
2263
  include Aws::Structure
2088
2264
  end
2089
2265
 
@@ -2101,6 +2277,7 @@ module Aws::Lambda
2101
2277
  class InvalidSubnetIDException < Struct.new(
2102
2278
  :type,
2103
2279
  :message)
2280
+ SENSITIVE = []
2104
2281
  include Aws::Structure
2105
2282
  end
2106
2283
 
@@ -2117,6 +2294,7 @@ module Aws::Lambda
2117
2294
  class InvalidZipFileException < Struct.new(
2118
2295
  :type,
2119
2296
  :message)
2297
+ SENSITIVE = []
2120
2298
  include Aws::Structure
2121
2299
  end
2122
2300
 
@@ -2193,6 +2371,7 @@ module Aws::Lambda
2193
2371
  :client_context,
2194
2372
  :payload,
2195
2373
  :qualifier)
2374
+ SENSITIVE = [:payload]
2196
2375
  include Aws::Structure
2197
2376
  end
2198
2377
 
@@ -2231,6 +2410,7 @@ module Aws::Lambda
2231
2410
  :log_result,
2232
2411
  :payload,
2233
2412
  :executed_version)
2413
+ SENSITIVE = [:payload]
2234
2414
  include Aws::Structure
2235
2415
  end
2236
2416
 
@@ -2267,6 +2447,7 @@ module Aws::Lambda
2267
2447
  class InvokeAsyncRequest < Struct.new(
2268
2448
  :function_name,
2269
2449
  :invoke_args)
2450
+ SENSITIVE = []
2270
2451
  include Aws::Structure
2271
2452
  end
2272
2453
 
@@ -2281,6 +2462,7 @@ module Aws::Lambda
2281
2462
  #
2282
2463
  class InvokeAsyncResponse < Struct.new(
2283
2464
  :status)
2465
+ SENSITIVE = []
2284
2466
  include Aws::Structure
2285
2467
  end
2286
2468
 
@@ -2298,6 +2480,7 @@ module Aws::Lambda
2298
2480
  class KMSAccessDeniedException < Struct.new(
2299
2481
  :type,
2300
2482
  :message)
2483
+ SENSITIVE = []
2301
2484
  include Aws::Structure
2302
2485
  end
2303
2486
 
@@ -2315,6 +2498,7 @@ module Aws::Lambda
2315
2498
  class KMSDisabledException < Struct.new(
2316
2499
  :type,
2317
2500
  :message)
2501
+ SENSITIVE = []
2318
2502
  include Aws::Structure
2319
2503
  end
2320
2504
 
@@ -2333,6 +2517,7 @@ module Aws::Lambda
2333
2517
  class KMSInvalidStateException < Struct.new(
2334
2518
  :type,
2335
2519
  :message)
2520
+ SENSITIVE = []
2336
2521
  include Aws::Structure
2337
2522
  end
2338
2523
 
@@ -2350,6 +2535,7 @@ module Aws::Lambda
2350
2535
  class KMSNotFoundException < Struct.new(
2351
2536
  :type,
2352
2537
  :message)
2538
+ SENSITIVE = []
2353
2539
  include Aws::Structure
2354
2540
  end
2355
2541
 
@@ -2372,6 +2558,7 @@ module Aws::Lambda
2372
2558
  class Layer < Struct.new(
2373
2559
  :arn,
2374
2560
  :code_size)
2561
+ SENSITIVE = []
2375
2562
  include Aws::Structure
2376
2563
  end
2377
2564
 
@@ -2418,6 +2605,7 @@ module Aws::Lambda
2418
2605
  :s3_key,
2419
2606
  :s3_object_version,
2420
2607
  :zip_file)
2608
+ SENSITIVE = [:zip_file]
2421
2609
  include Aws::Structure
2422
2610
  end
2423
2611
 
@@ -2446,6 +2634,7 @@ module Aws::Lambda
2446
2634
  :location,
2447
2635
  :code_sha_256,
2448
2636
  :code_size)
2637
+ SENSITIVE = []
2449
2638
  include Aws::Structure
2450
2639
  end
2451
2640
 
@@ -2489,6 +2678,7 @@ module Aws::Lambda
2489
2678
  :created_date,
2490
2679
  :compatible_runtimes,
2491
2680
  :license_info)
2681
+ SENSITIVE = []
2492
2682
  include Aws::Structure
2493
2683
  end
2494
2684
 
@@ -2516,6 +2706,7 @@ module Aws::Lambda
2516
2706
  :layer_name,
2517
2707
  :layer_arn,
2518
2708
  :latest_matching_version)
2709
+ SENSITIVE = []
2519
2710
  include Aws::Structure
2520
2711
  end
2521
2712
 
@@ -2566,6 +2757,7 @@ module Aws::Lambda
2566
2757
  :function_version,
2567
2758
  :marker,
2568
2759
  :max_items)
2760
+ SENSITIVE = []
2569
2761
  include Aws::Structure
2570
2762
  end
2571
2763
 
@@ -2582,6 +2774,7 @@ module Aws::Lambda
2582
2774
  class ListAliasesResponse < Struct.new(
2583
2775
  :next_marker,
2584
2776
  :aliases)
2777
+ SENSITIVE = []
2585
2778
  include Aws::Structure
2586
2779
  end
2587
2780
 
@@ -2640,6 +2833,7 @@ module Aws::Lambda
2640
2833
  :function_name,
2641
2834
  :marker,
2642
2835
  :max_items)
2836
+ SENSITIVE = []
2643
2837
  include Aws::Structure
2644
2838
  end
2645
2839
 
@@ -2657,6 +2851,7 @@ module Aws::Lambda
2657
2851
  class ListEventSourceMappingsResponse < Struct.new(
2658
2852
  :next_marker,
2659
2853
  :event_source_mappings)
2854
+ SENSITIVE = []
2660
2855
  include Aws::Structure
2661
2856
  end
2662
2857
 
@@ -2700,6 +2895,7 @@ module Aws::Lambda
2700
2895
  :function_name,
2701
2896
  :marker,
2702
2897
  :max_items)
2898
+ SENSITIVE = []
2703
2899
  include Aws::Structure
2704
2900
  end
2705
2901
 
@@ -2716,6 +2912,7 @@ module Aws::Lambda
2716
2912
  class ListFunctionEventInvokeConfigsResponse < Struct.new(
2717
2913
  :function_event_invoke_configs,
2718
2914
  :next_marker)
2915
+ SENSITIVE = []
2719
2916
  include Aws::Structure
2720
2917
  end
2721
2918
 
@@ -2758,6 +2955,7 @@ module Aws::Lambda
2758
2955
  :function_version,
2759
2956
  :marker,
2760
2957
  :max_items)
2958
+ SENSITIVE = []
2761
2959
  include Aws::Structure
2762
2960
  end
2763
2961
 
@@ -2776,6 +2974,7 @@ module Aws::Lambda
2776
2974
  class ListFunctionsResponse < Struct.new(
2777
2975
  :next_marker,
2778
2976
  :functions)
2977
+ SENSITIVE = []
2779
2978
  include Aws::Structure
2780
2979
  end
2781
2980
 
@@ -2812,6 +3011,7 @@ module Aws::Lambda
2812
3011
  :layer_name,
2813
3012
  :marker,
2814
3013
  :max_items)
3014
+ SENSITIVE = []
2815
3015
  include Aws::Structure
2816
3016
  end
2817
3017
 
@@ -2829,6 +3029,7 @@ module Aws::Lambda
2829
3029
  class ListLayerVersionsResponse < Struct.new(
2830
3030
  :next_marker,
2831
3031
  :layer_versions)
3032
+ SENSITIVE = []
2832
3033
  include Aws::Structure
2833
3034
  end
2834
3035
 
@@ -2859,6 +3060,7 @@ module Aws::Lambda
2859
3060
  :compatible_runtime,
2860
3061
  :marker,
2861
3062
  :max_items)
3063
+ SENSITIVE = []
2862
3064
  include Aws::Structure
2863
3065
  end
2864
3066
 
@@ -2876,6 +3078,7 @@ module Aws::Lambda
2876
3078
  class ListLayersResponse < Struct.new(
2877
3079
  :next_marker,
2878
3080
  :layers)
3081
+ SENSITIVE = []
2879
3082
  include Aws::Structure
2880
3083
  end
2881
3084
 
@@ -2919,6 +3122,7 @@ module Aws::Lambda
2919
3122
  :function_name,
2920
3123
  :marker,
2921
3124
  :max_items)
3125
+ SENSITIVE = []
2922
3126
  include Aws::Structure
2923
3127
  end
2924
3128
 
@@ -2935,6 +3139,7 @@ module Aws::Lambda
2935
3139
  class ListProvisionedConcurrencyConfigsResponse < Struct.new(
2936
3140
  :provisioned_concurrency_configs,
2937
3141
  :next_marker)
3142
+ SENSITIVE = []
2938
3143
  include Aws::Structure
2939
3144
  end
2940
3145
 
@@ -2953,6 +3158,7 @@ module Aws::Lambda
2953
3158
  #
2954
3159
  class ListTagsRequest < Struct.new(
2955
3160
  :resource)
3161
+ SENSITIVE = []
2956
3162
  include Aws::Structure
2957
3163
  end
2958
3164
 
@@ -2964,6 +3170,7 @@ module Aws::Lambda
2964
3170
  #
2965
3171
  class ListTagsResponse < Struct.new(
2966
3172
  :tags)
3173
+ SENSITIVE = []
2967
3174
  include Aws::Structure
2968
3175
  end
2969
3176
 
@@ -3007,6 +3214,7 @@ module Aws::Lambda
3007
3214
  :function_name,
3008
3215
  :marker,
3009
3216
  :max_items)
3217
+ SENSITIVE = []
3010
3218
  include Aws::Structure
3011
3219
  end
3012
3220
 
@@ -3023,6 +3231,7 @@ module Aws::Lambda
3023
3231
  class ListVersionsByFunctionResponse < Struct.new(
3024
3232
  :next_marker,
3025
3233
  :versions)
3234
+ SENSITIVE = []
3026
3235
  include Aws::Structure
3027
3236
  end
3028
3237
 
@@ -3043,6 +3252,7 @@ module Aws::Lambda
3043
3252
  #
3044
3253
  class OnFailure < Struct.new(
3045
3254
  :destination)
3255
+ SENSITIVE = []
3046
3256
  include Aws::Structure
3047
3257
  end
3048
3258
 
@@ -3063,6 +3273,7 @@ module Aws::Lambda
3063
3273
  #
3064
3274
  class OnSuccess < Struct.new(
3065
3275
  :destination)
3276
+ SENSITIVE = []
3066
3277
  include Aws::Structure
3067
3278
  end
3068
3279
 
@@ -3083,6 +3294,7 @@ module Aws::Lambda
3083
3294
  class PolicyLengthExceededException < Struct.new(
3084
3295
  :type,
3085
3296
  :message)
3297
+ SENSITIVE = []
3086
3298
  include Aws::Structure
3087
3299
  end
3088
3300
 
@@ -3103,6 +3315,7 @@ module Aws::Lambda
3103
3315
  class PreconditionFailedException < Struct.new(
3104
3316
  :type,
3105
3317
  :message)
3318
+ SENSITIVE = []
3106
3319
  include Aws::Structure
3107
3320
  end
3108
3321
 
@@ -3153,6 +3366,7 @@ module Aws::Lambda
3153
3366
  :status,
3154
3367
  :status_reason,
3155
3368
  :last_modified)
3369
+ SENSITIVE = []
3156
3370
  include Aws::Structure
3157
3371
  end
3158
3372
 
@@ -3169,6 +3383,7 @@ module Aws::Lambda
3169
3383
  class ProvisionedConcurrencyConfigNotFoundException < Struct.new(
3170
3384
  :type,
3171
3385
  :message)
3386
+ SENSITIVE = []
3172
3387
  include Aws::Structure
3173
3388
  end
3174
3389
 
@@ -3232,6 +3447,7 @@ module Aws::Lambda
3232
3447
  :content,
3233
3448
  :compatible_runtimes,
3234
3449
  :license_info)
3450
+ SENSITIVE = []
3235
3451
  include Aws::Structure
3236
3452
  end
3237
3453
 
@@ -3283,6 +3499,7 @@ module Aws::Lambda
3283
3499
  :version,
3284
3500
  :compatible_runtimes,
3285
3501
  :license_info)
3502
+ SENSITIVE = []
3286
3503
  include Aws::Structure
3287
3504
  end
3288
3505
 
@@ -3338,6 +3555,7 @@ module Aws::Lambda
3338
3555
  :code_sha_256,
3339
3556
  :description,
3340
3557
  :revision_id)
3558
+ SENSITIVE = []
3341
3559
  include Aws::Structure
3342
3560
  end
3343
3561
 
@@ -3374,6 +3592,7 @@ module Aws::Lambda
3374
3592
  class PutFunctionConcurrencyRequest < Struct.new(
3375
3593
  :function_name,
3376
3594
  :reserved_concurrent_executions)
3595
+ SENSITIVE = []
3377
3596
  include Aws::Structure
3378
3597
  end
3379
3598
 
@@ -3451,6 +3670,7 @@ module Aws::Lambda
3451
3670
  :maximum_retry_attempts,
3452
3671
  :maximum_event_age_in_seconds,
3453
3672
  :destination_config)
3673
+ SENSITIVE = []
3454
3674
  include Aws::Structure
3455
3675
  end
3456
3676
 
@@ -3494,6 +3714,7 @@ module Aws::Lambda
3494
3714
  :function_name,
3495
3715
  :qualifier,
3496
3716
  :provisioned_concurrent_executions)
3717
+ SENSITIVE = []
3497
3718
  include Aws::Structure
3498
3719
  end
3499
3720
 
@@ -3536,6 +3757,7 @@ module Aws::Lambda
3536
3757
  :status,
3537
3758
  :status_reason,
3538
3759
  :last_modified)
3760
+ SENSITIVE = []
3539
3761
  include Aws::Structure
3540
3762
  end
3541
3763
 
@@ -3574,6 +3796,7 @@ module Aws::Lambda
3574
3796
  :version_number,
3575
3797
  :statement_id,
3576
3798
  :revision_id)
3799
+ SENSITIVE = []
3577
3800
  include Aws::Structure
3578
3801
  end
3579
3802
 
@@ -3627,6 +3850,7 @@ module Aws::Lambda
3627
3850
  :statement_id,
3628
3851
  :qualifier,
3629
3852
  :revision_id)
3853
+ SENSITIVE = []
3630
3854
  include Aws::Structure
3631
3855
  end
3632
3856
 
@@ -3648,6 +3872,7 @@ module Aws::Lambda
3648
3872
  class RequestTooLargeException < Struct.new(
3649
3873
  :type,
3650
3874
  :message)
3875
+ SENSITIVE = []
3651
3876
  include Aws::Structure
3652
3877
  end
3653
3878
 
@@ -3666,6 +3891,7 @@ module Aws::Lambda
3666
3891
  class ResourceConflictException < Struct.new(
3667
3892
  :type,
3668
3893
  :message)
3894
+ SENSITIVE = []
3669
3895
  include Aws::Structure
3670
3896
  end
3671
3897
 
@@ -3685,6 +3911,7 @@ module Aws::Lambda
3685
3911
  class ResourceInUseException < Struct.new(
3686
3912
  :type,
3687
3913
  :message)
3914
+ SENSITIVE = []
3688
3915
  include Aws::Structure
3689
3916
  end
3690
3917
 
@@ -3701,6 +3928,7 @@ module Aws::Lambda
3701
3928
  class ResourceNotFoundException < Struct.new(
3702
3929
  :type,
3703
3930
  :message)
3931
+ SENSITIVE = []
3704
3932
  include Aws::Structure
3705
3933
  end
3706
3934
 
@@ -3720,6 +3948,7 @@ module Aws::Lambda
3720
3948
  class ResourceNotReadyException < Struct.new(
3721
3949
  :type,
3722
3950
  :message)
3951
+ SENSITIVE = []
3723
3952
  include Aws::Structure
3724
3953
  end
3725
3954
 
@@ -3736,6 +3965,7 @@ module Aws::Lambda
3736
3965
  class ServiceException < Struct.new(
3737
3966
  :type,
3738
3967
  :message)
3968
+ SENSITIVE = []
3739
3969
  include Aws::Structure
3740
3970
  end
3741
3971
 
@@ -3753,6 +3983,7 @@ module Aws::Lambda
3753
3983
  class SubnetIPAddressLimitReachedException < Struct.new(
3754
3984
  :type,
3755
3985
  :message)
3986
+ SENSITIVE = []
3756
3987
  include Aws::Structure
3757
3988
  end
3758
3989
 
@@ -3779,6 +4010,7 @@ module Aws::Lambda
3779
4010
  class TagResourceRequest < Struct.new(
3780
4011
  :resource,
3781
4012
  :tags)
4013
+ SENSITIVE = []
3782
4014
  include Aws::Structure
3783
4015
  end
3784
4016
 
@@ -3804,6 +4036,7 @@ module Aws::Lambda
3804
4036
  :type,
3805
4037
  :message,
3806
4038
  :reason)
4039
+ SENSITIVE = []
3807
4040
  include Aws::Structure
3808
4041
  end
3809
4042
 
@@ -3825,6 +4058,7 @@ module Aws::Lambda
3825
4058
  #
3826
4059
  class TracingConfig < Struct.new(
3827
4060
  :mode)
4061
+ SENSITIVE = []
3828
4062
  include Aws::Structure
3829
4063
  end
3830
4064
 
@@ -3838,6 +4072,7 @@ module Aws::Lambda
3838
4072
  #
3839
4073
  class TracingConfigResponse < Struct.new(
3840
4074
  :mode)
4075
+ SENSITIVE = []
3841
4076
  include Aws::Structure
3842
4077
  end
3843
4078
 
@@ -3854,6 +4089,7 @@ module Aws::Lambda
3854
4089
  class UnsupportedMediaTypeException < Struct.new(
3855
4090
  :type,
3856
4091
  :message)
4092
+ SENSITIVE = []
3857
4093
  include Aws::Structure
3858
4094
  end
3859
4095
 
@@ -3878,6 +4114,7 @@ module Aws::Lambda
3878
4114
  class UntagResourceRequest < Struct.new(
3879
4115
  :resource,
3880
4116
  :tag_keys)
4117
+ SENSITIVE = []
3881
4118
  include Aws::Structure
3882
4119
  end
3883
4120
 
@@ -3930,7 +4167,7 @@ module Aws::Lambda
3930
4167
  #
3931
4168
  #
3932
4169
  #
3933
- # [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-traffic-shifting-using-aliases.html
4170
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html#configuring-alias-routing
3934
4171
  # @return [Types::AliasRoutingConfiguration]
3935
4172
  #
3936
4173
  # @!attribute [rw] revision_id
@@ -3948,6 +4185,7 @@ module Aws::Lambda
3948
4185
  :description,
3949
4186
  :routing_config,
3950
4187
  :revision_id)
4188
+ SENSITIVE = []
3951
4189
  include Aws::Structure
3952
4190
  end
3953
4191
 
@@ -4054,6 +4292,7 @@ module Aws::Lambda
4054
4292
  :bisect_batch_on_function_error,
4055
4293
  :maximum_retry_attempts,
4056
4294
  :parallelization_factor)
4295
+ SENSITIVE = []
4057
4296
  include Aws::Structure
4058
4297
  end
4059
4298
 
@@ -4134,6 +4373,7 @@ module Aws::Lambda
4134
4373
  :publish,
4135
4374
  :dry_run,
4136
4375
  :revision_id)
4376
+ SENSITIVE = [:zip_file]
4137
4377
  include Aws::Structure
4138
4378
  end
4139
4379
 
@@ -4166,6 +4406,12 @@ module Aws::Lambda
4166
4406
  # },
4167
4407
  # revision_id: "String",
4168
4408
  # layers: ["LayerVersionArn"],
4409
+ # file_system_configs: [
4410
+ # {
4411
+ # arn: "FileSystemArn", # required
4412
+ # local_mount_path: "LocalMountPath", # required
4413
+ # },
4414
+ # ],
4169
4415
  # }
4170
4416
  #
4171
4417
  # @!attribute [rw] function_name
@@ -4275,6 +4521,10 @@ module Aws::Lambda
4275
4521
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html
4276
4522
  # @return [Array<String>]
4277
4523
  #
4524
+ # @!attribute [rw] file_system_configs
4525
+ # Connection settings for an Amazon EFS file system.
4526
+ # @return [Array<Types::FileSystemConfig>]
4527
+ #
4278
4528
  # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/UpdateFunctionConfigurationRequest AWS API Documentation
4279
4529
  #
4280
4530
  class UpdateFunctionConfigurationRequest < Struct.new(
@@ -4291,7 +4541,9 @@ module Aws::Lambda
4291
4541
  :kms_key_arn,
4292
4542
  :tracing_config,
4293
4543
  :revision_id,
4294
- :layers)
4544
+ :layers,
4545
+ :file_system_configs)
4546
+ SENSITIVE = []
4295
4547
  include Aws::Structure
4296
4548
  end
4297
4549
 
@@ -4369,6 +4621,7 @@ module Aws::Lambda
4369
4621
  :maximum_retry_attempts,
4370
4622
  :maximum_event_age_in_seconds,
4371
4623
  :destination_config)
4624
+ SENSITIVE = []
4372
4625
  include Aws::Structure
4373
4626
  end
4374
4627
 
@@ -4400,6 +4653,7 @@ module Aws::Lambda
4400
4653
  class VpcConfig < Struct.new(
4401
4654
  :subnet_ids,
4402
4655
  :security_group_ids)
4656
+ SENSITIVE = []
4403
4657
  include Aws::Structure
4404
4658
  end
4405
4659
 
@@ -4424,6 +4678,7 @@ module Aws::Lambda
4424
4678
  :subnet_ids,
4425
4679
  :security_group_ids,
4426
4680
  :vpc_id)
4681
+ SENSITIVE = []
4427
4682
  include Aws::Structure
4428
4683
  end
4429
4684