aws-sdk-s3 1.141.0 → 1.143.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 97b834e6a7adc3add7feb47f75c8878ce8bee161492673508f99067085def067
4
- data.tar.gz: '016844699e5d3f9793ec4a1a76bb1165a02f85c22f8f5854fb7005e5d5988624'
3
+ metadata.gz: 2be86d662a76114802ed36113558cb7e2df85c21e6b94e0c7e47b9a69f92ca60
4
+ data.tar.gz: 3218088810b2459826d8a0ac475be22c7daeee303e195c8f22bc3569f6a42ab7
5
5
  SHA512:
6
- metadata.gz: aeff9d1fdba113f783633ae45353855ec7183c073ab10805c9952560410abe526362ec89f6c3d7b15c7e073fa788e088fdd243f32aa446992b74de444c8565dd
7
- data.tar.gz: de5d56d436ab21e00676747c360763b1a55a4619dee4ca37100ae3f991af768a275a3bbcc59aabab23f705e8bc5271bc8dd37810386e086053bdc2ac9c8669ae
6
+ metadata.gz: 02efd7ab304a9b6214ed80d59ff3ed833a3dedb28a6d444bbca6cad8cf46eebd6590290dffc8d0502014cbb31a9209e35cdf8c2e9d90c81b8398d97725f4028f
7
+ data.tar.gz: 1af4e138d4866f2ab8e346039c7cf8b0dd141164c72f25b97ba80572bd614ee0881eecba3c8cd5cc58b274ac8318f18fdbbe1a06428b2f9abc5c59e8dbd7e495
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.143.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.142.0 (2023-12-22)
10
+ ------------------
11
+
12
+ * Feature - Added additional examples for some operations.
13
+
4
14
  1.141.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.141.0
1
+ 1.143.0
@@ -2277,33 +2277,33 @@ module Aws::S3
2277
2277
  # * {Types::CreateBucketOutput#location #location} => String
2278
2278
  #
2279
2279
  #
2280
- # @example Example: To create a bucket in a specific region
2280
+ # @example Example: To create a bucket
2281
2281
  #
2282
- # # The following example creates a bucket. The request specifies an AWS region where to create the bucket.
2282
+ # # The following example creates a bucket.
2283
2283
  #
2284
2284
  # resp = client.create_bucket({
2285
2285
  # bucket: "examplebucket",
2286
- # create_bucket_configuration: {
2287
- # location_constraint: "eu-west-1",
2288
- # },
2289
2286
  # })
2290
2287
  #
2291
2288
  # resp.to_h outputs the following:
2292
2289
  # {
2293
- # location: "http://examplebucket.<Region>.s3.amazonaws.com/",
2290
+ # location: "/examplebucket",
2294
2291
  # }
2295
2292
  #
2296
- # @example Example: To create a bucket
2293
+ # @example Example: To create a bucket in a specific region
2297
2294
  #
2298
- # # The following example creates a bucket.
2295
+ # # The following example creates a bucket. The request specifies an AWS region where to create the bucket.
2299
2296
  #
2300
2297
  # resp = client.create_bucket({
2301
2298
  # bucket: "examplebucket",
2299
+ # create_bucket_configuration: {
2300
+ # location_constraint: "eu-west-1",
2301
+ # },
2302
2302
  # })
2303
2303
  #
2304
2304
  # resp.to_h outputs the following:
2305
2305
  # {
2306
- # location: "/examplebucket",
2306
+ # location: "http://examplebucket.<Region>.s3.amazonaws.com/",
2307
2307
  # }
2308
2308
  #
2309
2309
  # @example Request syntax with placeholder values
@@ -4423,6 +4423,15 @@ module Aws::S3
4423
4423
  # * {Types::DeleteObjectOutput#request_charged #request_charged} => String
4424
4424
  #
4425
4425
  #
4426
+ # @example Example: To delete an object (from a non-versioned bucket)
4427
+ #
4428
+ # # The following example deletes an object from a non-versioned bucket.
4429
+ #
4430
+ # resp = client.delete_object({
4431
+ # bucket: "ExampleBucket",
4432
+ # key: "HappyFace.jpg",
4433
+ # })
4434
+ #
4426
4435
  # @example Example: To delete an object
4427
4436
  #
4428
4437
  # # The following example deletes an object from an S3 bucket.
@@ -4436,15 +4445,6 @@ module Aws::S3
4436
4445
  # {
