aws-sdk-lambda 1.176.0 → 1.177.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 97a4bb69069a2e9b6464a3ec9aa9688ac7377d6c3b170c8739c2c44747625f2d
4
- data.tar.gz: 1e0c81f350548ece0ef4227c5959b236cd0a34643ce7a63c581c5ff4d2a3fb47
3
+ metadata.gz: 9abe8a16e22739bd6c564f43e6053f5ae86c9bb668391d3c5ad357b1cccb76b6
4
+ data.tar.gz: bf4fd82b7e571e78645617e606f34e99feac5334c76b3ded0106e1c2e4a24225
5
5
  SHA512:
6
- metadata.gz: d5399374cb8c9fa82796c6999bd7f35d8c0a86411d74d55586ec36024f3143b4611c544a062a8768e9a3cb61a5e1efd5abdaefd657f91e02e46dea7cc15337f4
7
- data.tar.gz: 6efc5b196e4c73a1a31b2d121316867ad23bf8509cb9112b1af29b861848b0799004cbbc93fcaae1da58ef18cf19acf5863d52f377a1cb2890f7f60b953a0059
6
+ metadata.gz: 3096a17763296a11ef35333cfc589db3f46bb29881deda2c6b8dca89951b110a379e7e2b7ce7b3c2ae4205b78b8eba481025d7fe930e3453ba89b9b25262a976
7
+ data.tar.gz: 2db38455497ba45d05baac305959250e3625c9f0fe1f48742a3ca9522127f6273d9ce21621e8baf8e747652e0709da5d0f447bef8ab94984aed46488b2463791
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.177.0 (2026-04-07)
5
+ ------------------
6
+
7
+ * Feature - Launching Lambda integration with S3 Files as a new file system configuration.
8
+
4
9
  1.176.0 (2026-03-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.176.0
1
+ 1.177.0
@@ -1919,7 +1919,8 @@ module Aws::Lambda
1919
1919
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html
1920
1920
  #
1921
1921
  # @option params [Array<Types::FileSystemConfig>] :file_system_configs
1922
- # Connection settings for an Amazon EFS file system.
1922
+ # Connection settings for an Amazon EFS file system or an Amazon S3
1923
+ # Files file system.
1923
1924
  #
1924
1925
  # @option params [Types::ImageConfig] :image_config
1925
1926
  # Container image [configuration values][1] that override the values in
@@ -5549,7 +5550,7 @@ module Aws::Lambda
5549
5550
  # the $LATEST version.
5550
5551
  #
5551
5552
  # @option params [String] :durable_execution_name
5552
- # Filter executions by name. Only executions with names that contain
5553
+ # Filter executions by name. Only executions with names that matches
5553
5554
  # this string are returned.
5554
5555
  #
5555
5556
  # @option params [Array<String>] :statuses
@@ -9226,7 +9227,8 @@ module Aws::Lambda
9226
9227
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html
9227
9228
  #
9228
9229
  # @option params [Array<Types::FileSystemConfig>] :file_system_configs
9229
- # Connection settings for an Amazon EFS file system.
9230
+ # Connection settings for an Amazon EFS file system or an Amazon S3
9231
+ # Files file system.
9230
9232
  #
9231
9233
  # @option params [Types::ImageConfig] :image_config
9232
9234
  # [Container image configuration values][1] that override the values in
@@ -9746,7 +9748,7 @@ module Aws::Lambda
9746
9748
  tracer: tracer
9747
9749
  )
9748
9750
  context[:gem_name] = 'aws-sdk-lambda'
9749
- context[:gem_version] = '1.176.0'
9751
+ context[:gem_version] = '1.177.0'
9750
9752
  Seahorse::Client::Request.new(handlers, context)
9751
9753
  end
9752
9754
 
@@ -461,6 +461,9 @@ module Aws::Lambda
461
461
  RuntimeVersionConfig = Shapes::StructureShape.new(name: 'RuntimeVersionConfig')
