aws-sdk-s3 1.158.0 → 1.160.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +19 -0
- data/lib/aws-sdk-s3/client.rb +324 -209
- data/lib/aws-sdk-s3/client_api.rb +2 -0
- data/lib/aws-sdk-s3/multipart_upload.rb +20 -0
- data/lib/aws-sdk-s3/object.rb +36 -4
- data/lib/aws-sdk-s3/object_summary.rb +28 -0
- data/lib/aws-sdk-s3/object_version.rb +17 -4
- data/lib/aws-sdk-s3/types.rb +106 -6
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +1 -0
- data/sig/client.rbs +3 -0
- data/sig/multipart_upload.rbs +1 -0
- data/sig/object.rbs +1 -0
- data/sig/object_summary.rbs +1 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +2 -0
- metadata +4 -4
@@ -770,6 +770,7 @@ module Aws::S3
|
|
770
770
|
CompleteMultipartUploadRequest.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location: "header", location_name: "x-amz-checksum-sha256"))
|
771
771
|
CompleteMultipartUploadRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
772
772
|
CompleteMultipartUploadRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
773
|
+
CompleteMultipartUploadRequest.add_member(:if_none_match, Shapes::ShapeRef.new(shape: IfNoneMatch, location: "header", location_name: "If-None-Match"))
|
773
774
|
CompleteMultipartUploadRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
774
775
|
CompleteMultipartUploadRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
|
775
776
|
CompleteMultipartUploadRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
@@ -2318,6 +2319,7 @@ module Aws::S3
|
|
2318
2319
|
PutObjectRequest.add_member(:checksum_sha1, Shapes::ShapeRef.new(shape: ChecksumSHA1, location: "header", location_name: "x-amz-checksum-sha1"))
|
2319
2320
|
PutObjectRequest.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location: "header", location_name: "x-amz-checksum-sha256"))
|
2320
2321
|
PutObjectRequest.add_member(:expires, Shapes::ShapeRef.new(shape: Expires, location: "header", location_name: "Expires"))
|
2322
|
+
PutObjectRequest.add_member(:if_none_match, Shapes::ShapeRef.new(shape: IfNoneMatch, location: "header", location_name: "If-None-Match"))
|
2321
2323
|
PutObjectRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
|
2322
2324
|
PutObjectRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
2323
2325
|
PutObjectRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
|
@@ -295,6 +295,7 @@ module Aws::S3
|
|
295
295
|
# checksum_sha256: "ChecksumSHA256",
|
296
296
|
# request_payer: "requester", # accepts requester
|
297
297
|
# expected_bucket_owner: "AccountId",
|
298
|
+
# if_none_match: "IfNoneMatch",
|
298
299
|
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
299
300
|
# sse_customer_key: "SSECustomerKey",
|
300
301
|
# sse_customer_key_md5: "SSECustomerKeyMD5",
|
@@ -362,6 +363,25 @@ module Aws::S3
|
|
362
363
|
# The account ID of the expected bucket owner. If the account ID that
|
363
364
|
# you provide does not match the actual owner of the bucket, the request
|
364
365
|
# fails with the HTTP status code `403 Forbidden` (access denied).
|
366
|
+
# @option options [String] :if_none_match
|
367
|
+
# Uploads the object only if the object key name does not already exist
|
368
|
+
# in the bucket specified. Otherwise, Amazon S3 returns a `412
|
369
|
+
# Precondition Failed` error.
|
370
|
+
#
|
371
|
+
# If a conflicting operation occurs during the upload S3 returns a `409
|
372
|
+
# ConditionalRequestConflict` response. On a 409 failure you should
|
373
|
+
# re-initiate the multipart upload with `CreateMultipartUpload` and
|
374
|
+
# re-upload each part.
|
375
|
+
#
|
376
|
+
# Expects the '*' (asterisk) character.
|
377
|
+
#
|
378
|
+
# For more information about conditional requests, see [RFC 7232][1], or
|
379
|
+
# [Conditional requests][2] in the *Amazon S3 User Guide*.
|
380
|
+
#
|
381
|
+
#
|
382
|
+
#
|
383
|
+
# [1]: https://tools.ietf.org/html/rfc7232
|
384
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/conditional-requests.html
|
365
385
|
# @option options [String] :sse_customer_algorithm
|
366
386
|
# The server-side encryption (SSE) algorithm used to encrypt the object.
|
367
387
|
# This parameter is required only when the object was created using a
|
data/lib/aws-sdk-s3/object.rb
CHANGED
@@ -1662,6 +1662,15 @@ module Aws::S3
|
|
1662
1662
|
# fails with the HTTP status code `403 Forbidden` (access denied).
|
1663
1663
|
# @option options [String] :checksum_mode
|
1664
1664
|
# To retrieve the checksum, this mode must be enabled.
|
1665
|
+
#
|
1666
|
+
# In addition, if you enable checksum mode and the object is uploaded
|
1667
|
+
# with a [checksum][1] and encrypted with an Key Management Service
|
1668
|
+
# (KMS) key, you must have permission to use the `kms:Decrypt` action to
|
1669
|
+
# retrieve the checksum.
|
1670
|
+
#
|
1671
|
+
#
|
1672
|
+
#
|
1673
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_Checksum.html
|
1665
1674
|
# @return [Types::GetObjectOutput]
|
1666
1675
|
def get(options = {}, &block)
|
1667
1676
|
options = options.merge(
|
@@ -2182,6 +2191,7 @@ module Aws::S3
|
|
2182
2191
|
# checksum_sha1: "ChecksumSHA1",
|
2183
2192
|
# checksum_sha256: "ChecksumSHA256",
|
2184
2193
|
# expires: Time.now,
|
2194
|
+
# if_none_match: "IfNoneMatch",
|
2185
2195
|
# grant_full_control: "GrantFullControl",
|
2186
2196
|
# grant_read: "GrantRead",
|
2187
2197
|
# grant_read_acp: "GrantReadACP",
|
@@ -2396,6 +2406,24 @@ module Aws::S3
|
|
2396
2406
|
#
|
2397
2407
|
#
|
2398
2408
|
# [1]: https://www.rfc-editor.org/rfc/rfc7234#section-5.3
|
2409
|
+
# @option options [String] :if_none_match
|
2410
|
+
# Uploads the object only if the object key name does not already exist
|
2411
|
+
# in the bucket specified. Otherwise, Amazon S3 returns a `412
|
2412
|
+
# Precondition Failed` error.
|
2413
|
+
#
|
2414
|
+
# If a conflicting operation occurs during the upload S3 returns a `409
|
2415
|
+
# ConditionalRequestConflict` response. On a 409 failure you should
|
2416
|
+
# retry the upload.
|
2417
|
+
#
|
2418
|
+
# Expects the '*' (asterisk) character.
|
2419
|
+
#
|
2420
|
+
# For more information about conditional requests, see [RFC 7232][1], or
|
2421
|
+
# [Conditional requests][2] in the *Amazon S3 User Guide*.
|
2422
|
+
#
|
2423
|
+
#
|
2424
|
+
#
|
2425
|
+
# [1]: https://tools.ietf.org/html/rfc7232
|
2426
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/conditional-requests.html
|
2399
2427
|
# @option options [String] :grant_full_control
|
2400
2428
|
# Gives the grantee READ, READ\_ACP, and WRITE\_ACP permissions on the
|
2401
2429
|
# object.
|
@@ -2944,10 +2972,14 @@ module Aws::S3
|
|
2944
2972
|
# @option options [String] :checksum_mode
|
2945
2973
|
# To retrieve the checksum, this parameter must be enabled.
|
2946
2974
|
#
|
2947
|
-
# In addition, if you enable
|
2948
|
-
# with
|
2949
|
-
# KMS), you must have permission to use the `kms:Decrypt` action
|
2950
|
-
#
|
2975
|
+
# In addition, if you enable checksum mode and the object is uploaded
|
2976
|
+
# with a [checksum][1] and encrypted with an Key Management Service
|
2977
|
+
# (KMS) key, you must have permission to use the `kms:Decrypt` action to
|
2978
|
+
# retrieve the checksum.
|
2979
|
+
#
|
2980
|
+
#
|
2981
|
+
#
|
2982
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_Checksum.html
|
2951
2983
|
# @return [Types::HeadObjectOutput]
|
2952
2984
|
def head(options = {})
|
2953
2985
|
options = options.merge(
|
@@ -1298,6 +1298,15 @@ module Aws::S3
|
|
1298
1298
|
# fails with the HTTP status code `403 Forbidden` (access denied).
|
1299
1299
|
# @option options [String] :checksum_mode
|
1300
1300
|
# To retrieve the checksum, this mode must be enabled.
|
1301
|
+
#
|
1302
|
+
# In addition, if you enable checksum mode and the object is uploaded
|
1303
|
+
# with a [checksum][1] and encrypted with an Key Management Service
|
1304
|
+
# (KMS) key, you must have permission to use the `kms:Decrypt` action to
|
1305
|
+
# retrieve the checksum.
|
1306
|
+
#
|
1307
|
+
#
|
1308
|
+
#
|
1309
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_Checksum.html
|
1301
1310
|
# @return [Types::GetObjectOutput]
|
1302
1311
|
def get(options = {}, &block)
|
1303
1312
|
options = options.merge(
|
@@ -1818,6 +1827,7 @@ module Aws::S3
|
|
1818
1827
|
# checksum_sha1: "ChecksumSHA1",
|
1819
1828
|
# checksum_sha256: "ChecksumSHA256",
|
1820
1829
|
# expires: Time.now,
|
1830
|
+
# if_none_match: "IfNoneMatch",
|
1821
1831
|
# grant_full_control: "GrantFullControl",
|
1822
1832
|
# grant_read: "GrantRead",
|
1823
1833
|
# grant_read_acp: "GrantReadACP",
|
@@ -2032,6 +2042,24 @@ module Aws::S3
|
|
2032
2042
|
#
|
2033
2043
|
#
|
2034
2044
|
# [1]: https://www.rfc-editor.org/rfc/rfc7234#section-5.3
|
2045
|
+
# @option options [String] :if_none_match
|
2046
|
+
# Uploads the object only if the object key name does not already exist
|
2047
|
+
# in the bucket specified. Otherwise, Amazon S3 returns a `412
|
2048
|
+
# Precondition Failed` error.
|
2049
|
+
#
|
2050
|
+
# If a conflicting operation occurs during the upload S3 returns a `409
|
2051
|
+
# ConditionalRequestConflict` response. On a 409 failure you should
|
2052
|
+
# retry the upload.
|
2053
|
+
#
|
2054
|
+
# Expects the '*' (asterisk) character.
|
2055
|
+
#
|
2056
|
+
# For more information about conditional requests, see [RFC 7232][1], or
|
2057
|
+
# [Conditional requests][2] in the *Amazon S3 User Guide*.
|
2058
|
+
#
|
2059
|
+
#
|
2060
|
+
#
|
2061
|
+
# [1]: https://tools.ietf.org/html/rfc7232
|
2062
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/conditional-requests.html
|
2035
2063
|
# @option options [String] :grant_full_control
|
2036
2064
|
# Gives the grantee READ, READ\_ACP, and WRITE\_ACP permissions on the
|
2037
2065
|
# object.
|
@@ -523,6 +523,15 @@ module Aws::S3
|
|
523
523
|
# fails with the HTTP status code `403 Forbidden` (access denied).
|
524
524
|
# @option options [String] :checksum_mode
|
525
525
|
# To retrieve the checksum, this mode must be enabled.
|
526
|
+
#
|
527
|
+
# In addition, if you enable checksum mode and the object is uploaded
|
528
|
+
# with a [checksum][1] and encrypted with an Key Management Service
|
529
|
+
# (KMS) key, you must have permission to use the `kms:Decrypt` action to
|
530
|
+
# retrieve the checksum.
|
531
|
+
#
|
532
|
+
#
|
533
|
+
#
|
534
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_Checksum.html
|
526
535
|
# @return [Types::GetObjectOutput]
|
527
536
|
def get(options = {}, &block)
|
528
537
|
options = options.merge(
|
@@ -701,10 +710,14 @@ module Aws::S3
|
|
701
710
|
# @option options [String] :checksum_mode
|
702
711
|
# To retrieve the checksum, this parameter must be enabled.
|
703
712
|
#
|
704
|
-
# In addition, if you enable
|
705
|
-
# with
|
706
|
-
# KMS), you must have permission to use the `kms:Decrypt` action
|
707
|
-
#
|
713
|
+
# In addition, if you enable checksum mode and the object is uploaded
|
714
|
+
# with a [checksum][1] and encrypted with an Key Management Service
|
715
|
+
# (KMS) key, you must have permission to use the `kms:Decrypt` action to
|
716
|
+
# retrieve the checksum.
|
717
|
+
#
|
718
|
+
#
|
719
|
+
#
|
720
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_Checksum.html
|
708
721
|
# @return [Types::HeadObjectOutput]
|
709
722
|
def head(options = {})
|
710
723
|
options = options.merge(
|
data/lib/aws-sdk-s3/types.rb
CHANGED
@@ -1061,6 +1061,27 @@ module Aws::S3
|
|
1061
1061
|
# denied).
|
1062
1062
|
# @return [String]
|
1063
1063
|
#
|
1064
|
+
# @!attribute [rw] if_none_match
|
1065
|
+
# Uploads the object only if the object key name does not already
|
1066
|
+
# exist in the bucket specified. Otherwise, Amazon S3 returns a `412
|
1067
|
+
# Precondition Failed` error.
|
1068
|
+
#
|
1069
|
+
# If a conflicting operation occurs during the upload S3 returns a
|
1070
|
+
# `409 ConditionalRequestConflict` response. On a 409 failure you
|
1071
|
+
# should re-initiate the multipart upload with `CreateMultipartUpload`
|
1072
|
+
# and re-upload each part.
|
1073
|
+
#
|
1074
|
+
# Expects the '*' (asterisk) character.
|
1075
|
+
#
|
1076
|
+
# For more information about conditional requests, see [RFC 7232][1],
|
1077
|
+
# or [Conditional requests][2] in the *Amazon S3 User Guide*.
|
1078
|
+
#
|
1079
|
+
#
|
1080
|
+
#
|
1081
|
+
# [1]: https://tools.ietf.org/html/rfc7232
|
1082
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/conditional-requests.html
|
1083
|
+
# @return [String]
|
1084
|
+
#
|
1064
1085
|
# @!attribute [rw] sse_customer_algorithm
|
1065
1086
|
# The server-side encryption (SSE) algorithm used to encrypt the
|
1066
1087
|
# object. This parameter is required only when the object was created
|
@@ -1120,6 +1141,7 @@ module Aws::S3
|
|
1120
1141
|
:checksum_sha256,
|
1121
1142
|
:request_payer,
|
1122
1143
|
:expected_bucket_owner,
|
1144
|
+
:if_none_match,
|
1123
1145
|
:sse_customer_algorithm,
|
1124
1146
|
:sse_customer_key,
|
1125
1147
|
:sse_customer_key_md5)
|
@@ -7390,6 +7412,15 @@ module Aws::S3
|
|
7390
7412
|
#
|
7391
7413
|
# @!attribute [rw] checksum_mode
|
7392
7414
|
# To retrieve the checksum, this mode must be enabled.
|
7415
|
+
#
|
7416
|
+
# In addition, if you enable checksum mode and the object is uploaded
|
7417
|
+
# with a [checksum][1] and encrypted with an Key Management Service
|
7418
|
+
# (KMS) key, you must have permission to use the `kms:Decrypt` action
|
7419
|
+
# to retrieve the checksum.
|
7420
|
+
#
|
7421
|
+
#
|
7422
|
+
#
|
7423
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_Checksum.html
|
7393
7424
|
# @return [String]
|
7394
7425
|
#
|
7395
7426
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetObjectRequest AWS API Documentation
|
@@ -8556,10 +8587,14 @@ module Aws::S3
|
|
8556
8587
|
# @!attribute [rw] checksum_mode
|
8557
8588
|
# To retrieve the checksum, this parameter must be enabled.
|
8558
8589
|
#
|
8559
|
-
# In addition, if you enable
|
8560
|
-
# encrypted with
|
8561
|
-
#
|
8562
|
-
#
|
8590
|
+
# In addition, if you enable checksum mode and the object is uploaded
|
8591
|
+
# with a [checksum][1] and encrypted with an Key Management Service
|
8592
|
+
# (KMS) key, you must have permission to use the `kms:Decrypt` action
|
8593
|
+
# to retrieve the checksum.
|
8594
|
+
#
|
8595
|
+
#
|
8596
|
+
#
|
8597
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_Checksum.html
|
8563
8598
|
# @return [String]
|
8564
8599
|
#
|
8565
8600
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/HeadObjectRequest AWS API Documentation
|
@@ -14157,6 +14192,26 @@ module Aws::S3
|
|
14157
14192
|
# [1]: https://www.rfc-editor.org/rfc/rfc7234#section-5.3
|
14158
14193
|
# @return [Time]
|
14159
14194
|
#
|
14195
|
+
# @!attribute [rw] if_none_match
|
14196
|
+
# Uploads the object only if the object key name does not already
|
14197
|
+
# exist in the bucket specified. Otherwise, Amazon S3 returns a `412
|
14198
|
+
# Precondition Failed` error.
|
14199
|
+
#
|
14200
|
+
# If a conflicting operation occurs during the upload S3 returns a
|
14201
|
+
# `409 ConditionalRequestConflict` response. On a 409 failure you
|
14202
|
+
# should retry the upload.
|
14203
|
+
#
|
14204
|
+
# Expects the '*' (asterisk) character.
|
14205
|
+
#
|
14206
|
+
# For more information about conditional requests, see [RFC 7232][1],
|
14207
|
+
# or [Conditional requests][2] in the *Amazon S3 User Guide*.
|
14208
|
+
#
|
14209
|
+
#
|
14210
|
+
#
|
14211
|
+
# [1]: https://tools.ietf.org/html/rfc7232
|
14212
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/conditional-requests.html
|
14213
|
+
# @return [String]
|
14214
|
+
#
|
14160
14215
|
# @!attribute [rw] grant_full_control
|
14161
14216
|
# Gives the grantee READ, READ\_ACP, and WRITE\_ACP permissions on the
|
14162
14217
|
# object.
|
@@ -14443,6 +14498,7 @@ module Aws::S3
|
|
14443
14498
|
:checksum_sha1,
|
14444
14499
|
:checksum_sha256,
|
14445
14500
|
:expires,
|
14501
|
+
:if_none_match,
|
14446
14502
|
:grant_full_control,
|
14447
14503
|
:grant_read,
|
14448
14504
|
:grant_read_acp,
|
@@ -15405,7 +15461,15 @@ module Aws::S3
|
|
15405
15461
|
# @return [Types::GlacierJobParameters]
|
15406
15462
|
#
|
15407
15463
|
# @!attribute [rw] type
|
15464
|
+
# Amazon S3 Select is no longer available to new customers. Existing
|
15465
|
+
# customers of Amazon S3 Select can continue to use the feature as
|
15466
|
+
# usual. [Learn more][1]
|
15467
|
+
#
|
15408
15468
|
# Type of restore request.
|
15469
|
+
#
|
15470
|
+
#
|
15471
|
+
#
|
15472
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
15409
15473
|
# @return [String]
|
15410
15474
|
#
|
15411
15475
|
# @!attribute [rw] tier
|
@@ -15417,7 +15481,15 @@ module Aws::S3
|
|
15417
15481
|
# @return [String]
|
15418
15482
|
#
|
15419
15483
|
# @!attribute [rw] select_parameters
|
15484
|
+
# Amazon S3 Select is no longer available to new customers. Existing
|
15485
|
+
# customers of Amazon S3 Select can continue to use the feature as
|
15486
|
+
# usual. [Learn more][1]
|
15487
|
+
#
|
15420
15488
|
# Describes the parameters for Select job types.
|
15489
|
+
#
|
15490
|
+
#
|
15491
|
+
#
|
15492
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
15421
15493
|
# @return [Types::SelectParameters]
|
15422
15494
|
#
|
15423
15495
|
# @!attribute [rw] output_location
|
@@ -15748,6 +15820,12 @@ module Aws::S3
|
|
15748
15820
|
include Aws::Structure
|
15749
15821
|
end
|
15750
15822
|
|
15823
|
+
# <note markdown="1"> Learn Amazon S3 Select is no longer available to new customers.
|
15824
|
+
# Existing customers of Amazon S3 Select can continue to use the feature
|
15825
|
+
# as usual. [Learn more][1]
|
15826
|
+
#
|
15827
|
+
# </note>
|
15828
|
+
#
|
15751
15829
|
# Request to filter the contents of an Amazon S3 object based on a
|
15752
15830
|
# simple Structured Query Language (SQL) statement. In the request,
|
15753
15831
|
# along with the SQL expression, you must specify a data serialization
|
@@ -15755,11 +15833,12 @@ module Aws::S3
|
|
15755
15833
|
# object data into records. It returns only records that match the
|
15756
15834
|
# specified SQL expression. You must also specify the data serialization
|
15757
15835
|
# format for the response. For more information, see [S3Select API
|
15758
|
-
# Documentation][
|
15836
|
+
# Documentation][2].
|
15759
15837
|
#
|
15760
15838
|
#
|
15761
15839
|
#
|
15762
|
-
# [1]:
|
15840
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
15841
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectSELECTContent.html
|
15763
15842
|
#
|
15764
15843
|
# @!attribute [rw] bucket
|
15765
15844
|
# The S3 bucket.
|
@@ -15871,8 +15950,21 @@ module Aws::S3
|
|
15871
15950
|
include Aws::Structure
|
15872
15951
|
end
|
15873
15952
|
|
15953
|
+
# Amazon S3 Select is no longer available to new customers. Existing
|
15954
|
+
# customers of Amazon S3 Select can continue to use the feature as
|
15955
|
+
# usual. [Learn more][1]
|
15956
|
+
#
|
15874
15957
|
# Describes the parameters for Select job types.
|
15875
15958
|
#
|
15959
|
+
# Learn [How to optimize querying your data in Amazon S3][1] using
|
15960
|
+
# [Amazon Athena][2], [S3 Object Lambda][3], or client-side filtering.
|
15961
|
+
#
|
15962
|
+
#
|
15963
|
+
#
|
15964
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
15965
|
+
# [2]: https://docs.aws.amazon.com/athena/latest/ug/what-is.html
|
15966
|
+
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/transforming-objects.html
|
15967
|
+
#
|
15876
15968
|
# @!attribute [rw] input_serialization
|
15877
15969
|
# Describes the serialization format of the object.
|
15878
15970
|
# @return [Types::InputSerialization]
|
@@ -15882,7 +15974,15 @@ module Aws::S3
|
|
15882
15974
|
# @return [String]
|
15883
15975
|
#
|
15884
15976
|
# @!attribute [rw] expression
|
15977
|
+
# Amazon S3 Select is no longer available to new customers. Existing
|
15978
|
+
# customers of Amazon S3 Select can continue to use the feature as
|
15979
|
+
# usual. [Learn more][1]
|
15980
|
+
#
|
15885
15981
|
# The expression that is used to query the object.
|
15982
|
+
#
|
15983
|
+
#
|
15984
|
+
#
|
15985
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
15886
15986
|
# @return [String]
|
15887
15987
|
#
|
15888
15988
|
# @!attribute [rw] output_serialization
|
data/lib/aws-sdk-s3.rb
CHANGED
data/sig/bucket.rbs
CHANGED
data/sig/client.rbs
CHANGED
@@ -64,6 +64,7 @@ module Aws
|
|
64
64
|
?session_token: String,
|
65
65
|
?sigv4a_signing_region_set: Array[String],
|
66
66
|
?stub_responses: untyped,
|
67
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
67
68
|
?token_provider: untyped,
|
68
69
|
?use_accelerate_endpoint: bool,
|
69
70
|
?use_dualstack_endpoint: bool,
|
@@ -142,6 +143,7 @@ module Aws
|
|
142
143
|
?checksum_sha256: ::String,
|
143
144
|
?request_payer: ("requester"),
|
144
145
|
?expected_bucket_owner: ::String,
|
146
|
+
?if_none_match: ::String,
|
145
147
|
?sse_customer_algorithm: ::String,
|
146
148
|
?sse_customer_key: ::String,
|
147
149
|
?sse_customer_key_md5: ::String
|
@@ -1886,6 +1888,7 @@ module Aws
|
|
1886
1888
|
?checksum_sha1: ::String,
|
1887
1889
|
?checksum_sha256: ::String,
|
1888
1890
|
?expires: ::Time,
|
1891
|
+
?if_none_match: ::String,
|
1889
1892
|
?grant_full_control: ::String,
|
1890
1893
|
?grant_read: ::String,
|
1891
1894
|
?grant_read_acp: ::String,
|
data/sig/multipart_upload.rbs
CHANGED
data/sig/object.rbs
CHANGED
data/sig/object_summary.rbs
CHANGED
data/sig/resource.rbs
CHANGED
@@ -64,6 +64,7 @@ module Aws
|
|
64
64
|
?session_token: String,
|
65
65
|
?sigv4a_signing_region_set: Array[String],
|
66
66
|
?stub_responses: untyped,
|
67
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
67
68
|
?token_provider: untyped,
|
68
69
|
?use_accelerate_endpoint: bool,
|
69
70
|
?use_dualstack_endpoint: bool,
|
data/sig/types.rbs
CHANGED
@@ -190,6 +190,7 @@ module Aws::S3
|
|
190
190
|
attr_accessor checksum_sha256: ::String
|
191
191
|
attr_accessor request_payer: ("requester")
|
192
192
|
attr_accessor expected_bucket_owner: ::String
|
193
|
+
attr_accessor if_none_match: ::String
|
193
194
|
attr_accessor sse_customer_algorithm: ::String
|
194
195
|
attr_accessor sse_customer_key: ::String
|
195
196
|
attr_accessor sse_customer_key_md5: ::String
|
@@ -2049,6 +2050,7 @@ module Aws::S3
|
|
2049
2050
|
attr_accessor checksum_sha1: ::String
|
2050
2051
|
attr_accessor checksum_sha256: ::String
|
2051
2052
|
attr_accessor expires: ::Time
|
2053
|
+
attr_accessor if_none_match: ::String
|
2052
2054
|
attr_accessor grant_full_control: ::String
|
2053
2055
|
attr_accessor grant_read: ::String
|
2054
2056
|
attr_accessor grant_read_acp: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-s3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.160.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-kms
|
@@ -47,7 +47,7 @@ dependencies:
|
|
47
47
|
version: '3'
|
48
48
|
- - ">="
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version: 3.
|
50
|
+
version: 3.203.0
|
51
51
|
type: :runtime
|
52
52
|
prerelease: false
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -57,7 +57,7 @@ dependencies:
|
|
57
57
|
version: '3'
|
58
58
|
- - ">="
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: 3.
|
60
|
+
version: 3.203.0
|
61
61
|
description: Official AWS Ruby gem for Amazon Simple Storage Service (Amazon S3).
|
62
62
|
This gem is part of the AWS SDK for Ruby.
|
63
63
|
email:
|