4437
4446
  # }
4438
4447
  #
4439
- # @example Example: To delete an object (from a non-versioned bucket)
4440
- #
4441
- # # The following example deletes an object from a non-versioned bucket.
4442
- #
4443
- # resp = client.delete_object({
4444
- # bucket: "ExampleBucket",
4445
- # key: "HappyFace.jpg",
4446
- # })
4447
- #
4448
4448
  # @example Request syntax with placeholder values
4449
4449
  #
4450
4450
  # resp = client.delete_object({
@@ -7626,49 +7626,49 @@ module Aws::S3
7626
7626
  # * {Types::GetObjectOutput#object_lock_legal_hold_status #object_lock_legal_hold_status} => String
7627
7627
  #
7628
7628
  #
7629
- # @example Example: To retrieve an object
7629
+ # @example Example: To retrieve a byte range of an object
7630
7630
  #
7631
- # # The following example retrieves an object for an S3 bucket.
7631
+ # # The following example retrieves an object for an S3 bucket. The request specifies the range header to retrieve a
7632
+ # # specific byte range.
7632
7633
  #
7633
7634
  # resp = client.get_object({
7634
7635
  # bucket: "examplebucket",
7635
- # key: "HappyFace.jpg",
7636
+ # key: "SampleFile.txt",
7637
+ # range: "bytes=0-9",
7636
7638
  # })
7637
7639
  #
7638
7640
  # resp.to_h outputs the following:
7639
7641
  # {
7640
7642
  # accept_ranges: "bytes",
7641
- # content_length: 3191,
7642
- # content_type: "image/jpeg",
7643
- # etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
7644
- # last_modified: Time.parse("Thu, 15 Dec 2016 01:19:41 GMT"),
7643
+ # content_length: 10,
7644
+ # content_range: "bytes 0-9/43",
7645
+ # content_type: "text/plain",
7646
+ # etag: "\"0d94420ffd0bc68cd3d152506b97a9cc\"",
7647
+ # last_modified: Time.parse("Thu, 09 Oct 2014 22:57:28 GMT"),
7645
7648
  # metadata: {
7646
7649
  # },
7647
- # tag_count: 2,
7648
7650
  # version_id: "null",
7649
7651
  # }
7650
7652
  #
7651
- # @example Example: To retrieve a byte range of an object
7653
+ # @example Example: To retrieve an object
7652
7654
  #
7653
- # # The following example retrieves an object for an S3 bucket. The request specifies the range header to retrieve a
7654
- # # specific byte range.
7655
+ # # The following example retrieves an object for an S3 bucket.
7655
7656
  #
7656
7657
  # resp = client.get_object({
7657
7658
  # bucket: "examplebucket",
7658
- # key: "SampleFile.txt",
7659
- # range: "bytes=0-9",
7659
+ # key: "HappyFace.jpg",
7660
7660
  # })
7661
7661
  #
7662
7662
  # resp.to_h outputs the following:
7663
7663
  # {
7664
7664
  # accept_ranges: "bytes",
7665
- # content_length: 10,
7666
- # content_range: "bytes 0-9/43",
7667
- # content_type: "text/plain",
7668
- # etag: "\"0d94420ffd0bc68cd3d152506b97a9cc\"",
7669
- # last_modified: Time.parse("Thu, 09 Oct 2014 22:57:28 GMT"),
7665
+ # content_length: 3191,
7666
+ # content_type: "image/jpeg",
7667
+ # etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
7668
+ # last_modified: Time.parse("Thu, 15 Dec 2016 01:19:41 GMT"),
7670
7669
  # metadata: {
7671
7670
  # },
7671
+ # tag_count: 2,
7672
7672
  # version_id: "null",
7673
7673
  # }
7674
7674
  #
@@ -10381,97 +10381,97 @@ module Aws::S3
10381
10381
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
10382
10382
  #
10383
10383
  #
10384
- # @example Example: List next set of multipart uploads when previous result is truncated
10384
+ # @example Example: To list in-progress multipart uploads on a bucket
10385
10385
  #
10386
- # # The following example specifies the upload-id-marker and key-marker from previous truncated response to retrieve next
10387
- # # setup of multipart uploads.
10386
+ # # The following example lists in-progress multipart uploads on a specific bucket.
10388
10387
  #
10389
10388
  # resp = client.list_multipart_uploads({
10390
10389
  # bucket: "examplebucket",