462
462
  RuntimeVersionError = Shapes::StructureShape.new(name: 'RuntimeVersionError')
463
463
  S3Bucket = Shapes::StringShape.new(name: 'S3Bucket')
464
+ S3FilesMountConnectivityException = Shapes::StructureShape.new(name: 'S3FilesMountConnectivityException')
465
+ S3FilesMountFailureException = Shapes::StructureShape.new(name: 'S3FilesMountFailureException')
466
+ S3FilesMountTimeoutException = Shapes::StructureShape.new(name: 'S3FilesMountTimeoutException')
464
467
  S3Key = Shapes::StringShape.new(name: 'S3Key')
465
468
  S3ObjectVersion = Shapes::StringShape.new(name: 'S3ObjectVersion')
466
469
  ScalingConfig = Shapes::StructureShape.new(name: 'ScalingConfig')
@@ -1999,6 +2002,18 @@ module Aws::Lambda
1999
2002
  RuntimeVersionError.add_member(:message, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "Message"))
2000
2003
  RuntimeVersionError.struct_class = Types::RuntimeVersionError
2001
2004
 
2005
+ S3FilesMountConnectivityException.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
2006
+ S3FilesMountConnectivityException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
2007
+ S3FilesMountConnectivityException.struct_class = Types::S3FilesMountConnectivityException
2008
+
2009
+ S3FilesMountFailureException.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
2010
+ S3FilesMountFailureException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
2011
+ S3FilesMountFailureException.struct_class = Types::S3FilesMountFailureException
2012
+
2013
+ S3FilesMountTimeoutException.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "Type"))
2014
+ S3FilesMountTimeoutException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
2015
+ S3FilesMountTimeoutException.struct_class = Types::S3FilesMountTimeoutException
2016
+
2002
2017
  ScalingConfig.add_member(:maximum_concurrency, Shapes::ShapeRef.new(shape: MaximumConcurrency, location_name: "MaximumConcurrency"))
2003
2018
  ScalingConfig.struct_class = Types::ScalingConfig
2004
2019
 
@@ -2854,6 +2869,7 @@ module Aws::Lambda
2854
2869
  o.errors << Shapes::ShapeRef.new(shape: RequestTooLargeException)
2855
2870
  o.errors << Shapes::ShapeRef.new(shape: KMSDisabledException)
2856
2871
  o.errors << Shapes::ShapeRef.new(shape: UnsupportedMediaTypeException)
2872
+ o.errors << Shapes::ShapeRef.new(shape: S3FilesMountConnectivityException)
2857
2873
  o.errors << Shapes::ShapeRef.new(shape: SerializedRequestEntityTooLargeException)
2858
2874
  o.errors << Shapes::ShapeRef.new(shape: InvalidRuntimeException)
2859
2875
  o.errors << Shapes::ShapeRef.new(shape: NoPublishedVersionException)
@@ -2870,7 +2886,9 @@ module Aws::Lambda
2870
2886
  o.errors << Shapes::ShapeRef.new(shape: ServiceException)
2871
2887
  o.errors << Shapes::ShapeRef.new(shape: SnapStartException)
2872
2888
  o.errors << Shapes::ShapeRef.new(shape: RecursiveInvocationException)
2889
+ o.errors << Shapes::ShapeRef.new(shape: S3FilesMountFailureException)
2873
2890
  o.errors << Shapes::ShapeRef.new(shape: EFSMountTimeoutException)
2891
+ o.errors << Shapes::ShapeRef.new(shape: S3FilesMountTimeoutException)
2874
2892
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2875
2893
  o.errors << Shapes::ShapeRef.new(shape: InvalidRequestContentException)
2876
2894
  o.errors << Shapes::ShapeRef.new(shape: DurableExecutionAlreadyStartedException)
