aws-sdk-s3 1.125.0 → 1.126.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +34 -12
- data/lib/aws-sdk-s3/client.rb +398 -385
- data/lib/aws-sdk-s3/client_api.rb +8 -0
- data/lib/aws-sdk-s3/object.rb +36 -37
- data/lib/aws-sdk-s3/object_summary.rb +31 -32
- data/lib/aws-sdk-s3/types.rb +161 -87
- data/lib/aws-sdk-s3.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-s3/types.rb
CHANGED
@@ -806,7 +806,7 @@ module Aws::S3
|
|
806
806
|
#
|
807
807
|
# @!attribute [rw] server_side_encryption
|
808
808
|
# The server-side encryption algorithm used when storing this object
|
809
|
-
# in Amazon S3 (for example, AES256
|
809
|
+
# in Amazon S3 (for example, `AES256`, `aws:kms`).
|
810
810
|
# @return [String]
|
811
811
|
#
|
812
812
|
# @!attribute [rw] version_id
|
@@ -815,14 +815,15 @@ module Aws::S3
|
|
815
815
|
# @return [String]
|
816
816
|
#
|
817
817
|
# @!attribute [rw] ssekms_key_id
|
818
|
-
# If present, specifies the ID of the
|
819
|
-
#
|
820
|
-
#
|
818
|
+
# If present, specifies the ID of the Key Management Service (KMS)
|
819
|
+
# symmetric encryption customer managed key that was used for the
|
820
|
+
# object.
|
821
821
|
# @return [String]
|
822
822
|
#
|
823
823
|
# @!attribute [rw] bucket_key_enabled
|
824
824
|
# Indicates whether the multipart upload uses an S3 Bucket Key for
|
825
|
-
# server-side encryption with
|
825
|
+
# server-side encryption with Key Management Service (KMS) keys
|
826
|
+
# (SSE-KMS).
|
826
827
|
# @return [Boolean]
|
827
828
|
#
|
828
829
|
# @!attribute [rw] request_charged
|
@@ -1172,7 +1173,7 @@ module Aws::S3
|
|
1172
1173
|
#
|
1173
1174
|
# @!attribute [rw] server_side_encryption
|
1174
1175
|
# The server-side encryption algorithm used when storing this object
|
1175
|
-
# in Amazon S3 (for example, AES256
|
1176
|
+
# in Amazon S3 (for example, `AES256`, `aws:kms`, `aws:kms:dsse`).
|
1176
1177
|
# @return [String]
|
1177
1178
|
#
|
1178
1179
|
# @!attribute [rw] sse_customer_algorithm
|
@@ -1189,9 +1190,9 @@ module Aws::S3
|
|
1189
1190
|
# @return [String]
|
1190
1191
|
#
|
1191
1192
|
# @!attribute [rw] ssekms_key_id
|
1192
|
-
# If present, specifies the ID of the
|
1193
|
-
#
|
1194
|
-
#
|
1193
|
+
# If present, specifies the ID of the Key Management Service (KMS)
|
1194
|
+
# symmetric encryption customer managed key that was used for the
|
1195
|
+
# object.
|
1195
1196
|
# @return [String]
|
1196
1197
|
#
|
1197
1198
|
# @!attribute [rw] ssekms_encryption_context
|
@@ -1203,7 +1204,8 @@ module Aws::S3
|
|
1203
1204
|
#
|
1204
1205
|
# @!attribute [rw] bucket_key_enabled
|
1205
1206
|
# Indicates whether the copied object uses an S3 Bucket Key for
|
1206
|
-
# server-side encryption with
|
1207
|
+
# server-side encryption with Key Management Service (KMS) keys
|
1208
|
+
# (SSE-KMS).
|
1207
1209
|
# @return [Boolean]
|
1208
1210
|
#
|
1209
1211
|
# @!attribute [rw] request_charged
|
@@ -1410,7 +1412,7 @@ module Aws::S3
|
|
1410
1412
|
#
|
1411
1413
|
# @!attribute [rw] server_side_encryption
|
1412
1414
|
# The server-side encryption algorithm used when storing this object
|
1413
|
-
# in Amazon S3 (for example, AES256
|
1415
|
+
# in Amazon S3 (for example, `AES256`, `aws:kms`, `aws:kms:dsse`).
|
1414
1416
|
# @return [String]
|
1415
1417
|
#
|
1416
1418
|
# @!attribute [rw] storage_class
|
@@ -1455,13 +1457,12 @@ module Aws::S3
|
|
1455
1457
|
# @return [String]
|
1456
1458
|
#
|
1457
1459
|
# @!attribute [rw] ssekms_key_id
|
1458
|
-
# Specifies the
|
1459
|
-
#
|
1460
|
-
#
|
1461
|
-
#
|
1462
|
-
#
|
1463
|
-
# [
|
1464
|
-
# the *Amazon S3 User Guide*.
|
1460
|
+
# Specifies the KMS key ID to use for object encryption. All GET and
|
1461
|
+
# PUT requests for an object protected by KMS will fail if they're
|
1462
|
+
# not made via SSL or using SigV4. For information about configuring
|
1463
|
+
# any of the officially supported Amazon Web Services SDKs and Amazon
|
1464
|
+
# Web Services CLI, see [Specifying the Signature Version in Request
|
1465
|
+
# Authentication][1] in the *Amazon S3 User Guide*.
|
1465
1466
|
#
|
1466
1467
|
#
|
1467
1468
|
#
|
@@ -1477,9 +1478,9 @@ module Aws::S3
|
|
1477
1478
|
#
|
1478
1479
|
# @!attribute [rw] bucket_key_enabled
|
1479
1480
|
# Specifies whether Amazon S3 should use an S3 Bucket Key for object
|
1480
|
-
# encryption with server-side encryption using
|
1481
|
-
# Setting this header to `true` causes Amazon S3
|
1482
|
-
# Key for object encryption with SSE-KMS.
|
1481
|
+
# encryption with server-side encryption using Key Management Service
|
1482
|
+
# (KMS) keys (SSE-KMS). Setting this header to `true` causes Amazon S3
|
1483
|
+
# to use an S3 Bucket Key for object encryption with SSE-KMS.
|
1483
1484
|
#
|
1484
1485
|
# Specifying this header with a COPY action doesn’t affect
|
1485
1486
|
# bucket-level settings for S3 Bucket Key.
|
@@ -1912,7 +1913,7 @@ module Aws::S3
|
|
1912
1913
|
#
|
1913
1914
|
# @!attribute [rw] server_side_encryption
|
1914
1915
|
# The server-side encryption algorithm used when storing this object
|
1915
|
-
# in Amazon S3 (for example, AES256
|
1916
|
+
# in Amazon S3 (for example, `AES256`, `aws:kms`).
|
1916
1917
|
# @return [String]
|
1917
1918
|
#
|
1918
1919
|
# @!attribute [rw] sse_customer_algorithm
|
@@ -1929,9 +1930,9 @@ module Aws::S3
|
|
1929
1930
|
# @return [String]
|
1930
1931
|
#
|
1931
1932
|
# @!attribute [rw] ssekms_key_id
|
1932
|
-
# If present, specifies the ID of the
|
1933
|
-
#
|
1934
|
-
#
|
1933
|
+
# If present, specifies the ID of the Key Management Service (KMS)
|
1934
|
+
# symmetric encryption customer managed key that was used for the
|
1935
|
+
# object.
|
1935
1936
|
# @return [String]
|
1936
1937
|
#
|
1937
1938
|
# @!attribute [rw] ssekms_encryption_context
|
@@ -1943,7 +1944,8 @@ module Aws::S3
|
|
1943
1944
|
#
|
1944
1945
|
# @!attribute [rw] bucket_key_enabled
|
1945
1946
|
# Indicates whether the multipart upload uses an S3 Bucket Key for
|
1946
|
-
# server-side encryption with
|
1947
|
+
# server-side encryption with Key Management Service (KMS) keys
|
1948
|
+
# (SSE-KMS).
|
1947
1949
|
# @return [Boolean]
|
1948
1950
|
#
|
1949
1951
|
# @!attribute [rw] request_charged
|
@@ -2069,7 +2071,7 @@ module Aws::S3
|
|
2069
2071
|
#
|
2070
2072
|
# @!attribute [rw] server_side_encryption
|
2071
2073
|
# The server-side encryption algorithm used when storing this object
|
2072
|
-
# in Amazon S3 (for example, AES256
|
2074
|
+
# in Amazon S3 (for example, `AES256`, `aws:kms`).
|
2073
2075
|
# @return [String]
|
2074
2076
|
#
|
2075
2077
|
# @!attribute [rw] storage_class
|
@@ -2114,11 +2116,11 @@ module Aws::S3
|
|
2114
2116
|
# @!attribute [rw] ssekms_key_id
|
2115
2117
|
# Specifies the ID of the symmetric encryption customer managed key to
|
2116
2118
|
# use for object encryption. All GET and PUT requests for an object
|
2117
|
-
# protected by
|
2118
|
-
#
|
2119
|
-
#
|
2120
|
-
#
|
2121
|
-
#
|
2119
|
+
# protected by KMS will fail if they're not made via SSL or using
|
2120
|
+
# SigV4. For information about configuring any of the officially
|
2121
|
+
# supported Amazon Web Services SDKs and Amazon Web Services CLI, see
|
2122
|
+
# [Specifying the Signature Version in Request Authentication][1] in
|
2123
|
+
# the *Amazon S3 User Guide*.
|
2122
2124
|
#
|
2123
2125
|
#
|
2124
2126
|
#
|
@@ -2134,9 +2136,9 @@ module Aws::S3
|
|
2134
2136
|
#
|
2135
2137
|
# @!attribute [rw] bucket_key_enabled
|
2136
2138
|
# Specifies whether Amazon S3 should use an S3 Bucket Key for object
|
2137
|
-
# encryption with server-side encryption using
|
2138
|
-
# Setting this header to `true` causes Amazon S3
|
2139
|
-
# Key for object encryption with SSE-KMS.
|
2139
|
+
# encryption with server-side encryption using Key Management Service
|
2140
|
+
# (KMS) keys (SSE-KMS). Setting this header to `true` causes Amazon S3
|
2141
|
+
# to use an S3 Bucket Key for object encryption with SSE-KMS.
|
2140
2142
|
#
|
2141
2143
|
# Specifying this header with an object action doesn’t affect
|
2142
2144
|
# bucket-level settings for S3 Bucket Key.
|
@@ -2266,7 +2268,7 @@ module Aws::S3
|
|
2266
2268
|
# Container for the objects to delete.
|
2267
2269
|
#
|
2268
2270
|
# @!attribute [rw] objects
|
2269
|
-
# The
|
2271
|
+
# The object to delete.
|
2270
2272
|
# @return [Array<Types::ObjectIdentifier>]
|
2271
2273
|
#
|
2272
2274
|
# @!attribute [rw] quiet
|
@@ -3061,8 +3063,8 @@ module Aws::S3
|
|
3061
3063
|
# the ID of the symmetric encryption customer managed key to use for
|
3062
3064
|
# encryption of job results. Amazon S3 only supports symmetric
|
3063
3065
|
# encryption KMS keys. For more information, see [Asymmetric keys in
|
3064
|
-
#
|
3065
|
-
#
|
3066
|
+
# KMS][1] in the *Amazon Web Services Key Management Service Developer
|
3067
|
+
# Guide*.
|
3066
3068
|
#
|
3067
3069
|
#
|
3068
3070
|
#
|
@@ -4040,10 +4042,16 @@ module Aws::S3
|
|
4040
4042
|
# The accelerate configuration of the bucket.
|
4041
4043
|
# @return [String]
|
4042
4044
|
#
|
4045
|
+
# @!attribute [rw] request_charged
|
4046
|
+
# If present, indicates that the requester was successfully charged
|
4047
|
+
# for the request.
|
4048
|
+
# @return [String]
|
4049
|
+
#
|
4043
4050
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketAccelerateConfigurationOutput AWS API Documentation
|
4044
4051
|
#
|
4045
4052
|
class GetBucketAccelerateConfigurationOutput < Struct.new(
|
4046
|
-
:status
|
4053
|
+
:status,
|
4054
|
+
:request_charged)
|
4047
4055
|
SENSITIVE = []
|
4048
4056
|
include Aws::Structure
|
4049
4057
|
end
|
@@ -4059,11 +4067,24 @@ module Aws::S3
|
|
4059
4067
|
# `403 Forbidden` (access denied).
|
4060
4068
|
# @return [String]
|
4061
4069
|
#
|
4070
|
+
# @!attribute [rw] request_payer
|
4071
|
+
# Confirms that the requester knows that they will be charged for the
|
4072
|
+
# request. Bucket owners need not specify this parameter in their
|
4073
|
+
# requests. For information about downloading objects from Requester
|
4074
|
+
# Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
|
4075
|
+
# in the *Amazon S3 User Guide*.
|
4076
|
+
#
|
4077
|
+
#
|
4078
|
+
#
|
4079
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
4080
|
+
# @return [String]
|
4081
|
+
#
|
4062
4082
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketAccelerateConfigurationRequest AWS API Documentation
|
4063
4083
|
#
|
4064
4084
|
class GetBucketAccelerateConfigurationRequest < Struct.new(
|
4065
4085
|
:bucket,
|
4066
|
-
:expected_bucket_owner
|
4086
|
+
:expected_bucket_owner,
|
4087
|
+
:request_payer)
|
4067
4088
|
SENSITIVE = []
|
4068
4089
|
include Aws::Structure
|
4069
4090
|
end
|
@@ -5370,7 +5391,7 @@ module Aws::S3
|
|
5370
5391
|
#
|
5371
5392
|
# @!attribute [rw] server_side_encryption
|
5372
5393
|
# The server-side encryption algorithm used when storing this object
|
5373
|
-
# in Amazon S3 (for example, AES256
|
5394
|
+
# in Amazon S3 (for example, `AES256`, `aws:kms`, `aws:kms:dsse`).
|
5374
5395
|
# @return [String]
|
5375
5396
|
#
|
5376
5397
|
# @!attribute [rw] metadata
|
@@ -5391,14 +5412,14 @@ module Aws::S3
|
|
5391
5412
|
# @return [String]
|
5392
5413
|
#
|
5393
5414
|
# @!attribute [rw] ssekms_key_id
|
5394
|
-
# If present, specifies the ID of the
|
5395
|
-
#
|
5396
|
-
#
|
5415
|
+
# If present, specifies the ID of the Key Management Service (KMS)
|
5416
|
+
# symmetric encryption customer managed key that was used for the
|
5417
|
+
# object.
|
5397
5418
|
# @return [String]
|
5398
5419
|
#
|
5399
5420
|
# @!attribute [rw] bucket_key_enabled
|
5400
5421
|
# Indicates whether the object uses an S3 Bucket Key for server-side
|
5401
|
-
# encryption with
|
5422
|
+
# encryption with Key Management Service (KMS) keys (SSE-KMS).
|
5402
5423
|
# @return [Boolean]
|
5403
5424
|
#
|
5404
5425
|
# @!attribute [rw] storage_class
|
@@ -6208,7 +6229,7 @@ module Aws::S3
|
|
6208
6229
|
#
|
6209
6230
|
# @!attribute [rw] server_side_encryption
|
6210
6231
|
# The server-side encryption algorithm used when storing this object
|
6211
|
-
# in Amazon S3 (for example, AES256
|
6232
|
+
# in Amazon S3 (for example, `AES256`, `aws:kms`, `aws:kms:dsse`).
|
6212
6233
|
# @return [String]
|
6213
6234
|
#
|
6214
6235
|
# @!attribute [rw] metadata
|
@@ -6229,14 +6250,14 @@ module Aws::S3
|
|
6229
6250
|
# @return [String]
|
6230
6251
|
#
|
6231
6252
|
# @!attribute [rw] ssekms_key_id
|
6232
|
-
# If present, specifies the ID of the
|
6233
|
-
#
|
6234
|
-
#
|
6253
|
+
# If present, specifies the ID of the Key Management Service (KMS)
|
6254
|
+
# symmetric encryption customer managed key that was used for the
|
6255
|
+
# object.
|
6235
6256
|
# @return [String]
|
6236
6257
|
#
|
6237
6258
|
# @!attribute [rw] bucket_key_enabled
|
6238
6259
|
# Indicates whether the object uses an S3 Bucket Key for server-side
|
6239
|
-
# encryption with
|
6260
|
+
# encryption with Key Management Service (KMS) keys (SSE-KMS).
|
6240
6261
|
# @return [Boolean]
|
6241
6262
|
#
|
6242
6263
|
# @!attribute [rw] storage_class
|
@@ -7507,6 +7528,11 @@ module Aws::S3
|
|
7507
7528
|
# `Delimiter`, `KeyMarker`, `Prefix`, `NextKeyMarker`, `Key`.
|
7508
7529
|
# @return [String]
|
7509
7530
|
#
|
7531
|
+
# @!attribute [rw] request_charged
|
7532
|
+
# If present, indicates that the requester was successfully charged
|
7533
|
+
# for the request.
|
7534
|
+
# @return [String]
|
7535
|
+
#
|
7510
7536
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ListMultipartUploadsOutput AWS API Documentation
|
7511
7537
|
#
|
7512
7538
|
class ListMultipartUploadsOutput < Struct.new(
|
@@ -7521,7 +7547,8 @@ module Aws::S3
|
|
7521
7547
|
:is_truncated,
|
7522
7548
|
:uploads,
|
7523
7549
|
:common_prefixes,
|
7524
|
-
:encoding_type
|
7550
|
+
:encoding_type,
|
7551
|
+
:request_charged)
|
7525
7552
|
SENSITIVE = []
|
7526
7553
|
include Aws::Structure
|
7527
7554
|
end
|
@@ -7616,6 +7643,18 @@ module Aws::S3
|
|
7616
7643
|
# `403 Forbidden` (access denied).
|
7617
7644
|
# @return [String]
|
7618
7645
|
#
|
7646
|
+
# @!attribute [rw] request_payer
|
7647
|
+
# Confirms that the requester knows that they will be charged for the
|
7648
|
+
# request. Bucket owners need not specify this parameter in their
|
7649
|
+
# requests. For information about downloading objects from Requester
|
7650
|
+
# Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
|
7651
|
+
# in the *Amazon S3 User Guide*.
|
7652
|
+
#
|
7653
|
+
#
|
7654
|
+
#
|
7655
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
7656
|
+
# @return [String]
|
7657
|
+
#
|
7619
7658
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ListMultipartUploadsRequest AWS API Documentation
|
7620
7659
|
#
|
7621
7660
|
class ListMultipartUploadsRequest < Struct.new(
|
@@ -7626,7 +7665,8 @@ module Aws::S3
|
|
7626
7665
|
:max_uploads,
|
7627
7666
|
:prefix,
|
7628
7667
|
:upload_id_marker,
|
7629
|
-
:expected_bucket_owner
|
7668
|
+
:expected_bucket_owner,
|
7669
|
+
:request_payer)
|
7630
7670
|
SENSITIVE = []
|
7631
7671
|
include Aws::Structure
|
7632
7672
|
end
|
@@ -7707,6 +7747,11 @@ module Aws::S3
|
|
7707
7747
|
# `KeyMarker, NextKeyMarker, Prefix, Key`, and `Delimiter`.
|
7708
7748
|
# @return [String]
|
7709
7749
|
#
|
7750
|
+
# @!attribute [rw] request_charged
|
7751
|
+
# If present, indicates that the requester was successfully charged
|
7752
|
+
# for the request.
|
7753
|
+
# @return [String]
|
7754
|
+
#
|
7710
7755
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ListObjectVersionsOutput AWS API Documentation
|
7711
7756
|
#
|
7712
7757
|
class ListObjectVersionsOutput < Struct.new(
|
@@ -7722,7 +7767,8 @@ module Aws::S3
|
|
7722
7767
|
:delimiter,
|
7723
7768
|
:max_keys,
|
7724
7769
|
:common_prefixes,
|
7725
|
-
:encoding_type
|
7770
|
+
:encoding_type,
|
7771
|
+
:request_charged)
|
7726
7772
|
SENSITIVE = []
|
7727
7773
|
include Aws::Structure
|
7728
7774
|
end
|
@@ -7782,6 +7828,18 @@ module Aws::S3
|
|
7782
7828
|
# `403 Forbidden` (access denied).
|
7783
7829
|
# @return [String]
|
7784
7830
|
#
|
7831
|
+
# @!attribute [rw] request_payer
|
7832
|
+
# Confirms that the requester knows that they will be charged for the
|
7833
|
+
# request. Bucket owners need not specify this parameter in their
|
7834
|
+
# requests. For information about downloading objects from Requester
|
7835
|
+
# Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
|
7836
|
+
# in the *Amazon S3 User Guide*.
|
7837
|
+
#
|
7838
|
+
#
|
7839
|
+
#
|
7840
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
7841
|
+
# @return [String]
|
7842
|
+
#
|
7785
7843
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ListObjectVersionsRequest AWS API Documentation
|
7786
7844
|
#
|
7787
7845
|
class ListObjectVersionsRequest < Struct.new(
|
@@ -7792,7 +7850,8 @@ module Aws::S3
|
|
7792
7850
|
:max_keys,
|
7793
7851
|
:prefix,
|
7794
7852
|
:version_id_marker,
|
7795
|
-
:expected_bucket_owner
|
7853
|
+
:expected_bucket_owner,
|
7854
|
+
:request_payer)
|
7796
7855
|
SENSITIVE = []
|
7797
7856
|
include Aws::Structure
|
7798
7857
|
end
|
@@ -7866,6 +7925,11 @@ module Aws::S3
|
|
7866
7925
|
# response.
|
7867
7926
|
# @return [String]
|
7868
7927
|
#
|
7928
|
+
# @!attribute [rw] request_charged
|
7929
|
+
# If present, indicates that the requester was successfully charged
|
7930
|
+
# for the request.
|
7931
|
+
# @return [String]
|
7932
|
+
#
|
7869
7933
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ListObjectsOutput AWS API Documentation
|
7870
7934
|
#
|
7871
7935
|
class ListObjectsOutput < Struct.new(
|
@@ -7878,7 +7942,8 @@ module Aws::S3
|
|
7878
7942
|
:delimiter,
|
7879
7943
|
:max_keys,
|
7880
7944
|
:common_prefixes,
|
7881
|
-
:encoding_type
|
7945
|
+
:encoding_type,
|
7946
|
+
:request_charged)
|
7882
7947
|
SENSITIVE = []
|
7883
7948
|
include Aws::Structure
|
7884
7949
|
end
|
@@ -8076,6 +8141,11 @@ module Aws::S3
|
|
8076
8141
|
# response.
|
8077
8142
|
# @return [String]
|
8078
8143
|
#
|
8144
|
+
# @!attribute [rw] request_charged
|
8145
|
+
# If present, indicates that the requester was successfully charged
|
8146
|
+
# for the request.
|
8147
|
+
# @return [String]
|
8148
|
+
#
|
8079
8149
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ListObjectsV2Output AWS API Documentation
|
8080
8150
|
#
|
8081
8151
|
class ListObjectsV2Output < Struct.new(
|
@@ -8090,7 +8160,8 @@ module Aws::S3
|
|
8090
8160
|
:key_count,
|
8091
8161
|
:continuation_token,
|
8092
8162
|
:next_continuation_token,
|
8093
|
-
:start_after
|
8163
|
+
:start_after,
|
8164
|
+
:request_charged)
|
8094
8165
|
SENSITIVE = []
|
8095
8166
|
include Aws::Structure
|
8096
8167
|
end
|
@@ -10904,7 +10975,7 @@ module Aws::S3
|
|
10904
10975
|
#
|
10905
10976
|
# @!attribute [rw] server_side_encryption
|
10906
10977
|
# The server-side encryption algorithm used when storing this object
|
10907
|
-
# in Amazon S3 (for example, AES256
|
10978
|
+
# in Amazon S3 (for example, `AES256`, `aws:kms`, `aws:kms:dsse`).
|
10908
10979
|
# @return [String]
|
10909
10980
|
#
|
10910
10981
|
# @!attribute [rw] version_id
|
@@ -10925,10 +10996,10 @@ module Aws::S3
|
|
10925
10996
|
# @return [String]
|
10926
10997
|
#
|
10927
10998
|
# @!attribute [rw] ssekms_key_id
|
10928
|
-
# If `x-amz-server-side-encryption`
|
10929
|
-
# this header specifies the ID of the
|
10930
|
-
#
|
10931
|
-
#
|
10999
|
+
# If `x-amz-server-side-encryption` has a valid value of `aws:kms` or
|
11000
|
+
# `aws:kms:dsse`, this header specifies the ID of the Key Management
|
11001
|
+
# Service (KMS) symmetric encryption customer managed key that was
|
11002
|
+
# used for the object.
|
10932
11003
|
# @return [String]
|
10933
11004
|
#
|
10934
11005
|
# @!attribute [rw] ssekms_encryption_context
|
@@ -10942,7 +11013,8 @@ module Aws::S3
|
|
10942
11013
|
#
|
10943
11014
|
# @!attribute [rw] bucket_key_enabled
|
10944
11015
|
# Indicates whether the uploaded object uses an S3 Bucket Key for
|
10945
|
-
# server-side encryption with
|
11016
|
+
# server-side encryption with Key Management Service (KMS) keys
|
11017
|
+
# (SSE-KMS).
|
10946
11018
|
# @return [Boolean]
|
10947
11019
|
#
|
10948
11020
|
# @!attribute [rw] request_charged
|
@@ -11194,7 +11266,7 @@ module Aws::S3
|
|
11194
11266
|
#
|
11195
11267
|
# @!attribute [rw] server_side_encryption
|
11196
11268
|
# The server-side encryption algorithm used when storing this object
|
11197
|
-
# in Amazon S3 (for example, AES256
|
11269
|
+
# in Amazon S3 (for example, `AES256`, `aws:kms`, `aws:kms:dsse`).
|
11198
11270
|
# @return [String]
|
11199
11271
|
#
|
11200
11272
|
# @!attribute [rw] storage_class
|
@@ -11258,15 +11330,16 @@ module Aws::S3
|
|
11258
11330
|
# @return [String]
|
11259
11331
|
#
|
11260
11332
|
# @!attribute [rw] ssekms_key_id
|
11261
|
-
# If `x-amz-server-side-encryption` has a valid value of `aws:kms
|
11262
|
-
# this header specifies the ID of the
|
11263
|
-
#
|
11264
|
-
#
|
11265
|
-
# `x-amz-server-side-encryption:aws:kms
|
11333
|
+
# If `x-amz-server-side-encryption` has a valid value of `aws:kms` or
|
11334
|
+
# `aws:kms:dsse`, this header specifies the ID of the Key Management
|
11335
|
+
# Service (KMS) symmetric encryption customer managed key that was
|
11336
|
+
# used for the object. If you specify
|
11337
|
+
# `x-amz-server-side-encryption:aws:kms` or
|
11338
|
+
# `x-amz-server-side-encryption:aws:kms:dsse`, but do not provide`
|
11266
11339
|
# x-amz-server-side-encryption-aws-kms-key-id`, Amazon S3 uses the
|
11267
|
-
# Amazon Web Services managed key to protect the data. If
|
11268
|
-
# does not exist in the same account issuing the
|
11269
|
-
# the full ARN and not just the ID.
|
11340
|
+
# Amazon Web Services managed key (`aws/s3`) to protect the data. If
|
11341
|
+
# the KMS key does not exist in the same account that's issuing the
|
11342
|
+
# command, you must use the full ARN and not just the ID.
|
11270
11343
|
# @return [String]
|
11271
11344
|
#
|
11272
11345
|
# @!attribute [rw] ssekms_encryption_context
|
@@ -11280,9 +11353,9 @@ module Aws::S3
|
|
11280
11353
|
#
|
11281
11354
|
# @!attribute [rw] bucket_key_enabled
|
11282
11355
|
# Specifies whether Amazon S3 should use an S3 Bucket Key for object
|
11283
|
-
# encryption with server-side encryption using
|
11284
|
-
# Setting this header to `true` causes Amazon S3
|
11285
|
-
# Key for object encryption with SSE-KMS.
|
11356
|
+
# encryption with server-side encryption using Key Management Service
|
11357
|
+
# (KMS) keys (SSE-KMS). Setting this header to `true` causes Amazon S3
|
11358
|
+
# to use an S3 Bucket Key for object encryption with SSE-KMS.
|
11286
11359
|
#
|
11287
11360
|
# Specifying this header with a PUT action doesn’t affect bucket-level
|
11288
11361
|
# settings for S3 Bucket Key.
|
@@ -12495,9 +12568,9 @@ module Aws::S3
|
|
12495
12568
|
# Specifies the use of SSE-KMS to encrypt delivered inventory reports.
|
12496
12569
|
#
|
12497
12570
|
# @!attribute [rw] key_id
|
12498
|
-
# Specifies the ID of the
|
12499
|
-
#
|
12500
|
-
#
|
12571
|
+
# Specifies the ID of the Key Management Service (KMS) symmetric
|
12572
|
+
# encryption customer managed key to use for encrypting inventory
|
12573
|
+
# reports.
|
12501
12574
|
# @return [String]
|
12502
12575
|
#
|
12503
12576
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/SSEKMS AWS API Documentation
|
@@ -13171,7 +13244,7 @@ module Aws::S3
|
|
13171
13244
|
#
|
13172
13245
|
# @!attribute [rw] server_side_encryption
|
13173
13246
|
# The server-side encryption algorithm used when storing this object
|
13174
|
-
# in Amazon S3 (for example, AES256
|
13247
|
+
# in Amazon S3 (for example, `AES256`, `aws:kms`).
|
13175
13248
|
# @return [String]
|
13176
13249
|
#
|
13177
13250
|
# @!attribute [rw] sse_customer_algorithm
|
@@ -13188,14 +13261,15 @@ module Aws::S3
|
|
13188
13261
|
# @return [String]
|
13189
13262
|
#
|
13190
13263
|
# @!attribute [rw] ssekms_key_id
|
13191
|
-
# If present, specifies the ID of the
|
13192
|
-
#
|
13193
|
-
#
|
13264
|
+
# If present, specifies the ID of the Key Management Service (KMS)
|
13265
|
+
# symmetric encryption customer managed key that was used for the
|
13266
|
+
# object.
|
13194
13267
|
# @return [String]
|
13195
13268
|
#
|
13196
13269
|
# @!attribute [rw] bucket_key_enabled
|
13197
13270
|
# Indicates whether the multipart upload uses an S3 Bucket Key for
|
13198
|
-
# server-side encryption with
|
13271
|
+
# server-side encryption with Key Management Service (KMS) keys
|
13272
|
+
# (SSE-KMS).
|
13199
13273
|
# @return [Boolean]
|
13200
13274
|
#
|
13201
13275
|
# @!attribute [rw] request_charged
|
@@ -13424,7 +13498,7 @@ module Aws::S3
|
|
13424
13498
|
|
13425
13499
|
# @!attribute [rw] server_side_encryption
|
13426
13500
|
# The server-side encryption algorithm used when storing this object
|
13427
|
-
# in Amazon S3 (for example, AES256
|
13501
|
+
# in Amazon S3 (for example, `AES256`, `aws:kms`).
|
13428
13502
|
# @return [String]
|
13429
13503
|
#
|
13430
13504
|
# @!attribute [rw] etag
|
@@ -13497,14 +13571,14 @@ module Aws::S3
|
|
13497
13571
|
# @return [String]
|
13498
13572
|
#
|
13499
13573
|
# @!attribute [rw] ssekms_key_id
|
13500
|
-
# If present, specifies the ID of the
|
13501
|
-
#
|
13502
|
-
# customer managed key was used for the object.
|
13574
|
+
# If present, specifies the ID of the Key Management Service (KMS)
|
13575
|
+
# symmetric encryption customer managed key was used for the object.
|
13503
13576
|
# @return [String]
|
13504
13577
|
#
|
13505
13578
|
# @!attribute [rw] bucket_key_enabled
|
13506
13579
|
# Indicates whether the multipart upload uses an S3 Bucket Key for
|
13507
|
-
# server-side encryption with
|
13580
|
+
# server-side encryption with Key Management Service (KMS) keys
|
13581
|
+
# (SSE-KMS).
|
13508
13582
|
# @return [Boolean]
|
13509
13583
|
#
|
13510
13584
|
# @!attribute [rw] request_charged
|
data/lib/aws-sdk-s3.rb
CHANGED
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.126.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: 2023-06-
|
11
|
+
date: 2023-06-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-kms
|