10391
- # key_marker: "nextkeyfrompreviousresponse",
10392
- # max_uploads: 2,
10393
- # upload_id_marker: "valuefrompreviousresponse",
10394
10390
  # })
10395
10391
  #
10396
10392
  # resp.to_h outputs the following:
10397
10393
  # {
10398
- # bucket: "acl1",
10399
- # is_truncated: true,
10400
- # key_marker: "",
10401
- # max_uploads: 2,
10402
- # next_key_marker: "someobjectkey",
10403
- # next_upload_id_marker: "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--",
10404
- # upload_id_marker: "",
10405
10394
  # uploads: [
10406
10395
  # {
10407
10396
  # initiated: Time.parse("2014-05-01T05:40:58.000Z"),
10408
10397
  # initiator: {
10409
- # display_name: "ownder-display-name",
10398
+ # display_name: "display-name",
10410
10399
  # id: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
10411
10400
  # },
10412
10401
  # key: "JavaFile",
10413
10402
  # owner: {
10414
- # display_name: "mohanataws",
10415
- # id: "852b113e7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
10403
+ # display_name: "display-name",
10404
+ # id: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
10416
10405
  # },
10417
10406
  # storage_class: "STANDARD",
10418
- # upload_id: "gZ30jIqlUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--",
10407
+ # upload_id: "examplelUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--",
10419
10408
  # },
10420
10409
  # {
10421
10410
  # initiated: Time.parse("2014-05-01T05:41:27.000Z"),
10422
10411
  # initiator: {
10423
- # display_name: "ownder-display-name",
10412
+ # display_name: "display-name",
10424
10413
  # id: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
10425
10414
  # },
10426
10415
  # key: "JavaFile",
10427
10416
  # owner: {
10428
- # display_name: "ownder-display-name",
10417
+ # display_name: "display-name",
10429
10418
  # id: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
10430
10419
  # },
10431
10420
  # storage_class: "STANDARD",
10432
- # upload_id: "b7tZSqIlo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--",
10421
+ # upload_id: "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--",
10433
10422
  # },
10434
10423
  # ],
10435
10424
  # }
10436
10425
  #
10437
- # @example Example: To list in-progress multipart uploads on a bucket
10426
+ # @example Example: List next set of multipart uploads when previous result is truncated
10438
10427
  #
10439
- # # The following example lists in-progress multipart uploads on a specific bucket.
10428
+ # # The following example specifies the upload-id-marker and key-marker from previous truncated response to retrieve next
10429
+ # # setup of multipart uploads.
10440
10430
  #
10441
10431
  # resp = client.list_multipart_uploads({
10442
10432
  # bucket: "examplebucket",
10433
+ # key_marker: "nextkeyfrompreviousresponse",
10434
+ # max_uploads: 2,
10435
+ # upload_id_marker: "valuefrompreviousresponse",
10443
10436
  # })
10444
10437
  #
10445
10438
  # resp.to_h outputs the following:
10446
10439
  # {
10440
+ # bucket: "acl1",
10441
+ # is_truncated: true,
10442
+ # key_marker: "",
10443
+ # max_uploads: 2,
10444
+ # next_key_marker: "someobjectkey",
10445
+ # next_upload_id_marker: "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--",
10446
+ # upload_id_marker: "",
10447
10447
  # uploads: [
10448
10448
  # {
10449
10449
  # initiated: Time.parse("2014-05-01T05:40:58.000Z"),
10450
10450
  # initiator: {
10451
- # display_name: "display-name",
10451
+ # display_name: "ownder-display-name",
10452
10452
  # id: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
10453
10453
  # },
10454
10454
  # key: "JavaFile",
10455
10455
  # owner: {
10456
- # display_name: "display-name",
10457
- # id: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
10456
+ # display_name: "mohanataws",
10457
+ # id: "852b113e7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
10458
10458
  # },
10459
10459
  # storage_class: "STANDARD",
10460
- # upload_id: "examplelUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--",
10460
+ # upload_id: "gZ30jIqlUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--",
10461
10461
  # },
10462
10462
  # {
10463
10463
  # initiated: Time.parse("2014-05-01T05:41:27.000Z"),
10464
10464
  # initiator: {
10465
- # display_name: "display-name",
10465
+ # display_name: "ownder-display-name",
10466
10466
  # id: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
10467
10467
  # },
10468
10468
  # key: "JavaFile",