@@ -2909,6 +2927,7 @@ module Aws::Lambda
2909
2927
  o.errors << Shapes::ShapeRef.new(shape: RequestTooLargeException)
2910
2928
  o.errors << Shapes::ShapeRef.new(shape: KMSDisabledException)
2911
2929
  o.errors << Shapes::ShapeRef.new(shape: UnsupportedMediaTypeException)
2930
+ o.errors << Shapes::ShapeRef.new(shape: S3FilesMountConnectivityException)
2912
2931
  o.errors << Shapes::ShapeRef.new(shape: SerializedRequestEntityTooLargeException)
2913
2932
  o.errors << Shapes::ShapeRef.new(shape: InvalidRuntimeException)
2914
2933
  o.errors << Shapes::ShapeRef.new(shape: NoPublishedVersionException)
@@ -2925,7 +2944,9 @@ module Aws::Lambda
2925
2944
  o.errors << Shapes::ShapeRef.new(shape: ServiceException)
2926
2945
  o.errors << Shapes::ShapeRef.new(shape: SnapStartException)
2927
2946
  o.errors << Shapes::ShapeRef.new(shape: RecursiveInvocationException)
2947
+ o.errors << Shapes::ShapeRef.new(shape: S3FilesMountFailureException)
2928
2948
  o.errors << Shapes::ShapeRef.new(shape: EFSMountTimeoutException)
2949
+ o.errors << Shapes::ShapeRef.new(shape: S3FilesMountTimeoutException)
2929
2950
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2930
2951
  o.errors << Shapes::ShapeRef.new(shape: InvalidRequestContentException)
2931
2952
  o.errors << Shapes::ShapeRef.new(shape: InvalidZipFileException)
@@ -63,6 +63,9 @@ module Aws::Lambda
63
63
  # * {ResourceInUseException}
64
64
  # * {ResourceNotFoundException}
65
65
  # * {ResourceNotReadyException}
66
+ # * {S3FilesMountConnectivityException}
67
+ # * {S3FilesMountFailureException}
68
+ # * {S3FilesMountTimeoutException}
66
69
  # * {SerializedRequestEntityTooLargeException}
67
70
  # * {ServiceException}
68
71
  # * {SnapStartException}
@@ -803,6 +806,66 @@ module Aws::Lambda
803
806
  end
804
807
  end
805
808
 
809
+ class S3FilesMountConnectivityException < ServiceError
810
+
811
+ # @param [Seahorse::Client::RequestContext] context
812
+ # @param [String] message
813
+ # @param [Aws::Lambda::Types::S3FilesMountConnectivityException] data
814
+ def initialize(context, message, data = Aws::EmptyStructure.new)
815
+ super(context, message, data)
816
+ end
817
+
818
+ # @return [String]
819
+ def type
820
+ @data[:type]
821
+ end
822
+
823
+ # @return [String]
824
+ def message
825
+ @message || @data[:message]
826
+ end
827
+ end
828
+
829
+ class S3FilesMountFailureException < ServiceError
830
+
831
+ # @param [Seahorse::Client::RequestContext] context
832
+ # @param [String] message
833
+ # @param [Aws::Lambda::Types::S3FilesMountFailureException] data
834
+ def initialize(context, message, data = Aws::EmptyStructure.new)
835
+ super(context, message, data)
836
+ end
837
+
838
+ # @return [String]
839
+ def type
840
+ @data[:type]
841
+ end
842
+
843
+ # @return [String]
844
+ def message
845
+ @message || @data[:message]
846
+ end
847
+ end
848
+
849
+ class S3FilesMountTimeoutException < ServiceError
850
+
851
+ # @param [Seahorse::Client::RequestContext] context
852
+ # @param [String] message
853
+ # @param [Aws::Lambda::Types::S3FilesMountTimeoutException] data
854
+ def initialize(context, message, data = Aws::EmptyStructure.new)
855
+ super(context, message, data)
856
+ end
857
+
858
+ # @return [String]
859
+ def type
860
+ @data[:type]
861
+ end
862
+
863
+ # @return [String]
864
+ def message
865
+ @message || @data[:message]
866
+ end
867
+ end
868
+
806
869
  class SerializedRequestEntityTooLargeException < ServiceError
807
870
 
808
871
  # @param [Seahorse::Client::RequestContext] context
@@ -1769,7 +1769,8 @@ module Aws::Lambda
1769
1769
  # @return [Array<String>]
1770
1770
  #
1771
1771
  # @!attribute [rw] file_system_configs
1772
- # Connection settings for an Amazon EFS file system.
1772
+ # Connection settings for an Amazon EFS file system or an Amazon S3
1773
+ # Files file system.
1773
1774
  # @return [Array<Types::FileSystemConfig>]
1774
1775
  #
1775
1776
  # @!attribute [rw] image_config
@@ -3408,15 +3409,15 @@ module Aws::Lambda
3408
3409
  end
3409
3410
 
3410
3411
  # Details about the connection between a Lambda function and an [Amazon
3411
- # EFS file system][1].
3412
+ # EFS file system][1] or an [Amazon S3 Files file system][1].
3412
3413
  #
3413
3414
  #
3414
3415
  #
3415
3416
  # [1]: https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html
3416
3417
  #
3417
3418
  # @!attribute [rw] arn
3418
- # The Amazon Resource Name (ARN) of the Amazon EFS access point that
3419
- # provides access to the file system.
3419
+ # The Amazon Resource Name (ARN) of the Amazon EFS or Amazon S3 Files
3420
+ # access point that provides access to the file system.
3420
3421
  # @return [String]
3421
3422
  #
3422
3423
  # @!attribute [rw] local_mount_path
@@ -3757,7 +3758,8 @@ module Aws::Lambda
3757
3758
  # @return [String]
3758
3759
  #
3759
3760
  # @!attribute [rw] file_system_configs
3760
- # Connection settings for an [Amazon EFS file system][1].
3761
+ # Connection settings for an [Amazon EFS file system][1] or an [Amazon
3762
+ # S3 Files file system][1].
3761
3763
  #
3762
3764
  #
3763
3765
  #
@@ -6255,7 +6257,7 @@ module Aws::Lambda
6255
6257
  # @return [String]
6256
6258
  #
6257
6259
  # @!attribute [rw] durable_execution_name
6258
- # Filter executions by name. Only executions with names that contain
6260
+ # Filter executions by name. Only executions with names that matches
6259
6261
  # this string are returned.
6260
6262
  # @return [String]
6261
6263
  #
@@ -8265,6 +8267,66 @@ module Aws::Lambda
8265
8267
  include Aws::Structure
8266
8268
  end
8267
8269
 
8270
+ # The Lambda function couldn't make a network connection to the
8271
+ # configured S3 Files access point.
8272
+ #
8273
+ # @!attribute [rw] type
8274
+ # The exception type.
8275
+ # @return [String]
8276
+ #
8277
+ # @!attribute [rw] message
8278
+ # The exception message.
8279
+ # @return [String]
8280
+ #
8281
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/S3FilesMountConnectivityException AWS API Documentation
8282
+ #
8283
+ class S3FilesMountConnectivityException < Struct.new(
8284
+ :type,
8285
+ :message)
8286
+ SENSITIVE = []
8287
+ include Aws::Structure
8288
+ end
8289
+
8290
+ # The Lambda function couldn't mount the configured S3 Files access
8291
+ # point due to a permission or configuration issue.
8292
+ #
8293
+ # @!attribute [rw] type
8294
+ # The exception type.
8295
+ # @return [String]
8296
+ #
8297
+ # @!attribute [rw] message
8298
+ # The exception message.
8299
+ # @return [String]
8300
+ #
8301
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/S3FilesMountFailureException AWS API Documentation
8302
+ #
8303
+ class S3FilesMountFailureException < Struct.new(
8304
+ :type,
8305
+ :message)
8306
+ SENSITIVE = []
8307
+ include Aws::Structure
8308
+ end
8309
+
8310
+ # The Lambda function made a network connection to the configured S3
8311
+ # Files access point, but the mount operation timed out.
8312
+ #
8313
+ # @!attribute [rw] type
8314
+ # The exception type.
8315
+ # @return [String]
8316
+ #
8317
+ # @!attribute [rw] message
8318
+ # The exception message.
8319
+ # @return [String]
8320
+ #
8321
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/S3FilesMountTimeoutException AWS API Documentation
8322
+ #
8323
+ class S3FilesMountTimeoutException < Struct.new(
8324
+ :type,
8325
+ :message)
8326
+ SENSITIVE = []
8327
+ include Aws::Structure
8328
+ end
8329
+
8268
8330
  # (Amazon SQS only) The scaling configuration for the event source. To