10469
10469
  # owner: {
10470
- # display_name: "display-name",
10470
+ # display_name: "ownder-display-name",
10471
10471
  # id: "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc",
10472
10472
  # },
10473
10473
  # storage_class: "STANDARD",
10474
- # upload_id: "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--",
10474
+ # upload_id: "b7tZSqIlo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--",
10475
10475
  # },
10476
10476
  # ],
10477
10477
  # }
@@ -15342,58 +15342,60 @@ module Aws::S3
15342
15342
  # * {Types::PutObjectOutput#request_charged #request_charged} => String
15343
15343
  #
15344
15344
  #
15345
- # @example Example: To create an object.
15345
+ # @example Example: To upload an object and specify server-side encryption and object tags
15346
15346
  #
15347
- # # The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response.
15347
+ # # The following example uploads an object. The request specifies the optional server-side encryption option. The request
15348
+ # # also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response.
15348
15349
  #
15349
15350
  # resp = client.put_object({
15350
15351
  # body: "filetoupload",
15351
15352
  # bucket: "examplebucket",
15352
- # key: "objectkey",
15353
+ # key: "exampleobject",
15354
+ # server_side_encryption: "AES256",
15355
+ # tagging: "key1=value1&key2=value2",
15353
15356
  # })
15354
15357
  #
15355
15358
  # resp.to_h outputs the following:
15356
15359
  # {
15357
15360
  # etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
15358
- # version_id: "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ",
15361
+ # server_side_encryption: "AES256",
15362
+ # version_id: "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt",
15359
15363
  # }
15360
15364
  #
15361
- # @example Example: To upload an object
15365
+ # @example Example: To create an object.
15362
15366
  #
15363
- # # The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file
15364
- # # syntax. S3 returns VersionId of the newly created object.
15367
+ # # The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response.
15365
15368
  #
15366
15369
  # resp = client.put_object({
15367
- # body: "HappyFace.jpg",
15370
+ # body: "filetoupload",
15368
15371
  # bucket: "examplebucket",
15369
- # key: "HappyFace.jpg",
15372
+ # key: "objectkey",
15370
15373
  # })
15371
15374
  #
15372
15375
  # resp.to_h outputs the following:
15373
15376
  # {
15374
15377
  # etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
15375
- # version_id: "tpf3zF08nBplQK1XLOefGskR7mGDwcDk",
15378
+ # version_id: "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ",
15376
15379
  # }
15377
15380
  #
15378
- # @example Example: To upload object and specify user-defined metadata
15381
+ # @example Example: To upload an object (specify optional headers)
15379
15382
  #
15380
- # # The following example creates an object. The request also specifies optional metadata. If the bucket is versioning
15381
- # # enabled, S3 returns version ID in response.
15383
+ # # The following example uploads an object. The request specifies optional request headers to directs S3 to use specific
15384
+ # # storage class and use server-side encryption.
15382
15385
  #
15383
15386
  # resp = client.put_object({
15384
- # body: "filetoupload",
15387
+ # body: "HappyFace.jpg",
15385
15388
  # bucket: "examplebucket",
15386
- # key: "exampleobject",
15387
- # metadata: {
15388
- # "metadata1" => "value1",
15389
- # "metadata2" => "value2",
15390
- # },
15389
+ # key: "HappyFace.jpg",
15390
+ # server_side_encryption: "AES256",
15391
+ # storage_class: "STANDARD_IA",
15391
15392
  # })
15392
15393
  #
15393
15394
  # resp.to_h outputs the following:
15394
15395
  # {
15395
15396
  # etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
15396
- # version_id: "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0",
15397
+ # server_side_encryption: "AES256",
15398
+ # version_id: "CG612hodqujkf8FaaNfp8U..FIhLROcp",
15397
15399
  # }
15398
15400
  #
15399
15401
  # @example Example: To upload an object and specify optional tags
@@ -15414,62 +15416,60 @@ module Aws::S3
15414
15416
  # version_id: "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a",
15415
15417
  # }
15416
15418
  #
15417
- # @example Example: To upload an object (specify optional headers)
15419
+ # @example Example: To upload object and specify user-defined metadata
15418
15420
  #
15419
- # # The following example uploads an object. The request specifies optional request headers to directs S3 to use specific
15420
- # # storage class and use server-side encryption.
15421
+ # # The following example creates an object. The request also specifies optional metadata. If the bucket is versioning
15422
+ # # enabled, S3 returns version ID in response.
15421
15423
  #