8269
8331
  # remove the configuration, pass an empty value.
8270
8332
  #
@@ -9528,7 +9590,8 @@ module Aws::Lambda
9528
9590
  # @return [Array<String>]
9529
9591
  #
9530
9592
  # @!attribute [rw] file_system_configs
9531
- # Connection settings for an Amazon EFS file system.
9593
+ # Connection settings for an Amazon EFS file system or an Amazon S3
9594
+ # Files file system.
9532
9595
  # @return [Array<Types::FileSystemConfig>]
9533
9596
  #
9534
9597
  # @!attribute [rw] image_config
@@ -56,7 +56,7 @@ module Aws::Lambda
56
56
  autoload :Endpoints, 'aws-sdk-lambda/endpoints'
57
57
  autoload :EventStreams, 'aws-sdk-lambda/event_streams'
58
58
 
59
- GEM_VERSION = '1.176.0'
59
+ GEM_VERSION = '1.177.0'
60
60
 
61
61
  end
62
62
 
data/sig/errors.rbs CHANGED
@@ -156,6 +156,18 @@ module Aws
156
156
  def type: () -> ::String
157
157
  def message: () -> ::String
158
158
  end
159
+ class S3FilesMountConnectivityException < ::Aws::Errors::ServiceError
160
+ def type: () -> ::String
161
+ def message: () -> ::String
162
+ end
163
+ class S3FilesMountFailureException < ::Aws::Errors::ServiceError
164
+ def type: () -> ::String
165
+ def message: () -> ::String
166
+ end
167
+ class S3FilesMountTimeoutException < ::Aws::Errors::ServiceError
168
+ def type: () -> ::String
169
+ def message: () -> ::String
170
+ end
159
171
  class SerializedRequestEntityTooLargeException < ::Aws::Errors::ServiceError
160
172
  def type: () -> ::String
161
173
  def message: () -> ::String
data/sig/types.rbs CHANGED
@@ -1843,6 +1843,24 @@ module Aws::Lambda
1843
1843
  SENSITIVE: [:message]
1844
1844
  end
1845
1845
 
1846
+ class S3FilesMountConnectivityException
1847
+ attr_accessor type: ::String
1848
+ attr_accessor message: ::String
1849
+ SENSITIVE: []
1850
+ end
1851
+
1852
+ class S3FilesMountFailureException
1853
+ attr_accessor type: ::String
1854
+ attr_accessor message: ::String
1855
+ SENSITIVE: []
1856
+ end
1857
+
1858
+ class S3FilesMountTimeoutException
1859
+ attr_accessor type: ::String
1860
+ attr_accessor message: ::String
1861
+ SENSITIVE: []
1862
+ end
1863
+
1846
1864
  class ScalingConfig
1847
1865
  attr_accessor maximum_concurrency: ::Integer
1848
1866
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lambda
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.176.0
4
+ version: 1.177.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services