15422
15424
  # resp = client.put_object({
15423
- # body: "HappyFace.jpg",
15425
+ # body: "filetoupload",
15424
15426
  # bucket: "examplebucket",
15425
- # key: "HappyFace.jpg",
15426
- # server_side_encryption: "AES256",
15427
- # storage_class: "STANDARD_IA",
15427
+ # key: "exampleobject",
15428
+ # metadata: {
15429
+ # "metadata1" => "value1",
15430
+ # "metadata2" => "value2",
15431
+ # },
15428
15432
  # })
15429
15433
  #
15430
15434
  # resp.to_h outputs the following:
15431
15435
  # {
15432
15436
  # etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
15433
- # server_side_encryption: "AES256",
15434
- # version_id: "CG612hodqujkf8FaaNfp8U..FIhLROcp",
15437
+ # version_id: "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0",
15435
15438
  # }
15436
15439
  #
15437
- # @example Example: To upload an object and specify server-side encryption and object tags
15440
+ # @example Example: To upload an object and specify canned ACL.
15438
15441
  #
15439
- # # The following example uploads an object. The request specifies the optional server-side encryption option. The request
15440
- # # also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response.
15442
+ # # The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ
15443
+ # # access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response.
15441
15444
  #
15442
15445
  # resp = client.put_object({
15446
+ # acl: "authenticated-read",
15443
15447
  # body: "filetoupload",
15444
15448
  # bucket: "examplebucket",
15445
15449
  # key: "exampleobject",
15446
- # server_side_encryption: "AES256",
15447
- # tagging: "key1=value1&key2=value2",
15448
15450
  # })
15449
15451
  #
15450
15452
  # resp.to_h outputs the following:
15451
15453
  # {
15452
15454
  # etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
15453
- # server_side_encryption: "AES256",
15454
- # version_id: "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt",
15455
+ # version_id: "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr",
15455
15456
  # }
15456
15457
  #
15457
- # @example Example: To upload an object and specify canned ACL.
15458
+ # @example Example: To upload an object
15458
15459
  #
15459
- # # The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ
15460
- # # access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response.
15460
+ # # The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file
15461
+ # # syntax. S3 returns VersionId of the newly created object.
15461
15462
  #
15462
15463
  # resp = client.put_object({
15463
- # acl: "authenticated-read",
15464
- # body: "filetoupload",
15464
+ # body: "HappyFace.jpg",
15465
15465
  # bucket: "examplebucket",
15466
- # key: "exampleobject",
15466
+ # key: "HappyFace.jpg",
15467
15467
  # })
15468
15468
  #
15469
15469
  # resp.to_h outputs the following:
15470
15470
  # {
15471
15471
  # etag: "\"6805f2cfc46c0f04559748bb039d69ae\"",
15472
- # version_id: "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr",
15472
+ # version_id: "tpf3zF08nBplQK1XLOefGskR7mGDwcDk",
15473
15473
  # }
15474
15474
  #
15475
15475
  # @example Streaming a file from disk
@@ -18807,7 +18807,7 @@ module Aws::S3
18807
18807
  params: params,
18808
18808
  config: config)
18809
18809
  context[:gem_name] = 'aws-sdk-s3'
18810
- context[:gem_version] = '1.141.0'
18810
+ context[:gem_version] = '1.143.0'
18811
18811
  Seahorse::Client::Request.new(handlers, context)
18812
18812
  end
18813
18813
 
@@ -14,6 +14,7 @@ module Aws::S3
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::S3::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -18,6 +18,7 @@ When `true`, S3 Express session authentication is disabled.
18
18
 
19
19
  option(:express_credentials_provider,
20
20
  doc_type: 'Aws::S3::ExpressCredentialsProvider',
21
+ rbs_type: 'untyped',
21
22
  docstring: <<-DOCS) do |_cfg|
22
23
  Credential Provider for S3 Express endpoints. Manages credentials
23
24
  for different buckets.
data/lib/aws-sdk-s3.rb CHANGED
@@ -73,6 +73,6 @@ require_relative 'aws-sdk-s3/event_streams'
73
73
  # @!group service
74
74
  module Aws::S3
75
75
 
76
- GEM_VERSION = '1.141.0'
76
+ GEM_VERSION = '1.143.0'
77
77
 
78
78
  end