aws-sdk-s3 1.169.0 → 1.175.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 +35 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +36 -2
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +5 -0
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +20 -0
- data/lib/aws-sdk-s3/client.rb +1314 -886
- data/lib/aws-sdk-s3/client_api.rb +32 -0
- data/lib/aws-sdk-s3/endpoint_provider.rb +36 -0
- data/lib/aws-sdk-s3/errors.rb +44 -0
- data/lib/aws-sdk-s3/multipart_upload.rb +33 -0
- data/lib/aws-sdk-s3/object.rb +77 -1
- data/lib/aws-sdk-s3/object_summary.rb +74 -0
- data/lib/aws-sdk-s3/object_version.rb +43 -0
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +3 -3
- data/lib/aws-sdk-s3/resource.rb +9 -8
- data/lib/aws-sdk-s3/types.rb +502 -208
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +8 -3
- data/sig/client.rbs +17 -6
- data/sig/errors.rbs +8 -0
- data/sig/multipart_upload.rbs +3 -1
- data/sig/object.rbs +6 -1
- data/sig/object_summary.rbs +6 -1
- data/sig/object_version.rbs +4 -1
- data/sig/resource.rbs +2 -2
- data/sig/types.rbs +26 -3
- metadata +2 -2
data/lib/aws-sdk-s3/types.rb
CHANGED
@@ -55,10 +55,10 @@ module Aws::S3
|
|
55
55
|
#
|
56
56
|
# **Directory buckets** - When you use this operation with a directory
|
57
57
|
# bucket, you must use virtual-hosted-style requests in the format `
|
58
|
-
#
|
58
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
59
59
|
# requests are not supported. Directory bucket names must be unique in
|
60
|
-
# the chosen Availability Zone. Bucket names must
|
61
|
-
#
|
60
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
61
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
62
62
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
63
63
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
64
64
|
# *Amazon S3 User Guide*.
|
@@ -128,6 +128,19 @@ module Aws::S3
|
|
128
128
|
# denied).
|
129
129
|
# @return [String]
|
130
130
|
#
|
131
|
+
# @!attribute [rw] if_match_initiated_time
|
132
|
+
# If present, this header aborts an in progress multipart upload only
|
133
|
+
# if it was initiated on the provided timestamp. If the initiated
|
134
|
+
# timestamp of the multipart upload does not match the provided value,
|
135
|
+
# the operation returns a `412 Precondition Failed` error. If the
|
136
|
+
# initiated timestamp matches or if the multipart upload doesn’t
|
137
|
+
# exist, the operation returns a `204 Success (No Content)` response.
|
138
|
+
#
|
139
|
+
# <note markdown="1"> This functionality is only supported for directory buckets.
|
140
|
+
#
|
141
|
+
# </note>
|
142
|
+
# @return [Time]
|
143
|
+
#
|
131
144
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/AbortMultipartUploadRequest AWS API Documentation
|
132
145
|
#
|
133
146
|
class AbortMultipartUploadRequest < Struct.new(
|
@@ -135,7 +148,8 @@ module Aws::S3
|
|
135
148
|
:key,
|
136
149
|
:upload_id,
|
137
150
|
:request_payer,
|
138
|
-
:expected_bucket_owner
|
151
|
+
:expected_bucket_owner,
|
152
|
+
:if_match_initiated_time)
|
139
153
|
SENSITIVE = []
|
140
154
|
include Aws::Structure
|
141
155
|
end
|
@@ -392,8 +406,8 @@ module Aws::S3
|
|
392
406
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-overview.html
|
393
407
|
#
|
394
408
|
# @!attribute [rw] data_redundancy
|
395
|
-
# The number of Availability Zone that's used
|
396
|
-
# bucket.
|
409
|
+
# The number of Zone (Availability Zone or Local Zone) that's used
|
410
|
+
# for redundancy for the bucket.
|
397
411
|
# @return [String]
|
398
412
|
#
|
399
413
|
# @!attribute [rw] type
|
@@ -929,10 +943,10 @@ module Aws::S3
|
|
929
943
|
#
|
930
944
|
# **Directory buckets** - When you use this operation with a directory
|
931
945
|
# bucket, you must use virtual-hosted-style requests in the format `
|
932
|
-
#
|
946
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
933
947
|
# requests are not supported. Directory bucket names must be unique in
|
934
|
-
# the chosen Availability Zone. Bucket names must
|
935
|
-
#
|
948
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
949
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
936
950
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
937
951
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
938
952
|
# *Amazon S3 User Guide*.
|
@@ -1054,6 +1068,28 @@ module Aws::S3
|
|
1054
1068
|
# denied).
|
1055
1069
|
# @return [String]
|
1056
1070
|
#
|
1071
|
+
# @!attribute [rw] if_match
|
1072
|
+
# Uploads the object only if the ETag (entity tag) value provided
|
1073
|
+
# during the WRITE operation matches the ETag of the object in S3. If
|
1074
|
+
# the ETag values do not match, the operation returns a `412
|
1075
|
+
# Precondition Failed` error.
|
1076
|
+
#
|
1077
|
+
# If a conflicting operation occurs during the upload S3 returns a
|
1078
|
+
# `409 ConditionalRequestConflict` response. On a 409 failure you
|
1079
|
+
# should fetch the object's ETag, re-initiate the multipart upload
|
1080
|
+
# with `CreateMultipartUpload`, and re-upload each part.
|
1081
|
+
#
|
1082
|
+
# Expects the ETag value as a string.
|
1083
|
+
#
|
1084
|
+
# For more information about conditional requests, see [RFC 7232][1],
|
1085
|
+
# or [Conditional requests][2] in the *Amazon S3 User Guide*.
|
1086
|
+
#
|
1087
|
+
#
|
1088
|
+
#
|
1089
|
+
# [1]: https://tools.ietf.org/html/rfc7232
|
1090
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/conditional-requests.html
|
1091
|
+
# @return [String]
|
1092
|
+
#
|
1057
1093
|
# @!attribute [rw] if_none_match
|
1058
1094
|
# Uploads the object only if the object key name does not already
|
1059
1095
|
# exist in the bucket specified. Otherwise, Amazon S3 returns a `412
|
@@ -1134,6 +1170,7 @@ module Aws::S3
|
|
1134
1170
|
:checksum_sha256,
|
1135
1171
|
:request_payer,
|
1136
1172
|
:expected_bucket_owner,
|
1173
|
+
:if_match,
|
1137
1174
|
:if_none_match,
|
1138
1175
|
:sse_customer_algorithm,
|
1139
1176
|
:sse_customer_key,
|
@@ -1316,7 +1353,9 @@ module Aws::S3
|
|
1316
1353
|
# If the object expiration is configured, the response includes this
|
1317
1354
|
# header.
|
1318
1355
|
#
|
1319
|
-
# <note markdown="1">
|
1356
|
+
# <note markdown="1"> Object expiration information is not returned in directory buckets
|
1357
|
+
# and this header returns the value "`NotImplemented`" in all
|
1358
|
+
# responses for directory buckets.
|
1320
1359
|
#
|
1321
1360
|
# </note>
|
1322
1361
|
# @return [String]
|
@@ -1448,14 +1487,22 @@ module Aws::S3
|
|
1448
1487
|
#
|
1449
1488
|
# **Directory buckets** - When you use this operation with a directory
|
1450
1489
|
# bucket, you must use virtual-hosted-style requests in the format `
|
1451
|
-
#
|
1490
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
1452
1491
|
# requests are not supported. Directory bucket names must be unique in
|
1453
|
-
# the chosen Availability Zone. Bucket names must
|
1454
|
-
#
|
1492
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
1493
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
1455
1494
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
1456
1495
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
1457
1496
|
# *Amazon S3 User Guide*.
|
1458
1497
|
#
|
1498
|
+
# <note markdown="1"> Copying objects across different Amazon Web Services Regions isn't
|
1499
|
+
# supported when the source or destination bucket is in Amazon Web
|
1500
|
+
# Services Local Zones. The source and destination buckets must have
|
1501
|
+
# the same parent Amazon Web Services Region. Otherwise, you get an
|
1502
|
+
# HTTP `400 Bad Request` error with the error code `InvalidRequest`.
|
1503
|
+
#
|
1504
|
+
# </note>
|
1505
|
+
#
|
1459
1506
|
# **Access points** - When you use this action with an access point,
|
1460
1507
|
# you must provide the alias of the access point in place of the
|
1461
1508
|
# bucket name or specify the access point ARN. When using the access
|
@@ -2449,11 +2496,20 @@ module Aws::S3
|
|
2449
2496
|
# @!attribute [rw] location
|
2450
2497
|
# Specifies the location where the bucket will be created.
|
2451
2498
|
#
|
2452
|
-
#
|
2499
|
+
# <b>Directory buckets </b> - The location type is Availability Zone
|
2500
|
+
# or Local Zone. When the location type is Local Zone, your Local Zone
|
2501
|
+
# must be in opt-in status. Otherwise, you get an HTTP `400 Bad
|
2502
|
+
# Request` error with the error code `Access denied`. To learn more
|
2503
|
+
# about opt-in Local Zones, see [Opt-in Dedicated Local Zones][1]in
|
2504
|
+
# the *Amazon S3 User Guide*.
|
2453
2505
|
#
|
2454
2506
|
# <note markdown="1"> This functionality is only supported by directory buckets.
|
2455
2507
|
#
|
2456
2508
|
# </note>
|
2509
|
+
#
|
2510
|
+
#
|
2511
|
+
#
|
2512
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/opt-in-directory-bucket-lz.html
|
2457
2513
|
# @return [Types::LocationInfo]
|
2458
2514
|
#
|
2459
2515
|
# @!attribute [rw] bucket
|
@@ -2503,13 +2559,14 @@ module Aws::S3
|
|
2503
2559
|
#
|
2504
2560
|
# <b>Directory buckets </b> - When you use this operation with a
|
2505
2561
|
# directory bucket, you must use path-style requests in the format
|
2506
|
-
# `https://s3express-control.
|
2562
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
2507
2563
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
2508
|
-
# names must be unique in the chosen Availability Zone
|
2509
|
-
# must also follow the format `
|
2510
|
-
#
|
2511
|
-
#
|
2512
|
-
# rules][2] in the
|
2564
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
2565
|
+
# Zone). Bucket names must also follow the format `
|
2566
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
2567
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
2568
|
+
# naming restrictions, see [Directory bucket naming rules][2] in the
|
2569
|
+
# *Amazon S3 User Guide*
|
2513
2570
|
#
|
2514
2571
|
#
|
2515
2572
|
#
|
@@ -2787,10 +2844,10 @@ module Aws::S3
|
|
2787
2844
|
#
|
2788
2845
|
# **Directory buckets** - When you use this operation with a directory
|
2789
2846
|
# bucket, you must use virtual-hosted-style requests in the format `
|
2790
|
-
#
|
2847
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
2791
2848
|
# requests are not supported. Directory bucket names must be unique in
|
2792
|
-
# the chosen Availability Zone. Bucket names must
|
2793
|
-
#
|
2849
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
2850
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
2794
2851
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
2795
2852
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
2796
2853
|
# *Amazon S3 User Guide*.
|
@@ -3694,13 +3751,14 @@ module Aws::S3
|
|
3694
3751
|
#
|
3695
3752
|
# <b>Directory buckets </b> - When you use this operation with a
|
3696
3753
|
# directory bucket, you must use path-style requests in the format
|
3697
|
-
# `https://s3express-control.
|
3754
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
3698
3755
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
3699
|
-
# names must be unique in the chosen Availability Zone
|
3700
|
-
# must also follow the format `
|
3701
|
-
#
|
3702
|
-
#
|
3703
|
-
# rules][1] in the
|
3756
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
3757
|
+
# Zone). Bucket names must also follow the format `
|
3758
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
3759
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
3760
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
3761
|
+
# *Amazon S3 User Guide*
|
3704
3762
|
#
|
3705
3763
|
#
|
3706
3764
|
#
|
@@ -3782,6 +3840,11 @@ module Aws::S3
|
|
3782
3840
|
# you provide does not match the actual owner of the bucket, the
|
3783
3841
|
# request fails with the HTTP status code `403 Forbidden` (access
|
3784
3842
|
# denied).
|
3843
|
+
#
|
3844
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
3845
|
+
# supported for directory bucket lifecycle configurations.
|
3846
|
+
#
|
3847
|
+
# </note>
|
3785
3848
|
# @return [String]
|
3786
3849
|
#
|
3787
3850
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/DeleteBucketLifecycleRequest AWS API Documentation
|
@@ -3846,13 +3909,14 @@ module Aws::S3
|
|
3846
3909
|
#
|
3847
3910
|
# <b>Directory buckets </b> - When you use this operation with a
|
3848
3911
|
# directory bucket, you must use path-style requests in the format
|
3849
|
-
# `https://s3express-control.
|
3912
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
3850
3913
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
3851
|
-
# names must be unique in the chosen Availability Zone
|
3852
|
-
# must also follow the format `
|
3853
|
-
#
|
3854
|
-
#
|
3855
|
-
# rules][1] in the
|
3914
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
3915
|
+
# Zone). Bucket names must also follow the format `
|
3916
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
3917
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
3918
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
3919
|
+
# *Amazon S3 User Guide*
|
3856
3920
|
#
|
3857
3921
|
#
|
3858
3922
|
#
|
@@ -3906,13 +3970,14 @@ module Aws::S3
|
|
3906
3970
|
#
|
3907
3971
|
# <b>Directory buckets </b> - When you use this operation with a
|
3908
3972
|
# directory bucket, you must use path-style requests in the format
|
3909
|
-
# `https://s3express-control.
|
3973
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
3910
3974
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
3911
|
-
# names must be unique in the chosen Availability Zone
|
3912
|
-
# must also follow the format `
|
3913
|
-
#
|
3914
|
-
#
|
3915
|
-
# rules][1] in the
|
3975
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
3976
|
+
# Zone). Bucket names must also follow the format `
|
3977
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
3978
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
3979
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
3980
|
+
# *Amazon S3 User Guide*
|
3916
3981
|
#
|
3917
3982
|
#
|
3918
3983
|
#
|
@@ -4100,10 +4165,10 @@ module Aws::S3
|
|
4100
4165
|
#
|
4101
4166
|
# **Directory buckets** - When you use this operation with a directory
|
4102
4167
|
# bucket, you must use virtual-hosted-style requests in the format `
|
4103
|
-
#
|
4168
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
4104
4169
|
# requests are not supported. Directory bucket names must be unique in
|
4105
|
-
# the chosen Availability Zone. Bucket names must
|
4106
|
-
#
|
4170
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
4171
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
4107
4172
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
4108
4173
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
4109
4174
|
# *Amazon S3 User Guide*.
|
@@ -4199,6 +4264,52 @@ module Aws::S3
|
|
4199
4264
|
# denied).
|
4200
4265
|
# @return [String]
|
4201
4266
|
#
|
4267
|
+
# @!attribute [rw] if_match
|
4268
|
+
# The `If-Match` header field makes the request method conditional on
|
4269
|
+
# ETags. If the ETag value does not match, the operation returns a
|
4270
|
+
# `412 Precondition Failed` error. If the ETag matches or if the
|
4271
|
+
# object doesn't exist, the operation will return a `204 Success (No
|
4272
|
+
# Content) response`.
|
4273
|
+
#
|
4274
|
+
# For more information about conditional requests, see [RFC 7232][1].
|
4275
|
+
#
|
4276
|
+
# <note markdown="1"> This functionality is only supported for directory buckets.
|
4277
|
+
#
|
4278
|
+
# </note>
|
4279
|
+
#
|
4280
|
+
#
|
4281
|
+
#
|
4282
|
+
# [1]: https://docs.aws.amazon.com/https:/tools.ietf.org/html/rfc7232
|
4283
|
+
# @return [String]
|
4284
|
+
#
|
4285
|
+
# @!attribute [rw] if_match_last_modified_time
|
4286
|
+
# If present, the object is deleted only if its modification times
|
4287
|
+
# matches the provided `Timestamp`. If the `Timestamp` values do not
|
4288
|
+
# match, the operation returns a `412 Precondition Failed` error. If
|
4289
|
+
# the `Timestamp` matches or if the object doesn’t exist, the
|
4290
|
+
# operation returns a `204 Success (No Content)` response.
|
4291
|
+
#
|
4292
|
+
# <note markdown="1"> This functionality is only supported for directory buckets.
|
4293
|
+
#
|
4294
|
+
# </note>
|
4295
|
+
# @return [Time]
|
4296
|
+
#
|
4297
|
+
# @!attribute [rw] if_match_size
|
4298
|
+
# If present, the object is deleted only if its size matches the
|
4299
|
+
# provided size in bytes. If the `Size` value does not match, the
|
4300
|
+
# operation returns a `412 Precondition Failed` error. If the `Size`
|
4301
|
+
# matches or if the object doesn’t exist, the operation returns a `204
|
4302
|
+
# Success (No Content)` response.
|
4303
|
+
#
|
4304
|
+
# <note markdown="1"> This functionality is only supported for directory buckets.
|
4305
|
+
#
|
4306
|
+
# </note>
|
4307
|
+
#
|
4308
|
+
# You can use the `If-Match`, `x-amz-if-match-last-modified-time` and
|
4309
|
+
# `x-amz-if-match-size` conditional headers in conjunction with
|
4310
|
+
# each-other or individually.
|
4311
|
+
# @return [Integer]
|
4312
|
+
#
|
4202
4313
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/DeleteObjectRequest AWS API Documentation
|
4203
4314
|
#
|
4204
4315
|
class DeleteObjectRequest < Struct.new(
|
@@ -4208,7 +4319,10 @@ module Aws::S3
|
|
4208
4319
|
:version_id,
|
4209
4320
|
:request_payer,
|
4210
4321
|
:bypass_governance_retention,
|
4211
|
-
:expected_bucket_owner
|
4322
|
+
:expected_bucket_owner,
|
4323
|
+
:if_match,
|
4324
|
+
:if_match_last_modified_time,
|
4325
|
+
:if_match_size)
|
4212
4326
|
SENSITIVE = []
|
4213
4327
|
include Aws::Structure
|
4214
4328
|
end
|
@@ -4316,10 +4430,10 @@ module Aws::S3
|
|
4316
4430
|
#
|
4317
4431
|
# **Directory buckets** - When you use this operation with a directory
|
4318
4432
|
# bucket, you must use virtual-hosted-style requests in the format `
|
4319
|
-
#
|
4433
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
4320
4434
|
# requests are not supported. Directory bucket names must be unique in
|
4321
|
-
# the chosen Availability Zone. Bucket names must
|
4322
|
-
#
|
4435
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
4436
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
4323
4437
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
4324
4438
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
4325
4439
|
# *Amazon S3 User Guide*.
|
@@ -4684,6 +4798,14 @@ module Aws::S3
|
|
4684
4798
|
include Aws::Structure
|
4685
4799
|
end
|
4686
4800
|
|
4801
|
+
# The existing object was created with a different encryption type.
|
4802
|
+
# Subsequent write requests must include the appropriate encryption
|
4803
|
+
# parameters in the request or while creating the session.
|
4804
|
+
#
|
4805
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/EncryptionTypeMismatch AWS API Documentation
|
4806
|
+
#
|
4807
|
+
class EncryptionTypeMismatch < Aws::EmptyStructure; end
|
4808
|
+
|
4687
4809
|
# A message that indicates the request is complete and no more messages
|
4688
4810
|
# will be sent. You should not assume that the request is complete until
|
4689
4811
|
# the client receives an `EndEvent`.
|
@@ -4723,7 +4845,6 @@ module Aws::S3
|
|
4723
4845
|
# * *HTTP Status Code:* 403 Forbidden
|
4724
4846
|
#
|
4725
4847
|
# * *SOAP Fault Code Prefix:* Client
|
4726
|
-
#
|
4727
4848
|
# * * *Code:* AccountProblem
|
4728
4849
|
#
|
4729
4850
|
# * *Description:* There is a problem with your Amazon Web Services
|
@@ -4733,7 +4854,6 @@ module Aws::S3
|
|
4733
4854
|
# * *HTTP Status Code:* 403 Forbidden
|
4734
4855
|
#
|
4735
4856
|
# * *SOAP Fault Code Prefix:* Client
|
4736
|
-
#
|
4737
4857
|
# * * *Code:* AllAccessDisabled
|
4738
4858
|
#
|
4739
4859
|
# * *Description:* All access to this Amazon S3 resource has been
|
@@ -4743,7 +4863,6 @@ module Aws::S3
|
|
4743
4863
|
# * *HTTP Status Code:* 403 Forbidden
|
4744
4864
|
#
|
4745
4865
|
# * *SOAP Fault Code Prefix:* Client
|
4746
|
-
#
|
4747
4866
|
# * * *Code:* AmbiguousGrantByEmailAddress
|
4748
4867
|
#
|
4749
4868
|
# * *Description:* The email address you provided is associated with
|
@@ -4752,7 +4871,6 @@ module Aws::S3
|
|
4752
4871
|
# * *HTTP Status Code:* 400 Bad Request
|
4753
4872
|
#
|
4754
4873
|
# * *SOAP Fault Code Prefix:* Client
|
4755
|
-
#
|
4756
4874
|
# * * *Code:* AuthorizationHeaderMalformed
|
4757
4875
|
#
|
4758
4876
|
# * *Description:* The authorization header you provided is invalid.
|
@@ -4760,7 +4878,6 @@ module Aws::S3
|
|
4760
4878
|
# * *HTTP Status Code:* 400 Bad Request
|
4761
4879
|
#
|
4762
4880
|
# * *HTTP Status Code:* N/A
|
4763
|
-
#
|
4764
4881
|
# * * *Code:* BadDigest
|
4765
4882
|
#
|
4766
4883
|
# * *Description:* The Content-MD5 you specified did not match what
|
@@ -4769,7 +4886,6 @@ module Aws::S3
|
|
4769
4886
|
# * *HTTP Status Code:* 400 Bad Request
|
4770
4887
|
#
|
4771
4888
|
# * *SOAP Fault Code Prefix:* Client
|
4772
|
-
#
|
4773
4889
|
# * * *Code:* BucketAlreadyExists
|
4774
4890
|
#
|
4775
4891
|
# * *Description:* The requested bucket name is not available. The
|
@@ -4779,7 +4895,6 @@ module Aws::S3
|
|
4779
4895
|
# * *HTTP Status Code:* 409 Conflict
|
4780
4896
|
#
|
4781
4897
|
# * *SOAP Fault Code Prefix:* Client
|
4782
|
-
#
|
4783
4898
|
# * * *Code:* BucketAlreadyOwnedByYou
|
4784
4899
|
#
|
4785
4900
|
# * *Description:* The bucket you tried to create already exists,
|
@@ -4793,7 +4908,6 @@ module Aws::S3
|
|
4793
4908
|
# Region)
|
4794
4909
|
#
|
4795
4910
|
# * *SOAP Fault Code Prefix:* Client
|
4796
|
-
#
|
4797
4911
|
# * * *Code:* BucketNotEmpty
|
4798
4912
|
#
|
4799
4913
|
# * *Description:* The bucket you tried to delete is not empty.
|
@@ -4801,7 +4915,6 @@ module Aws::S3
|
|
4801
4915
|
# * *HTTP Status Code:* 409 Conflict
|
4802
4916
|
#
|
4803
4917
|
# * *SOAP Fault Code Prefix:* Client
|
4804
|
-
#
|
4805
4918
|
# * * *Code:* CredentialsNotSupported
|
4806
4919
|
#
|
4807
4920
|
# * *Description:* This request does not support credentials.
|
@@ -4809,7 +4922,6 @@ module Aws::S3
|
|
4809
4922
|
# * *HTTP Status Code:* 400 Bad Request
|
4810
4923
|
#
|
4811
4924
|
# * *SOAP Fault Code Prefix:* Client
|
4812
|
-
#
|
4813
4925
|
# * * *Code:* CrossLocationLoggingProhibited
|
4814
4926
|
#
|
4815
4927
|
# * *Description:* Cross-location logging not allowed. Buckets in
|
@@ -4819,7 +4931,6 @@ module Aws::S3
|
|
4819
4931
|
# * *HTTP Status Code:* 403 Forbidden
|
4820
4932
|
#
|
4821
4933
|
# * *SOAP Fault Code Prefix:* Client
|
4822
|
-
#
|
4823
4934
|
# * * *Code:* EntityTooSmall
|
4824
4935
|
#
|
4825
4936
|
# * *Description:* Your proposed upload is smaller than the minimum
|
@@ -4828,7 +4939,6 @@ module Aws::S3
|
|
4828
4939
|
# * *HTTP Status Code:* 400 Bad Request
|
4829
4940
|
#
|
4830
4941
|
# * *SOAP Fault Code Prefix:* Client
|
4831
|
-
#
|
4832
4942
|
# * * *Code:* EntityTooLarge
|
4833
4943
|
#
|
4834
4944
|
# * *Description:* Your proposed upload exceeds the maximum allowed
|
@@ -4837,7 +4947,6 @@ module Aws::S3
|
|
4837
4947
|
# * *HTTP Status Code:* 400 Bad Request
|
4838
4948
|
#
|
4839
4949
|
# * *SOAP Fault Code Prefix:* Client
|
4840
|
-
#
|
4841
4950
|
# * * *Code:* ExpiredToken
|
4842
4951
|
#
|
4843
4952
|
# * *Description:* The provided token has expired.
|
@@ -4845,7 +4954,6 @@ module Aws::S3
|
|
4845
4954
|
# * *HTTP Status Code:* 400 Bad Request
|
4846
4955
|
#
|
4847
4956
|
# * *SOAP Fault Code Prefix:* Client
|
4848
|
-
#
|
4849
4957
|
# * * *Code:* IllegalVersioningConfigurationException
|
4850
4958
|
#
|
4851
4959
|
# * *Description:* Indicates that the versioning configuration
|
@@ -4854,7 +4962,6 @@ module Aws::S3
|
|
4854
4962
|
# * *HTTP Status Code:* 400 Bad Request
|
4855
4963
|
#
|
4856
4964
|
# * *SOAP Fault Code Prefix:* Client
|
4857
|
-
#
|
4858
4965
|
# * * *Code:* IncompleteBody
|
4859
4966
|
#
|
4860
4967
|
# * *Description:* You did not provide the number of bytes specified
|
@@ -4863,7 +4970,6 @@ module Aws::S3
|
|
4863
4970
|
# * *HTTP Status Code:* 400 Bad Request
|
4864
4971
|
#
|
4865
4972
|
# * *SOAP Fault Code Prefix:* Client
|
4866
|
-
#
|
4867
4973
|
# * * *Code:* IncorrectNumberOfFilesInPostRequest
|
4868
4974
|
#
|
4869
4975
|
# * *Description:* POST requires exactly one file upload per
|
@@ -4872,7 +4978,6 @@ module Aws::S3
|
|
4872
4978
|
# * *HTTP Status Code:* 400 Bad Request
|
4873
4979
|
#
|
4874
4980
|
# * *SOAP Fault Code Prefix:* Client
|
4875
|
-
#
|
4876
4981
|
# * * *Code:* InlineDataTooLarge
|
4877
4982
|
#
|
4878
4983
|
# * *Description:* Inline data exceeds the maximum allowed size.
|
@@ -4880,7 +4985,6 @@ module Aws::S3
|
|
4880
4985
|
# * *HTTP Status Code:* 400 Bad Request
|
4881
4986
|
#
|
4882
4987
|
# * *SOAP Fault Code Prefix:* Client
|
4883
|
-
#
|
4884
4988
|
# * * *Code:* InternalError
|
4885
4989
|
#
|
4886
4990
|
# * *Description:* We encountered an internal error. Please try
|
@@ -4889,7 +4993,6 @@ module Aws::S3
|
|
4889
4993
|
# * *HTTP Status Code:* 500 Internal Server Error
|
4890
4994
|
#
|
4891
4995
|
# * *SOAP Fault Code Prefix:* Server
|
4892
|
-
#
|
4893
4996
|
# * * *Code:* InvalidAccessKeyId
|
4894
4997
|
#
|
4895
4998
|
# * *Description:* The Amazon Web Services access key ID you
|
@@ -4898,7 +5001,6 @@ module Aws::S3
|
|
4898
5001
|
# * *HTTP Status Code:* 403 Forbidden
|
4899
5002
|
#
|
4900
5003
|
# * *SOAP Fault Code Prefix:* Client
|
4901
|
-
#
|
4902
5004
|
# * * *Code:* InvalidAddressingHeader
|
4903
5005
|
#
|
4904
5006
|
# * *Description:* You must specify the Anonymous role.
|
@@ -4906,7 +5008,6 @@ module Aws::S3
|
|
4906
5008
|
# * *HTTP Status Code:* N/A
|
4907
5009
|
#
|
4908
5010
|
# * *SOAP Fault Code Prefix:* Client
|
4909
|
-
#
|
4910
5011
|
# * * *Code:* InvalidArgument
|
4911
5012
|
#
|
4912
5013
|
# * *Description:* Invalid Argument
|
@@ -4914,7 +5015,6 @@ module Aws::S3
|
|
4914
5015
|
# * *HTTP Status Code:* 400 Bad Request
|
4915
5016
|
#
|
4916
5017
|
# * *SOAP Fault Code Prefix:* Client
|
4917
|
-
#
|
4918
5018
|
# * * *Code:* InvalidBucketName
|
4919
5019
|
#
|
4920
5020
|
# * *Description:* The specified bucket is not valid.
|
@@ -4922,7 +5022,6 @@ module Aws::S3
|
|
4922
5022
|
# * *HTTP Status Code:* 400 Bad Request
|
4923
5023
|
#
|
4924
5024
|
# * *SOAP Fault Code Prefix:* Client
|
4925
|
-
#
|
4926
5025
|
# * * *Code:* InvalidBucketState
|
4927
5026
|
#
|
4928
5027
|
# * *Description:* The request is not valid with the current state
|
@@ -4931,7 +5030,6 @@ module Aws::S3
|
|
4931
5030
|
# * *HTTP Status Code:* 409 Conflict
|
4932
5031
|
#
|
4933
5032
|
# * *SOAP Fault Code Prefix:* Client
|
4934
|
-
#
|
4935
5033
|
# * * *Code:* InvalidDigest
|
4936
5034
|
#
|
4937
5035
|
# * *Description:* The Content-MD5 you specified is not valid.
|
@@ -4939,7 +5037,6 @@ module Aws::S3
|
|
4939
5037
|
# * *HTTP Status Code:* 400 Bad Request
|
4940
5038
|
#
|
4941
5039
|
# * *SOAP Fault Code Prefix:* Client
|
4942
|
-
#
|
4943
5040
|
# * * *Code:* InvalidEncryptionAlgorithmError
|
4944
5041
|
#
|
4945
5042
|
# * *Description:* The encryption request you specified is not
|
@@ -4948,7 +5045,6 @@ module Aws::S3
|
|
4948
5045
|
# * *HTTP Status Code:* 400 Bad Request
|
4949
5046
|
#
|
4950
5047
|
# * *SOAP Fault Code Prefix:* Client
|
4951
|
-
#
|
4952
5048
|
# * * *Code:* InvalidLocationConstraint
|
4953
5049
|
#
|
4954
5050
|
# * *Description:* The specified location constraint is not valid.
|
@@ -4958,7 +5054,6 @@ module Aws::S3
|
|
4958
5054
|
# * *HTTP Status Code:* 400 Bad Request
|
4959
5055
|
#
|
4960
5056
|
# * *SOAP Fault Code Prefix:* Client
|
4961
|
-
#
|
4962
5057
|
# * * *Code:* InvalidObjectState
|
4963
5058
|
#
|
4964
5059
|
# * *Description:* The action is not valid for the current state of
|
@@ -4967,7 +5062,6 @@ module Aws::S3
|
|
4967
5062
|
# * *HTTP Status Code:* 403 Forbidden
|
4968
5063
|
#
|
4969
5064
|
# * *SOAP Fault Code Prefix:* Client
|
4970
|
-
#
|
4971
5065
|
# * * *Code:* InvalidPart
|
4972
5066
|
#
|
4973
5067
|
# * *Description:* One or more of the specified parts could not be
|
@@ -4977,7 +5071,6 @@ module Aws::S3
|
|
4977
5071
|
# * *HTTP Status Code:* 400 Bad Request
|
4978
5072
|
#
|
4979
5073
|
# * *SOAP Fault Code Prefix:* Client
|
4980
|
-
#
|
4981
5074
|
# * * *Code:* InvalidPartOrder
|
4982
5075
|
#
|
4983
5076
|
# * *Description:* The list of parts was not in ascending order.
|
@@ -4986,7 +5079,6 @@ module Aws::S3
|
|
4986
5079
|
# * *HTTP Status Code:* 400 Bad Request
|
4987
5080
|
#
|
4988
5081
|
# * *SOAP Fault Code Prefix:* Client
|
4989
|
-
#
|
4990
5082
|
# * * *Code:* InvalidPayer
|
4991
5083
|
#
|
4992
5084
|
# * *Description:* All access to this object has been disabled.
|
@@ -4996,7 +5088,6 @@ module Aws::S3
|
|
4996
5088
|
# * *HTTP Status Code:* 403 Forbidden
|
4997
5089
|
#
|
4998
5090
|
# * *SOAP Fault Code Prefix:* Client
|
4999
|
-
#
|
5000
5091
|
# * * *Code:* InvalidPolicyDocument
|
5001
5092
|
#
|
5002
5093
|
# * *Description:* The content of the form does not meet the
|
@@ -5005,7 +5096,6 @@ module Aws::S3
|
|
5005
5096
|
# * *HTTP Status Code:* 400 Bad Request
|
5006
5097
|
#
|
5007
5098
|
# * *SOAP Fault Code Prefix:* Client
|
5008
|
-
#
|
5009
5099
|
# * * *Code:* InvalidRange
|
5010
5100
|
#
|
5011
5101
|
# * *Description:* The requested range cannot be satisfied.
|
@@ -5013,7 +5103,6 @@ module Aws::S3
|
|
5013
5103
|
# * *HTTP Status Code:* 416 Requested Range Not Satisfiable
|
5014
5104
|
#
|
5015
5105
|
# * *SOAP Fault Code Prefix:* Client
|
5016
|
-
#
|
5017
5106
|
# * * *Code:* InvalidRequest
|
5018
5107
|
#
|
5019
5108
|
# * *Description:* Please use `AWS4-HMAC-SHA256`.
|
@@ -5021,7 +5110,6 @@ module Aws::S3
|
|
5021
5110
|
# * *HTTP Status Code:* 400 Bad Request
|
5022
5111
|
#
|
5023
5112
|
# * *Code:* N/A
|
5024
|
-
#
|
5025
5113
|
# * * *Code:* InvalidRequest
|
5026
5114
|
#
|
5027
5115
|
# * *Description:* SOAP requests must be made over an HTTPS
|
@@ -5030,7 +5118,6 @@ module Aws::S3
|
|
5030
5118
|
# * *HTTP Status Code:* 400 Bad Request
|
5031
5119
|
#
|
5032
5120
|
# * *SOAP Fault Code Prefix:* Client
|
5033
|
-
#
|
5034
5121
|
# * * *Code:* InvalidRequest
|
5035
5122
|
#
|
5036
5123
|
# * *Description:* Amazon S3 Transfer Acceleration is not supported
|
@@ -5039,7 +5126,6 @@ module Aws::S3
|
|
5039
5126
|
# * *HTTP Status Code:* 400 Bad Request
|
5040
5127
|
#
|
5041
5128
|
# * *Code:* N/A
|
5042
|
-
#
|
5043
5129
|
# * * *Code:* InvalidRequest
|
5044
5130
|
#
|
5045
5131
|
# * *Description:* Amazon S3 Transfer Acceleration is not supported
|
@@ -5048,7 +5134,6 @@ module Aws::S3
|
|
5048
5134
|
# * *HTTP Status Code:* 400 Bad Request
|
5049
5135
|
#
|
5050
5136
|
# * *Code:* N/A
|
5051
|
-
#
|
5052
5137
|
# * * *Code:* InvalidRequest
|
5053
5138
|
#
|
5054
5139
|
# * *Description:* Amazon S3 Transfer Accelerate endpoint only
|
@@ -5057,7 +5142,6 @@ module Aws::S3
|
|
5057
5142
|
# * *HTTP Status Code:* 400 Bad Request
|
5058
5143
|
#
|
5059
5144
|
# * *Code:* N/A
|
5060
|
-
#
|
5061
5145
|
# * * *Code:* InvalidRequest
|
5062
5146
|
#
|
5063
5147
|
# * *Description:* Amazon S3 Transfer Accelerate is not configured
|
@@ -5066,7 +5150,6 @@ module Aws::S3
|
|
5066
5150
|
# * *HTTP Status Code:* 400 Bad Request
|
5067
5151
|
#
|
5068
5152
|
# * *Code:* N/A
|
5069
|
-
#
|
5070
5153
|
# * * *Code:* InvalidRequest
|
5071
5154
|
#
|
5072
5155
|
# * *Description:* Amazon S3 Transfer Accelerate is disabled on this
|
@@ -5075,7 +5158,6 @@ module Aws::S3
|
|
5075
5158
|
# * *HTTP Status Code:* 400 Bad Request
|
5076
5159
|
#
|
5077
5160
|
# * *Code:* N/A
|
5078
|
-
#
|
5079
5161
|
# * * *Code:* InvalidRequest
|
5080
5162
|
#
|
5081
5163
|
# * *Description:* Amazon S3 Transfer Acceleration is not supported
|
@@ -5085,7 +5167,6 @@ module Aws::S3
|
|
5085
5167
|
# * *HTTP Status Code:* 400 Bad Request
|
5086
5168
|
#
|
5087
5169
|
# * *Code:* N/A
|
5088
|
-
#
|
5089
5170
|
# * * *Code:* InvalidRequest
|
5090
5171
|
#
|
5091
5172
|
# * *Description:* Amazon S3 Transfer Acceleration cannot be enabled
|
@@ -5095,7 +5176,6 @@ module Aws::S3
|
|
5095
5176
|
# * *HTTP Status Code:* 400 Bad Request
|
5096
5177
|
#
|
5097
5178
|
# * *Code:* N/A
|
5098
|
-
#
|
5099
5179
|
# * * *Code:* InvalidSecurity
|
5100
5180
|
#
|
5101
5181
|
# * *Description:* The provided security credentials are not valid.
|
@@ -5103,7 +5183,6 @@ module Aws::S3
|
|
5103
5183
|
# * *HTTP Status Code:* 403 Forbidden
|
5104
5184
|
#
|
5105
5185
|
# * *SOAP Fault Code Prefix:* Client
|
5106
|
-
#
|
5107
5186
|
# * * *Code:* InvalidSOAPRequest
|
5108
5187
|
#
|
5109
5188
|
# * *Description:* The SOAP request body is invalid.
|
@@ -5111,7 +5190,6 @@ module Aws::S3
|
|
5111
5190
|
# * *HTTP Status Code:* 400 Bad Request
|
5112
5191
|
#
|
5113
5192
|
# * *SOAP Fault Code Prefix:* Client
|
5114
|
-
#
|
5115
5193
|
# * * *Code:* InvalidStorageClass
|
5116
5194
|
#
|
5117
5195
|
# * *Description:* The storage class you specified is not valid.
|
@@ -5119,7 +5197,6 @@ module Aws::S3
|
|
5119
5197
|
# * *HTTP Status Code:* 400 Bad Request
|
5120
5198
|
#
|
5121
5199
|
# * *SOAP Fault Code Prefix:* Client
|
5122
|
-
#
|
5123
5200
|
# * * *Code:* InvalidTargetBucketForLogging
|
5124
5201
|
#
|
5125
5202
|
# * *Description:* The target bucket for logging does not exist, is
|
@@ -5129,7 +5206,6 @@ module Aws::S3
|
|
5129
5206
|
# * *HTTP Status Code:* 400 Bad Request
|
5130
5207
|
#
|
5131
5208
|
# * *SOAP Fault Code Prefix:* Client
|
5132
|
-
#
|
5133
5209
|
# * * *Code:* InvalidToken
|
5134
5210
|
#
|
5135
5211
|
# * *Description:* The provided token is malformed or otherwise
|
@@ -5138,7 +5214,6 @@ module Aws::S3
|
|
5138
5214
|
# * *HTTP Status Code:* 400 Bad Request
|
5139
5215
|
#
|
5140
5216
|
# * *SOAP Fault Code Prefix:* Client
|
5141
|
-
#
|
5142
5217
|
# * * *Code:* InvalidURI
|
5143
5218
|
#
|
5144
5219
|
# * *Description:* Couldn't parse the specified URI.
|
@@ -5146,7 +5221,6 @@ module Aws::S3
|
|
5146
5221
|
# * *HTTP Status Code:* 400 Bad Request
|
5147
5222
|
#
|
5148
5223
|
# * *SOAP Fault Code Prefix:* Client
|
5149
|
-
#
|
5150
5224
|
# * * *Code:* KeyTooLongError
|
5151
5225
|
#
|
5152
5226
|
# * *Description:* Your key is too long.
|
@@ -5154,7 +5228,6 @@ module Aws::S3
|
|
5154
5228
|
# * *HTTP Status Code:* 400 Bad Request
|
5155
5229
|
#
|
5156
5230
|
# * *SOAP Fault Code Prefix:* Client
|
5157
|
-
#
|
5158
5231
|
# * * *Code:* MalformedACLError
|
5159
5232
|
#
|
5160
5233
|
# * *Description:* The XML you provided was not well-formed or did
|
@@ -5163,7 +5236,6 @@ module Aws::S3
|
|
5163
5236
|
# * *HTTP Status Code:* 400 Bad Request
|
5164
5237
|
#
|
5165
5238
|
# * *SOAP Fault Code Prefix:* Client
|
5166
|
-
#
|
5167
5239
|
# * * *Code:* MalformedPOSTRequest
|
5168
5240
|
#
|
5169
5241
|
# * *Description:* The body of your POST request is not well-formed
|
@@ -5172,7 +5244,6 @@ module Aws::S3
|
|
5172
5244
|
# * *HTTP Status Code:* 400 Bad Request
|
5173
5245
|
#
|
5174
5246
|
# * *SOAP Fault Code Prefix:* Client
|
5175
|
-
#
|
5176
5247
|
# * * *Code:* MalformedXML
|
5177
5248
|
#
|
5178
5249
|
# * *Description:* This happens when the user sends malformed XML
|
@@ -5184,7 +5255,6 @@ module Aws::S3
|
|
5184
5255
|
# * *HTTP Status Code:* 400 Bad Request
|
5185
5256
|
#
|
5186
5257
|
# * *SOAP Fault Code Prefix:* Client
|
5187
|
-
#
|
5188
5258
|
# * * *Code:* MaxMessageLengthExceeded
|
5189
5259
|
#
|
5190
5260
|
# * *Description:* Your request was too big.
|
@@ -5192,7 +5262,6 @@ module Aws::S3
|
|
5192
5262
|
# * *HTTP Status Code:* 400 Bad Request
|
5193
5263
|
#
|
5194
5264
|
# * *SOAP Fault Code Prefix:* Client
|
5195
|
-
#
|
5196
5265
|
# * * *Code:* MaxPostPreDataLengthExceededError
|
5197
5266
|
#
|
5198
5267
|
# * *Description:* Your POST request fields preceding the upload
|
@@ -5201,7 +5270,6 @@ module Aws::S3
|
|
5201
5270
|
# * *HTTP Status Code:* 400 Bad Request
|
5202
5271
|
#
|
5203
5272
|
# * *SOAP Fault Code Prefix:* Client
|
5204
|
-
#
|
5205
5273
|
# * * *Code:* MetadataTooLarge
|
5206
5274
|
#
|
5207
5275
|
# * *Description:* Your metadata headers exceed the maximum allowed
|
@@ -5210,7 +5278,6 @@ module Aws::S3
|
|
5210
5278
|
# * *HTTP Status Code:* 400 Bad Request
|
5211
5279
|
#
|
5212
5280
|
# * *SOAP Fault Code Prefix:* Client
|
5213
|
-
#
|
5214
5281
|
# * * *Code:* MethodNotAllowed
|
5215
5282
|
#
|
5216
5283
|
# * *Description:* The specified method is not allowed against this
|
@@ -5219,7 +5286,6 @@ module Aws::S3
|
|
5219
5286
|
# * *HTTP Status Code:* 405 Method Not Allowed
|
5220
5287
|
#
|
5221
5288
|
# * *SOAP Fault Code Prefix:* Client
|
5222
|
-
#
|
5223
5289
|
# * * *Code:* MissingAttachment
|
5224
5290
|
#
|
5225
5291
|
# * *Description:* A SOAP attachment was expected, but none were
|
@@ -5228,7 +5294,6 @@ module Aws::S3
|
|
5228
5294
|
# * *HTTP Status Code:* N/A
|
5229
5295
|
#
|
5230
5296
|
# * *SOAP Fault Code Prefix:* Client
|
5231
|
-
#
|
5232
5297
|
# * * *Code:* MissingContentLength
|
5233
5298
|
#
|
5234
5299
|
# * *Description:* You must provide the Content-Length HTTP header.
|
@@ -5236,7 +5301,6 @@ module Aws::S3
|
|
5236
5301
|
# * *HTTP Status Code:* 411 Length Required
|
5237
5302
|
#
|
5238
5303
|
# * *SOAP Fault Code Prefix:* Client
|
5239
|
-
#
|
5240
5304
|
# * * *Code:* MissingRequestBodyError
|
5241
5305
|
#
|
5242
5306
|
# * *Description:* This happens when the user sends an empty XML
|
@@ -5246,7 +5310,6 @@ module Aws::S3
|
|
5246
5310
|
# * *HTTP Status Code:* 400 Bad Request
|
5247
5311
|
#
|
5248
5312
|
# * *SOAP Fault Code Prefix:* Client
|
5249
|
-
#
|
5250
5313
|
# * * *Code:* MissingSecurityElement
|
5251
5314
|
#
|
5252
5315
|
# * *Description:* The SOAP 1.1 request is missing a security
|
@@ -5255,7 +5318,6 @@ module Aws::S3
|
|
5255
5318
|
# * *HTTP Status Code:* 400 Bad Request
|
5256
5319
|
#
|
5257
5320
|
# * *SOAP Fault Code Prefix:* Client
|
5258
|
-
#
|
5259
5321
|
# * * *Code:* MissingSecurityHeader
|
5260
5322
|
#
|
5261
5323
|
# * *Description:* Your request is missing a required header.
|
@@ -5263,7 +5325,6 @@ module Aws::S3
|
|
5263
5325
|
# * *HTTP Status Code:* 400 Bad Request
|
5264
5326
|
#
|
5265
5327
|
# * *SOAP Fault Code Prefix:* Client
|
5266
|
-
#
|
5267
5328
|
# * * *Code:* NoLoggingStatusForKey
|
5268
5329
|
#
|
5269
5330
|
# * *Description:* There is no such thing as a logging status
|
@@ -5272,7 +5333,6 @@ module Aws::S3
|
|
5272
5333
|
# * *HTTP Status Code:* 400 Bad Request
|
5273
5334
|
#
|
5274
5335
|
# * *SOAP Fault Code Prefix:* Client
|
5275
|
-
#
|
5276
5336
|
# * * *Code:* NoSuchBucket
|
5277
5337
|
#
|
5278
5338
|
# * *Description:* The specified bucket does not exist.
|
@@ -5280,7 +5340,6 @@ module Aws::S3
|
|
5280
5340
|
# * *HTTP Status Code:* 404 Not Found
|
5281
5341
|
#
|
5282
5342
|
# * *SOAP Fault Code Prefix:* Client
|
5283
|
-
#
|
5284
5343
|
# * * *Code:* NoSuchBucketPolicy
|
5285
5344
|
#
|
5286
5345
|
# * *Description:* The specified bucket does not have a bucket
|
@@ -5289,7 +5348,6 @@ module Aws::S3
|
|
5289
5348
|
# * *HTTP Status Code:* 404 Not Found
|
5290
5349
|
#
|
5291
5350
|
# * *SOAP Fault Code Prefix:* Client
|
5292
|
-
#
|
5293
5351
|
# * * *Code:* NoSuchKey
|
5294
5352
|
#
|
5295
5353
|
# * *Description:* The specified key does not exist.
|
@@ -5297,7 +5355,6 @@ module Aws::S3
|
|
5297
5355
|
# * *HTTP Status Code:* 404 Not Found
|
5298
5356
|
#
|
5299
5357
|
# * *SOAP Fault Code Prefix:* Client
|
5300
|
-
#
|
5301
5358
|
# * * *Code:* NoSuchLifecycleConfiguration
|
5302
5359
|
#
|
5303
5360
|
# * *Description:* The lifecycle configuration does not exist.
|
@@ -5305,7 +5362,6 @@ module Aws::S3
|
|
5305
5362
|
# * *HTTP Status Code:* 404 Not Found
|
5306
5363
|
#
|
5307
5364
|
# * *SOAP Fault Code Prefix:* Client
|
5308
|
-
#
|
5309
5365
|
# * * *Code:* NoSuchUpload
|
5310
5366
|
#
|
5311
5367
|
# * *Description:* The specified multipart upload does not exist.
|
@@ -5315,7 +5371,6 @@ module Aws::S3
|
|
5315
5371
|
# * *HTTP Status Code:* 404 Not Found
|
5316
5372
|
#
|
5317
5373
|
# * *SOAP Fault Code Prefix:* Client
|
5318
|
-
#
|
5319
5374
|
# * * *Code:* NoSuchVersion
|
5320
5375
|
#
|
5321
5376
|
# * *Description:* Indicates that the version ID specified in the
|
@@ -5324,7 +5379,6 @@ module Aws::S3
|
|
5324
5379
|
# * *HTTP Status Code:* 404 Not Found
|
5325
5380
|
#
|
5326
5381
|
# * *SOAP Fault Code Prefix:* Client
|
5327
|
-
#
|
5328
5382
|
# * * *Code:* NotImplemented
|
5329
5383
|
#
|
5330
5384
|
# * *Description:* A header you provided implies functionality that
|
@@ -5333,7 +5387,6 @@ module Aws::S3
|
|
5333
5387
|
# * *HTTP Status Code:* 501 Not Implemented
|
5334
5388
|
#
|
5335
5389
|
# * *SOAP Fault Code Prefix:* Server
|
5336
|
-
#
|
5337
5390
|
# * * *Code:* NotSignedUp
|
5338
5391
|
#
|
5339
5392
|
# * *Description:* Your account is not signed up for the Amazon S3
|
@@ -5343,7 +5396,6 @@ module Aws::S3
|
|
5343
5396
|
# * *HTTP Status Code:* 403 Forbidden
|
5344
5397
|
#
|
5345
5398
|
# * *SOAP Fault Code Prefix:* Client
|
5346
|
-
#
|
5347
5399
|
# * * *Code:* OperationAborted
|
5348
5400
|
#
|
5349
5401
|
# * *Description:* A conflicting conditional action is currently in
|
@@ -5352,7 +5404,6 @@ module Aws::S3
|
|
5352
5404
|
# * *HTTP Status Code:* 409 Conflict
|
5353
5405
|
#
|
5354
5406
|
# * *SOAP Fault Code Prefix:* Client
|
5355
|
-
#
|
5356
5407
|
# * * *Code:* PermanentRedirect
|
5357
5408
|
#
|
5358
5409
|
# * *Description:* The bucket you are attempting to access must be
|
@@ -5362,7 +5413,6 @@ module Aws::S3
|
|
5362
5413
|
# * *HTTP Status Code:* 301 Moved Permanently
|
5363
5414
|
#
|
5364
5415
|
# * *SOAP Fault Code Prefix:* Client
|
5365
|
-
#
|
5366
5416
|
# * * *Code:* PreconditionFailed
|
5367
5417
|
#
|
5368
5418
|
# * *Description:* At least one of the preconditions you specified
|
@@ -5371,7 +5421,6 @@ module Aws::S3
|
|
5371
5421
|
# * *HTTP Status Code:* 412 Precondition Failed
|
5372
5422
|
#
|
5373
5423
|
# * *SOAP Fault Code Prefix:* Client
|
5374
|
-
#
|
5375
5424
|
# * * *Code:* Redirect
|
5376
5425
|
#
|
5377
5426
|
# * *Description:* Temporary redirect.
|
@@ -5379,7 +5428,6 @@ module Aws::S3
|
|
5379
5428
|
# * *HTTP Status Code:* 307 Moved Temporarily
|
5380
5429
|
#
|
5381
5430
|
# * *SOAP Fault Code Prefix:* Client
|
5382
|
-
#
|
5383
5431
|
# * * *Code:* RestoreAlreadyInProgress
|
5384
5432
|
#
|
5385
5433
|
# * *Description:* Object restore is already in progress.
|
@@ -5387,7 +5435,6 @@ module Aws::S3
|
|
5387
5435
|
# * *HTTP Status Code:* 409 Conflict
|
5388
5436
|
#
|
5389
5437
|
# * *SOAP Fault Code Prefix:* Client
|
5390
|
-
#
|
5391
5438
|
# * * *Code:* RequestIsNotMultiPartContent
|
5392
5439
|
#
|
5393
5440
|
# * *Description:* Bucket POST must be of the enclosure-type
|
@@ -5396,7 +5443,6 @@ module Aws::S3
|
|
5396
5443
|
# * *HTTP Status Code:* 400 Bad Request
|
5397
5444
|
#
|
5398
5445
|
# * *SOAP Fault Code Prefix:* Client
|
5399
|
-
#
|
5400
5446
|
# * * *Code:* RequestTimeout
|
5401
5447
|
#
|
5402
5448
|
# * *Description:* Your socket connection to the server was not read
|
@@ -5405,7 +5451,6 @@ module Aws::S3
|
|
5405
5451
|
# * *HTTP Status Code:* 400 Bad Request
|
5406
5452
|
#
|
5407
5453
|
# * *SOAP Fault Code Prefix:* Client
|
5408
|
-
#
|
5409
5454
|
# * * *Code:* RequestTimeTooSkewed
|
5410
5455
|
#
|
5411
5456
|
# * *Description:* The difference between the request time and the
|
@@ -5414,7 +5459,6 @@ module Aws::S3
|
|
5414
5459
|
# * *HTTP Status Code:* 403 Forbidden
|
5415
5460
|
#
|
5416
5461
|
# * *SOAP Fault Code Prefix:* Client
|
5417
|
-
#
|
5418
5462
|
# * * *Code:* RequestTorrentOfBucketError
|
5419
5463
|
#
|
5420
5464
|
# * *Description:* Requesting the torrent file of a bucket is not
|
@@ -5423,7 +5467,6 @@ module Aws::S3
|
|
5423
5467
|
# * *HTTP Status Code:* 400 Bad Request
|
5424
5468
|
#
|
5425
5469
|
# * *SOAP Fault Code Prefix:* Client
|
5426
|
-
#
|
5427
5470
|
# * * *Code:* SignatureDoesNotMatch
|
5428
5471
|
#
|
5429
5472
|
# * *Description:* The request signature we calculated does not
|
@@ -5435,7 +5478,6 @@ module Aws::S3
|
|
5435
5478
|
# * *HTTP Status Code:* 403 Forbidden
|
5436
5479
|
#
|
5437
5480
|
# * *SOAP Fault Code Prefix:* Client
|
5438
|
-
#
|
5439
5481
|
# * * *Code:* ServiceUnavailable
|
5440
5482
|
#
|
5441
5483
|
# * *Description:* Service is unable to handle request.
|
@@ -5443,7 +5485,6 @@ module Aws::S3
|
|
5443
5485
|
# * *HTTP Status Code:* 503 Service Unavailable
|
5444
5486
|
#
|
5445
5487
|
# * *SOAP Fault Code Prefix:* Server
|
5446
|
-
#
|
5447
5488
|
# * * *Code:* SlowDown
|
5448
5489
|
#
|
5449
5490
|
# * *Description:* Reduce your request rate.
|
@@ -5451,7 +5492,6 @@ module Aws::S3
|
|
5451
5492
|
# * *HTTP Status Code:* 503 Slow Down
|
5452
5493
|
#
|
5453
5494
|
# * *SOAP Fault Code Prefix:* Server
|
5454
|
-
#
|
5455
5495
|
# * * *Code:* TemporaryRedirect
|
5456
5496
|
#
|
5457
5497
|
# * *Description:* You are being redirected to the bucket while DNS
|
@@ -5460,7 +5500,6 @@ module Aws::S3
|
|
5460
5500
|
# * *HTTP Status Code:* 307 Moved Temporarily
|
5461
5501
|
#
|
5462
5502
|
# * *SOAP Fault Code Prefix:* Client
|
5463
|
-
#
|
5464
5503
|
# * * *Code:* TokenRefreshRequired
|
5465
5504
|
#
|
5466
5505
|
# * *Description:* The provided token must be refreshed.
|
@@ -5468,7 +5507,6 @@ module Aws::S3
|
|
5468
5507
|
# * *HTTP Status Code:* 400 Bad Request
|
5469
5508
|
#
|
5470
5509
|
# * *SOAP Fault Code Prefix:* Client
|
5471
|
-
#
|
5472
5510
|
# * * *Code:* TooManyBuckets
|
5473
5511
|
#
|
5474
5512
|
# * *Description:* You have attempted to create more buckets than
|
@@ -5477,7 +5515,6 @@ module Aws::S3
|
|
5477
5515
|
# * *HTTP Status Code:* 400 Bad Request
|
5478
5516
|
#
|
5479
5517
|
# * *SOAP Fault Code Prefix:* Client
|
5480
|
-
#
|
5481
5518
|
# * * *Code:* UnexpectedContent
|
5482
5519
|
#
|
5483
5520
|
# * *Description:* This request does not support content.
|
@@ -5485,7 +5522,6 @@ module Aws::S3
|
|
5485
5522
|
# * *HTTP Status Code:* 400 Bad Request
|
5486
5523
|
#
|
5487
5524
|
# * *SOAP Fault Code Prefix:* Client
|
5488
|
-
#
|
5489
5525
|
# * * *Code:* UnresolvableGrantByEmailAddress
|
5490
5526
|
#
|
5491
5527
|
# * *Description:* The email address you provided does not match any
|
@@ -5494,7 +5530,6 @@ module Aws::S3
|
|
5494
5530
|
# * *HTTP Status Code:* 400 Bad Request
|
5495
5531
|
#
|
5496
5532
|
# * *SOAP Fault Code Prefix:* Client
|
5497
|
-
#
|
5498
5533
|
# * * *Code:* UserKeyMustBeSpecified
|
5499
5534
|
#
|
5500
5535
|
# * *Description:* The bucket POST must contain the specified field
|
@@ -5843,13 +5878,14 @@ module Aws::S3
|
|
5843
5878
|
#
|
5844
5879
|
# <b>Directory buckets </b> - When you use this operation with a
|
5845
5880
|
# directory bucket, you must use path-style requests in the format
|
5846
|
-
# `https://s3express-control.
|
5881
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
5847
5882
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
5848
|
-
# names must be unique in the chosen Availability Zone
|
5849
|
-
# must also follow the format `
|
5850
|
-
#
|
5851
|
-
#
|
5852
|
-
# rules][1] in the
|
5883
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
5884
|
+
# Zone). Bucket names must also follow the format `
|
5885
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
5886
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
5887
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
5888
|
+
# *Amazon S3 User Guide*
|
5853
5889
|
#
|
5854
5890
|
#
|
5855
5891
|
#
|
@@ -5954,6 +5990,11 @@ module Aws::S3
|
|
5954
5990
|
# Indicates which default minimum object size behavior is applied to
|
5955
5991
|
# the lifecycle configuration.
|
5956
5992
|
#
|
5993
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
5994
|
+
# supported for directory bucket lifecycle configurations.
|
5995
|
+
#
|
5996
|
+
# </note>
|
5997
|
+
#
|
5957
5998
|
# * `all_storage_classes_128K` - Objects smaller than 128 KB will not
|
5958
5999
|
# transition to any storage class by default.
|
5959
6000
|
#
|
@@ -5986,6 +6027,11 @@ module Aws::S3
|
|
5986
6027
|
# you provide does not match the actual owner of the bucket, the
|
5987
6028
|
# request fails with the HTTP status code `403 Forbidden` (access
|
5988
6029
|
# denied).
|
6030
|
+
#
|
6031
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
6032
|
+
# supported for directory bucket lifecycle configurations.
|
6033
|
+
#
|
6034
|
+
# </note>
|
5989
6035
|
# @return [String]
|
5990
6036
|
#
|
5991
6037
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetBucketLifecycleConfigurationRequest AWS API Documentation
|
@@ -6246,13 +6292,14 @@ module Aws::S3
|
|
6246
6292
|
#
|
6247
6293
|
# <b>Directory buckets </b> - When you use this operation with a
|
6248
6294
|
# directory bucket, you must use path-style requests in the format
|
6249
|
-
# `https://s3express-control.
|
6295
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
6250
6296
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
6251
|
-
# names must be unique in the chosen Availability Zone
|
6252
|
-
# must also follow the format `
|
6253
|
-
#
|
6254
|
-
#
|
6255
|
-
# rules][1] in the
|
6297
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
6298
|
+
# Zone). Bucket names must also follow the format `
|
6299
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
6300
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
6301
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
6302
|
+
# *Amazon S3 User Guide*
|
6256
6303
|
#
|
6257
6304
|
# **Access points** - When you use this API operation with an access
|
6258
6305
|
# point, provide the alias of the access point in place of the bucket
|
@@ -6627,7 +6674,7 @@ module Aws::S3
|
|
6627
6674
|
# @return [Boolean]
|
6628
6675
|
#
|
6629
6676
|
# @!attribute [rw] last_modified
|
6630
|
-
#
|
6677
|
+
# Date and time when the object was last modified.
|
6631
6678
|
# @return [Time]
|
6632
6679
|
#
|
6633
6680
|
# @!attribute [rw] version_id
|
@@ -6759,10 +6806,10 @@ module Aws::S3
|
|
6759
6806
|
#
|
6760
6807
|
# **Directory buckets** - When you use this operation with a directory
|
6761
6808
|
# bucket, you must use virtual-hosted-style requests in the format `
|
6762
|
-
#
|
6809
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
6763
6810
|
# requests are not supported. Directory bucket names must be unique in
|
6764
|
-
# the chosen Availability Zone. Bucket names must
|
6765
|
-
#
|
6811
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
6812
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
6766
6813
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
6767
6814
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
6768
6815
|
# *Amazon S3 User Guide*.
|
@@ -7059,7 +7106,9 @@ module Aws::S3
|
|
7059
7106
|
# providing object expiration information. The value of the `rule-id`
|
7060
7107
|
# is URL-encoded.
|
7061
7108
|
#
|
7062
|
-
# <note markdown="1">
|
7109
|
+
# <note markdown="1"> Object expiration information is not returned in directory buckets
|
7110
|
+
# and this header returns the value "`NotImplemented`" in all
|
7111
|
+
# responses for directory buckets.
|
7063
7112
|
#
|
7064
7113
|
# </note>
|
7065
7114
|
#
|
@@ -7371,10 +7420,10 @@ module Aws::S3
|
|
7371
7420
|
#
|
7372
7421
|
# **Directory buckets** - When you use this operation with a directory
|
7373
7422
|
# bucket, you must use virtual-hosted-style requests in the format `
|
7374
|
-
#
|
7423
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
7375
7424
|
# requests are not supported. Directory bucket names must be unique in
|
7376
|
-
# the chosen Availability Zone. Bucket names must
|
7377
|
-
#
|
7425
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
7426
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
7378
7427
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
7379
7428
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
7380
7429
|
# *Amazon S3 User Guide*.
|
@@ -8102,8 +8151,9 @@ module Aws::S3
|
|
8102
8151
|
# @!attribute [rw] bucket_location_name
|
8103
8152
|
# The name of the location where the bucket will be created.
|
8104
8153
|
#
|
8105
|
-
# For directory buckets, the
|
8106
|
-
# bucket is created. An example
|
8154
|
+
# For directory buckets, the Zone ID of the Availability Zone or the
|
8155
|
+
# Local Zone where the bucket is created. An example Zone ID value for
|
8156
|
+
# an Availability Zone is `usw2-az1`.
|
8107
8157
|
#
|
8108
8158
|
# <note markdown="1"> This functionality is only supported by directory buckets.
|
8109
8159
|
#
|
@@ -8139,10 +8189,10 @@ module Aws::S3
|
|
8139
8189
|
#
|
8140
8190
|
# **Directory buckets** - When you use this operation with a directory
|
8141
8191
|
# bucket, you must use virtual-hosted-style requests in the format `
|
8142
|
-
#
|
8192
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
8143
8193
|
# requests are not supported. Directory bucket names must be unique in
|
8144
|
-
# the chosen Availability Zone. Bucket names must
|
8145
|
-
#
|
8194
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
8195
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
8146
8196
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
8147
8197
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
8148
8198
|
# *Amazon S3 User Guide*.
|
@@ -8224,7 +8274,9 @@ module Aws::S3
|
|
8224
8274
|
# providing object expiration information. The value of the `rule-id`
|
8225
8275
|
# is URL-encoded.
|
8226
8276
|
#
|
8227
|
-
# <note markdown="1">
|
8277
|
+
# <note markdown="1"> Object expiration information is not returned in directory buckets
|
8278
|
+
# and this header returns the value "`NotImplemented`" in all
|
8279
|
+
# responses for directory buckets.
|
8228
8280
|
#
|
8229
8281
|
# </note>
|
8230
8282
|
#
|
@@ -8613,10 +8665,10 @@ module Aws::S3
|
|
8613
8665
|
#
|
8614
8666
|
# **Directory buckets** - When you use this operation with a directory
|
8615
8667
|
# bucket, you must use virtual-hosted-style requests in the format `
|
8616
|
-
#
|
8668
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
8617
8669
|
# requests are not supported. Directory bucket names must be unique in
|
8618
|
-
# the chosen Availability Zone. Bucket names must
|
8619
|
-
#
|
8670
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
8671
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
8620
8672
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
8621
8673
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
8622
8674
|
# *Amazon S3 User Guide*.
|
@@ -9105,6 +9157,28 @@ module Aws::S3
|
|
9105
9157
|
include Aws::Structure
|
9106
9158
|
end
|
9107
9159
|
|
9160
|
+
# You may receive this error in multiple cases. Depending on the reason
|
9161
|
+
# for the error, you may receive one of the messages below:
|
9162
|
+
#
|
9163
|
+
# * Cannot specify both a write offset value and user-defined object
|
9164
|
+
# metadata for existing objects.
|
9165
|
+
#
|
9166
|
+
# * Checksum Type mismatch occurred, expected checksum Type: sha1,
|
9167
|
+
# actual checksum Type: crc32c.
|
9168
|
+
#
|
9169
|
+
# * Request body cannot be empty when 'write offset' is specified.
|
9170
|
+
#
|
9171
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/InvalidRequest AWS API Documentation
|
9172
|
+
#
|
9173
|
+
class InvalidRequest < Aws::EmptyStructure; end
|
9174
|
+
|
9175
|
+
# The write offset value that you specified does not match the current
|
9176
|
+
# object size.
|
9177
|
+
#
|
9178
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/InvalidWriteOffset AWS API Documentation
|
9179
|
+
#
|
9180
|
+
class InvalidWriteOffset < Aws::EmptyStructure; end
|
9181
|
+
|
9108
9182
|
# Specifies the inventory configuration for an Amazon S3 bucket. For
|
9109
9183
|
# more information, see [GET Bucket inventory][1] in the *Amazon S3 API
|
9110
9184
|
# Reference*.
|
@@ -9379,6 +9453,11 @@ module Aws::S3
|
|
9379
9453
|
# Indicates at what date the object is to be moved or deleted. The
|
9380
9454
|
# date value must conform to the ISO 8601 format. The time is always
|
9381
9455
|
# midnight UTC.
|
9456
|
+
#
|
9457
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
9458
|
+
# supported for directory bucket lifecycle configurations.
|
9459
|
+
#
|
9460
|
+
# </note>
|
9382
9461
|
# @return [Time]
|
9383
9462
|
#
|
9384
9463
|
# @!attribute [rw] days
|
@@ -9391,6 +9470,11 @@ module Aws::S3
|
|
9391
9470
|
# noncurrent versions. If set to true, the delete marker will be
|
9392
9471
|
# expired; if set to false the policy takes no action. This cannot be
|
9393
9472
|
# specified with Days or Date in a Lifecycle Expiration Policy.
|
9473
|
+
#
|
9474
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
9475
|
+
# supported for directory bucket lifecycle configurations.
|
9476
|
+
#
|
9477
|
+
# </note>
|
9394
9478
|
# @return [Boolean]
|
9395
9479
|
#
|
9396
9480
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/LifecycleExpiration AWS API Documentation
|
@@ -9440,6 +9524,10 @@ module Aws::S3
|
|
9440
9524
|
# applies to. A `Filter` must have exactly one of `Prefix`, `Tag`, or
|
9441
9525
|
# `And` specified. `Filter` is required if the `LifecycleRule` does
|
9442
9526
|
# not contain a `Prefix` element.
|
9527
|
+
#
|
9528
|
+
# <note markdown="1"> `Tag` filters are not supported for directory buckets.
|
9529
|
+
#
|
9530
|
+
# </note>
|
9443
9531
|
# @return [Types::LifecycleRuleFilter]
|
9444
9532
|
#
|
9445
9533
|
# @!attribute [rw] status
|
@@ -9450,6 +9538,11 @@ module Aws::S3
|
|
9450
9538
|
# @!attribute [rw] transitions
|
9451
9539
|
# Specifies when an Amazon S3 object transitions to a specified
|
9452
9540
|
# storage class.
|
9541
|
+
#
|
9542
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
9543
|
+
# supported for directory bucket lifecycle configurations.
|
9544
|
+
#
|
9545
|
+
# </note>
|
9453
9546
|
# @return [Array<Types::Transition>]
|
9454
9547
|
#
|
9455
9548
|
# @!attribute [rw] noncurrent_version_transitions
|
@@ -9459,6 +9552,11 @@ module Aws::S3
|
|
9459
9552
|
# can set this action to request that Amazon S3 transition noncurrent
|
9460
9553
|
# object versions to a specific storage class at a set period in the
|
9461
9554
|
# object's lifetime.
|
9555
|
+
#
|
9556
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
9557
|
+
# supported for directory bucket lifecycle configurations.
|
9558
|
+
#
|
9559
|
+
# </note>
|
9462
9560
|
# @return [Array<Types::NoncurrentVersionTransition>]
|
9463
9561
|
#
|
9464
9562
|
# @!attribute [rw] noncurrent_version_expiration
|
@@ -9468,6 +9566,11 @@ module Aws::S3
|
|
9468
9566
|
# versioning enabled (or suspended) to request that Amazon S3 delete
|
9469
9567
|
# noncurrent object versions at a specific period in the object's
|
9470
9568
|
# lifetime.
|
9569
|
+
#
|
9570
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
9571
|
+
# supported for directory bucket lifecycle configurations.
|
9572
|
+
#
|
9573
|
+
# </note>
|
9471
9574
|
# @return [Types::NoncurrentVersionExpiration]
|
9472
9575
|
#
|
9473
9576
|
# @!attribute [rw] abort_incomplete_multipart_upload
|
@@ -9551,6 +9654,11 @@ module Aws::S3
|
|
9551
9654
|
# @!attribute [rw] tag
|
9552
9655
|
# This tag must exist in the object's tag set in order for the rule
|
9553
9656
|
# to apply.
|
9657
|
+
#
|
9658
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
9659
|
+
# supported for directory bucket lifecycle configurations.
|
9660
|
+
#
|
9661
|
+
# </note>
|
9554
9662
|
# @return [Types::Tag]
|
9555
9663
|
#
|
9556
9664
|
# @!attribute [rw] object_size_greater_than
|
@@ -9869,6 +9977,14 @@ module Aws::S3
|
|
9869
9977
|
# Length Constraints: Minimum length of 0. Maximum length of 1024.
|
9870
9978
|
#
|
9871
9979
|
# Required: No.
|
9980
|
+
#
|
9981
|
+
# <note markdown="1"> If you specify the `bucket-region`, `prefix`, or
|
9982
|
+
# `continuation-token` query parameters without using `max-buckets` to
|
9983
|
+
# set the maximum number of buckets returned in the response, Amazon
|
9984
|
+
# S3 applies a default page size of 10,000 and provides a continuation
|
9985
|
+
# token if there are more buckets.
|
9986
|
+
#
|
9987
|
+
# </note>
|
9872
9988
|
# @return [String]
|
9873
9989
|
#
|
9874
9990
|
# @!attribute [rw] prefix
|
@@ -10083,10 +10199,10 @@ module Aws::S3
|
|
10083
10199
|
#
|
10084
10200
|
# **Directory buckets** - When you use this operation with a directory
|
10085
10201
|
# bucket, you must use virtual-hosted-style requests in the format `
|
10086
|
-
#
|
10202
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
10087
10203
|
# requests are not supported. Directory bucket names must be unique in
|
10088
|
-
# the chosen Availability Zone. Bucket names must
|
10089
|
-
#
|
10204
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
10205
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
10090
10206
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
10091
10207
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
10092
10208
|
# *Amazon S3 User Guide*.
|
@@ -10605,10 +10721,10 @@ module Aws::S3
|
|
10605
10721
|
#
|
10606
10722
|
# **Directory buckets** - When you use this operation with a directory
|
10607
10723
|
# bucket, you must use virtual-hosted-style requests in the format `
|
10608
|
-
#
|
10724
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
10609
10725
|
# requests are not supported. Directory bucket names must be unique in
|
10610
|
-
# the chosen Availability Zone. Bucket names must
|
10611
|
-
#
|
10726
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
10727
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
10612
10728
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
10613
10729
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
10614
10730
|
# *Amazon S3 User Guide*.
|
@@ -10876,10 +10992,10 @@ module Aws::S3
|
|
10876
10992
|
# @!attribute [rw] bucket
|
10877
10993
|
# **Directory buckets** - When you use this operation with a directory
|
10878
10994
|
# bucket, you must use virtual-hosted-style requests in the format `
|
10879
|
-
#
|
10995
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
10880
10996
|
# requests are not supported. Directory bucket names must be unique in
|
10881
|
-
# the chosen Availability Zone. Bucket names must
|
10882
|
-
#
|
10997
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
10998
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
10883
10999
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
10884
11000
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
10885
11001
|
# *Amazon S3 User Guide*.
|
@@ -11187,10 +11303,10 @@ module Aws::S3
|
|
11187
11303
|
#
|
11188
11304
|
# **Directory buckets** - When you use this operation with a directory
|
11189
11305
|
# bucket, you must use virtual-hosted-style requests in the format `
|
11190
|
-
#
|
11306
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
11191
11307
|
# requests are not supported. Directory bucket names must be unique in
|
11192
|
-
# the chosen Availability Zone. Bucket names must
|
11193
|
-
#
|
11308
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
11309
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
11194
11310
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
11195
11311
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
11196
11312
|
# *Amazon S3 User Guide*.
|
@@ -11334,9 +11450,9 @@ module Aws::S3
|
|
11334
11450
|
|
11335
11451
|
# Specifies the location where the bucket will be created.
|
11336
11452
|
#
|
11337
|
-
# For directory buckets, the location type is Availability Zone
|
11338
|
-
# more information about directory buckets, see [Directory
|
11339
|
-
# in the *Amazon S3 User Guide*.
|
11453
|
+
# For directory buckets, the location type is Availability Zone or Local
|
11454
|
+
# Zone. For more information about directory buckets, see [Directory
|
11455
|
+
# buckets][1] in the *Amazon S3 User Guide*.
|
11340
11456
|
#
|
11341
11457
|
# <note markdown="1"> This functionality is only supported by directory buckets.
|
11342
11458
|
#
|
@@ -11353,9 +11469,9 @@ module Aws::S3
|
|
11353
11469
|
# @!attribute [rw] name
|
11354
11470
|
# The name of the location where the bucket will be created.
|
11355
11471
|
#
|
11356
|
-
# For directory buckets, the name of the location is the
|
11357
|
-
# Availability Zone
|
11358
|
-
# value is `usw2-az1`.
|
11472
|
+
# For directory buckets, the name of the location is the Zone ID of
|
11473
|
+
# the Availability Zone (AZ) or Local Zone (LZ) where the bucket will
|
11474
|
+
# be created. An example AZ ID value is `usw2-az1`.
|
11359
11475
|
# @return [String]
|
11360
11476
|
#
|
11361
11477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/LocationInfo AWS API Documentation
|
@@ -11638,6 +11754,11 @@ module Aws::S3
|
|
11638
11754
|
# enabled (or suspended) to request that Amazon S3 delete noncurrent
|
11639
11755
|
# object versions at a specific period in the object's lifetime.
|
11640
11756
|
#
|
11757
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
11758
|
+
# supported for directory bucket lifecycle configurations.
|
11759
|
+
#
|
11760
|
+
# </note>
|
11761
|
+
#
|
11641
11762
|
# @!attribute [rw] noncurrent_days
|
11642
11763
|
# Specifies the number of days an object is noncurrent before Amazon
|
11643
11764
|
# S3 can perform the associated action. The value must be a non-zero
|
@@ -11645,6 +11766,11 @@ module Aws::S3
|
|
11645
11766
|
# calculations, see [How Amazon S3 Calculates When an Object Became
|
11646
11767
|
# Noncurrent][1] in the *Amazon S3 User Guide*.
|
11647
11768
|
#
|
11769
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
11770
|
+
# supported for directory bucket lifecycle configurations.
|
11771
|
+
#
|
11772
|
+
# </note>
|
11773
|
+
#
|
11648
11774
|
#
|
11649
11775
|
#
|
11650
11776
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/intro-lifecycle-rules.html#non-current-days-calculations
|
@@ -11658,6 +11784,11 @@ module Aws::S3
|
|
11658
11784
|
# versions, see [Lifecycle configuration elements][1] in the *Amazon
|
11659
11785
|
# S3 User Guide*.
|
11660
11786
|
#
|
11787
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
11788
|
+
# supported for directory bucket lifecycle configurations.
|
11789
|
+
#
|
11790
|
+
# </note>
|
11791
|
+
#
|
11661
11792
|
#
|
11662
11793
|
#
|
11663
11794
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/intro-lifecycle-rules.html
|
@@ -11928,11 +12059,43 @@ module Aws::S3
|
|
11928
12059
|
# </note>
|
11929
12060
|
# @return [String]
|
11930
12061
|
#
|
12062
|
+
# @!attribute [rw] etag
|
12063
|
+
# An entity tag (ETag) is an identifier assigned by a web server to a
|
12064
|
+
# specific version of a resource found at a URL. This header field
|
12065
|
+
# makes the request method conditional on `ETags`.
|
12066
|
+
#
|
12067
|
+
# <note markdown="1"> Entity tags (ETags) for S3 Express One Zone are random alphanumeric
|
12068
|
+
# strings unique to the object.
|
12069
|
+
#
|
12070
|
+
# </note>
|
12071
|
+
# @return [String]
|
12072
|
+
#
|
12073
|
+
# @!attribute [rw] last_modified_time
|
12074
|
+
# If present, the objects are deleted only if its modification times
|
12075
|
+
# matches the provided `Timestamp`.
|
12076
|
+
#
|
12077
|
+
# <note markdown="1"> This functionality is only supported for directory buckets.
|
12078
|
+
#
|
12079
|
+
# </note>
|
12080
|
+
# @return [Time]
|
12081
|
+
#
|
12082
|
+
# @!attribute [rw] size
|
12083
|
+
# If present, the objects are deleted only if its size matches the
|
12084
|
+
# provided size in bytes.
|
12085
|
+
#
|
12086
|
+
# <note markdown="1"> This functionality is only supported for directory buckets.
|
12087
|
+
#
|
12088
|
+
# </note>
|
12089
|
+
# @return [Integer]
|
12090
|
+
#
|
11931
12091
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ObjectIdentifier AWS API Documentation
|
11932
12092
|
#
|
11933
12093
|
class ObjectIdentifier < Struct.new(
|
11934
12094
|
:key,
|
11935
|
-
:version_id
|
12095
|
+
:version_id,
|
12096
|
+
:etag,
|
12097
|
+
:last_modified_time,
|
12098
|
+
:size)
|
11936
12099
|
SENSITIVE = []
|
11937
12100
|
include Aws::Structure
|
11938
12101
|
end
|
@@ -12792,13 +12955,14 @@ module Aws::S3
|
|
12792
12955
|
#
|
12793
12956
|
# <b>Directory buckets </b> - When you use this operation with a
|
12794
12957
|
# directory bucket, you must use path-style requests in the format
|
12795
|
-
# `https://s3express-control.
|
12958
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
12796
12959
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
12797
|
-
# names must be unique in the chosen Availability Zone
|
12798
|
-
# must also follow the format `
|
12799
|
-
#
|
12800
|
-
#
|
12801
|
-
# rules][1] in the
|
12960
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
12961
|
+
# Zone). Bucket names must also follow the format `
|
12962
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
12963
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
12964
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
12965
|
+
# *Amazon S3 User Guide*
|
12802
12966
|
#
|
12803
12967
|
#
|
12804
12968
|
#
|
@@ -12928,6 +13092,11 @@ module Aws::S3
|
|
12928
13092
|
# Indicates which default minimum object size behavior is applied to
|
12929
13093
|
# the lifecycle configuration.
|
12930
13094
|
#
|
13095
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
13096
|
+
# supported for directory bucket lifecycle configurations.
|
13097
|
+
#
|
13098
|
+
# </note>
|
13099
|
+
#
|
12931
13100
|
# * `all_storage_classes_128K` - Objects smaller than 128 KB will not
|
12932
13101
|
# transition to any storage class by default.
|
12933
13102
|
#
|
@@ -12980,12 +13149,22 @@ module Aws::S3
|
|
12980
13149
|
# you provide does not match the actual owner of the bucket, the
|
12981
13150
|
# request fails with the HTTP status code `403 Forbidden` (access
|
12982
13151
|
# denied).
|
13152
|
+
#
|
13153
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
13154
|
+
# supported for directory bucket lifecycle configurations.
|
13155
|
+
#
|
13156
|
+
# </note>
|
12983
13157
|
# @return [String]
|
12984
13158
|
#
|
12985
13159
|
# @!attribute [rw] transition_default_minimum_object_size
|
12986
13160
|
# Indicates which default minimum object size behavior is applied to
|
12987
13161
|
# the lifecycle configuration.
|
12988
13162
|
#
|
13163
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
13164
|
+
# supported for directory bucket lifecycle configurations.
|
13165
|
+
#
|
13166
|
+
# </note>
|
13167
|
+
#
|
12989
13168
|
# * `all_storage_classes_128K` - Objects smaller than 128 KB will not
|
12990
13169
|
# transition to any storage class by default.
|
12991
13170
|
#
|
@@ -13270,13 +13449,14 @@ module Aws::S3
|
|
13270
13449
|
#
|
13271
13450
|
# <b>Directory buckets </b> - When you use this operation with a
|
13272
13451
|
# directory bucket, you must use path-style requests in the format
|
13273
|
-
# `https://s3express-control.
|
13452
|
+
# `https://s3express-control.region-code.amazonaws.com/bucket-name `.
|
13274
13453
|
# Virtual-hosted-style requests aren't supported. Directory bucket
|
13275
|
-
# names must be unique in the chosen Availability Zone
|
13276
|
-
# must also follow the format `
|
13277
|
-
#
|
13278
|
-
#
|
13279
|
-
# rules][1] in the
|
13454
|
+
# names must be unique in the chosen Zone (Availability Zone or Local
|
13455
|
+
# Zone). Bucket names must also follow the format `
|
13456
|
+
# bucket-base-name--zone-id--x-s3` (for example, `
|
13457
|
+
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
13458
|
+
# naming restrictions, see [Directory bucket naming rules][1] in the
|
13459
|
+
# *Amazon S3 User Guide*
|
13280
13460
|
#
|
13281
13461
|
#
|
13282
13462
|
#
|
@@ -14085,7 +14265,9 @@ module Aws::S3
|
|
14085
14265
|
# `rule-id` key-value pairs that provide information about object
|
14086
14266
|
# expiration. The value of the `rule-id` is URL-encoded.
|
14087
14267
|
#
|
14088
|
-
# <note markdown="1">
|
14268
|
+
# <note markdown="1"> Object expiration information is not returned in directory buckets
|
14269
|
+
# and this header returns the value "`NotImplemented`" in all
|
14270
|
+
# responses for directory buckets.
|
14089
14271
|
#
|
14090
14272
|
# </note>
|
14091
14273
|
#
|
@@ -14236,6 +14418,16 @@ module Aws::S3
|
|
14236
14418
|
# (SSE-KMS).
|
14237
14419
|
# @return [Boolean]
|
14238
14420
|
#
|
14421
|
+
# @!attribute [rw] size
|
14422
|
+
# The size of the object in bytes. This will only be present if you
|
14423
|
+
# append to an object.
|
14424
|
+
#
|
14425
|
+
# <note markdown="1"> This functionality is only supported for objects in the Amazon S3
|
14426
|
+
# Express One Zone storage class in directory buckets.
|
14427
|
+
#
|
14428
|
+
# </note>
|
14429
|
+
# @return [Integer]
|
14430
|
+
#
|
14239
14431
|
# @!attribute [rw] request_charged
|
14240
14432
|
# If present, indicates that the requester was successfully charged
|
14241
14433
|
# for the request.
|
@@ -14261,6 +14453,7 @@ module Aws::S3
|
|
14261
14453
|
:ssekms_key_id,
|
14262
14454
|
:ssekms_encryption_context,
|
14263
14455
|
:bucket_key_enabled,
|
14456
|
+
:size,
|
14264
14457
|
:request_charged)
|
14265
14458
|
SENSITIVE = [:ssekms_key_id, :ssekms_encryption_context]
|
14266
14459
|
include Aws::Structure
|
@@ -14314,10 +14507,10 @@ module Aws::S3
|
|
14314
14507
|
#
|
14315
14508
|
# **Directory buckets** - When you use this operation with a directory
|
14316
14509
|
# bucket, you must use virtual-hosted-style requests in the format `
|
14317
|
-
#
|
14510
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
14318
14511
|
# requests are not supported. Directory bucket names must be unique in
|
14319
|
-
# the chosen Availability Zone. Bucket names must
|
14320
|
-
#
|
14512
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
14513
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
14321
14514
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
14322
14515
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
14323
14516
|
# *Amazon S3 User Guide*.
|
@@ -14543,6 +14736,27 @@ module Aws::S3
|
|
14543
14736
|
# [1]: https://www.rfc-editor.org/rfc/rfc7234#section-5.3
|
14544
14737
|
# @return [Time]
|
14545
14738
|
#
|
14739
|
+
# @!attribute [rw] if_match
|
14740
|
+
# Uploads the object only if the ETag (entity tag) value provided
|
14741
|
+
# during the WRITE operation matches the ETag of the object in S3. If
|
14742
|
+
# the ETag values do not match, the operation returns a `412
|
14743
|
+
# Precondition Failed` error.
|
14744
|
+
#
|
14745
|
+
# If a conflicting operation occurs during the upload S3 returns a
|
14746
|
+
# `409 ConditionalRequestConflict` response. On a 409 failure you
|
14747
|
+
# should fetch the object's ETag and retry the upload.
|
14748
|
+
#
|
14749
|
+
# Expects the ETag value as a string.
|
14750
|
+
#
|
14751
|
+
# For more information about conditional requests, see [RFC 7232][1],
|
14752
|
+
# or [Conditional requests][2] in the *Amazon S3 User Guide*.
|
14753
|
+
#
|
14754
|
+
#
|
14755
|
+
#
|
14756
|
+
# [1]: https://tools.ietf.org/html/rfc7232
|
14757
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/conditional-requests.html
|
14758
|
+
# @return [String]
|
14759
|
+
#
|
14546
14760
|
# @!attribute [rw] if_none_match
|
14547
14761
|
# Uploads the object only if the object key name does not already
|
14548
14762
|
# exist in the bucket specified. Otherwise, Amazon S3 returns a `412
|
@@ -14608,6 +14822,18 @@ module Aws::S3
|
|
14608
14822
|
# Object key for which the PUT action was initiated.
|
14609
14823
|
# @return [String]
|
14610
14824
|
#
|
14825
|
+
# @!attribute [rw] write_offset_bytes
|
14826
|
+
# Specifies the offset for appending data to existing objects in
|
14827
|
+
# bytes. The offset must be equal to the size of the existing object
|
14828
|
+
# being appended to. If no object exists, setting this header to 0
|
14829
|
+
# will create a new object.
|
14830
|
+
#
|
14831
|
+
# <note markdown="1"> This functionality is only supported for objects in the Amazon S3
|
14832
|
+
# Express One Zone storage class in directory buckets.
|
14833
|
+
#
|
14834
|
+
# </note>
|
14835
|
+
# @return [Integer]
|
14836
|
+
#
|
14611
14837
|
# @!attribute [rw] metadata
|
14612
14838
|
# A map of metadata to store with the object in S3.
|
14613
14839
|
# @return [Hash<String,String>]
|
@@ -14934,12 +15160,14 @@ module Aws::S3
|
|
14934
15160
|
:checksum_sha1,
|
14935
15161
|
:checksum_sha256,
|
14936
15162
|
:expires,
|
15163
|
+
:if_match,
|
14937
15164
|
:if_none_match,
|
14938
15165
|
:grant_full_control,
|
14939
15166
|
:grant_read,
|
14940
15167
|
:grant_read_acp,
|
14941
15168
|
:grant_write_acp,
|
14942
15169
|
:key,
|
15170
|
+
:write_offset_bytes,
|
14943
15171
|
:metadata,
|
14944
15172
|
:server_side_encryption,
|
14945
15173
|
:storage_class,
|
@@ -15901,7 +16129,15 @@ module Aws::S3
|
|
15901
16129
|
# @return [Types::GlacierJobParameters]
|
15902
16130
|
#
|
15903
16131
|
# @!attribute [rw] type
|
16132
|
+
# Amazon S3 Select is no longer available to new customers. Existing
|
16133
|
+
# customers of Amazon S3 Select can continue to use the feature as
|
16134
|
+
# usual. [Learn more][1]
|
16135
|
+
#
|
15904
16136
|
# Type of restore request.
|
16137
|
+
#
|
16138
|
+
#
|
16139
|
+
#
|
16140
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
15905
16141
|
# @return [String]
|
15906
16142
|
#
|
15907
16143
|
# @!attribute [rw] tier
|
@@ -15913,7 +16149,15 @@ module Aws::S3
|
|
15913
16149
|
# @return [String]
|
15914
16150
|
#
|
15915
16151
|
# @!attribute [rw] select_parameters
|
16152
|
+
# Amazon S3 Select is no longer available to new customers. Existing
|
16153
|
+
# customers of Amazon S3 Select can continue to use the feature as
|
16154
|
+
# usual. [Learn more][1]
|
16155
|
+
#
|
15916
16156
|
# Describes the parameters for Select job types.
|
16157
|
+
#
|
16158
|
+
#
|
16159
|
+
#
|
16160
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
15917
16161
|
# @return [Types::SelectParameters]
|
15918
16162
|
#
|
15919
16163
|
# @!attribute [rw] output_location
|
@@ -16081,6 +16325,11 @@ module Aws::S3
|
|
16081
16325
|
# versioning enabled (or suspended) to request that Amazon S3 delete
|
16082
16326
|
# noncurrent object versions at a specific period in the object's
|
16083
16327
|
# lifetime.
|
16328
|
+
#
|
16329
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
16330
|
+
# supported for directory bucket lifecycle configurations.
|
16331
|
+
#
|
16332
|
+
# </note>
|
16084
16333
|
# @return [Types::NoncurrentVersionExpiration]
|
16085
16334
|
#
|
16086
16335
|
# @!attribute [rw] abort_incomplete_multipart_upload
|
@@ -16244,6 +16493,12 @@ module Aws::S3
|
|
16244
16493
|
include Aws::Structure
|
16245
16494
|
end
|
16246
16495
|
|
16496
|
+
# <note markdown="1"> Learn Amazon S3 Select is no longer available to new customers.
|
16497
|
+
# Existing customers of Amazon S3 Select can continue to use the feature
|
16498
|
+
# as usual. [Learn more][1]
|
16499
|
+
#
|
16500
|
+
# </note>
|
16501
|
+
#
|
16247
16502
|
# Request to filter the contents of an Amazon S3 object based on a
|
16248
16503
|
# simple Structured Query Language (SQL) statement. In the request,
|
16249
16504
|
# along with the SQL expression, you must specify a data serialization
|
@@ -16251,11 +16506,12 @@ module Aws::S3
|
|
16251
16506
|
# object data into records. It returns only records that match the
|
16252
16507
|
# specified SQL expression. You must also specify the data serialization
|
16253
16508
|
# format for the response. For more information, see [S3Select API
|
16254
|
-
# Documentation][
|
16509
|
+
# Documentation][2].
|
16255
16510
|
#
|
16256
16511
|
#
|
16257
16512
|
#
|
16258
|
-
# [1]:
|
16513
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
16514
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectSELECTContent.html
|
16259
16515
|
#
|
16260
16516
|
# @!attribute [rw] bucket
|
16261
16517
|
# The S3 bucket.
|
@@ -16367,8 +16623,21 @@ module Aws::S3
|
|
16367
16623
|
include Aws::Structure
|
16368
16624
|
end
|
16369
16625
|
|
16626
|
+
# Amazon S3 Select is no longer available to new customers. Existing
|
16627
|
+
# customers of Amazon S3 Select can continue to use the feature as
|
16628
|
+
# usual. [Learn more][1]
|
16629
|
+
#
|
16370
16630
|
# Describes the parameters for Select job types.
|
16371
16631
|
#
|
16632
|
+
# Learn [How to optimize querying your data in Amazon S3][1] using
|
16633
|
+
# [Amazon Athena][2], [S3 Object Lambda][3], or client-side filtering.
|
16634
|
+
#
|
16635
|
+
#
|
16636
|
+
#
|
16637
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
16638
|
+
# [2]: https://docs.aws.amazon.com/athena/latest/ug/what-is.html
|
16639
|
+
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/transforming-objects.html
|
16640
|
+
#
|
16372
16641
|
# @!attribute [rw] input_serialization
|
16373
16642
|
# Describes the serialization format of the object.
|
16374
16643
|
# @return [Types::InputSerialization]
|
@@ -16378,7 +16647,15 @@ module Aws::S3
|
|
16378
16647
|
# @return [String]
|
16379
16648
|
#
|
16380
16649
|
# @!attribute [rw] expression
|
16650
|
+
# Amazon S3 Select is no longer available to new customers. Existing
|
16651
|
+
# customers of Amazon S3 Select can continue to use the feature as
|
16652
|
+
# usual. [Learn more][1]
|
16653
|
+
#
|
16381
16654
|
# The expression that is used to query the object.
|
16655
|
+
#
|
16656
|
+
#
|
16657
|
+
#
|
16658
|
+
# [1]: http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/
|
16382
16659
|
# @return [String]
|
16383
16660
|
#
|
16384
16661
|
# @!attribute [rw] output_serialization
|
@@ -16828,7 +17105,7 @@ module Aws::S3
|
|
16828
17105
|
#
|
16829
17106
|
# @!attribute [rw] simple_prefix
|
16830
17107
|
# To use the simple format for S3 keys for log objects. To specify
|
16831
|
-
# SimplePrefix format, set SimplePrefix to
|
17108
|
+
# SimplePrefix format, set SimplePrefix to \{}.
|
16832
17109
|
# @return [Types::SimplePrefix]
|
16833
17110
|
#
|
16834
17111
|
# @!attribute [rw] partitioned_prefix
|
@@ -16876,6 +17153,15 @@ module Aws::S3
|
|
16876
17153
|
include Aws::Structure
|
16877
17154
|
end
|
16878
17155
|
|
17156
|
+
# You have attempted to add more parts than the maximum of 10000 that
|
17157
|
+
# are allowed for this object. You can use the CopyObject operation to
|
17158
|
+
# copy this object to another and then add more data to the newly copied
|
17159
|
+
# object.
|
17160
|
+
#
|
17161
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/TooManyParts AWS API Documentation
|
17162
|
+
#
|
17163
|
+
class TooManyParts < Aws::EmptyStructure; end
|
17164
|
+
|
16879
17165
|
# A container for specifying the configuration for publication of
|
16880
17166
|
# messages to an Amazon Simple Notification Service (Amazon SNS) topic
|
16881
17167
|
# when Amazon S3 detects specified events.
|
@@ -17077,14 +17363,22 @@ module Aws::S3
|
|
17077
17363
|
#
|
17078
17364
|
# **Directory buckets** - When you use this operation with a directory
|
17079
17365
|
# bucket, you must use virtual-hosted-style requests in the format `
|
17080
|
-
#
|
17366
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
17081
17367
|
# requests are not supported. Directory bucket names must be unique in
|
17082
|
-
# the chosen Availability Zone. Bucket names must
|
17083
|
-
#
|
17368
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
17369
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
17084
17370
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
17085
17371
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
17086
17372
|
# *Amazon S3 User Guide*.
|
17087
17373
|
#
|
17374
|
+
# <note markdown="1"> Copying objects across different Amazon Web Services Regions isn't
|
17375
|
+
# supported when the source or destination bucket is in Amazon Web
|
17376
|
+
# Services Local Zones. The source and destination buckets must have
|
17377
|
+
# the same parent Amazon Web Services Region. Otherwise, you get an
|
17378
|
+
# HTTP `400 Bad Request` error with the error code `InvalidRequest`.
|
17379
|
+
#
|
17380
|
+
# </note>
|
17381
|
+
#
|
17088
17382
|
# **Access points** - When you use this action with an access point,
|
17089
17383
|
# you must provide the alias of the access point in place of the
|
17090
17384
|
# bucket name or specify the access point ARN. When using the access
|
@@ -17530,10 +17824,10 @@ module Aws::S3
|
|
17530
17824
|
#
|
17531
17825
|
# **Directory buckets** - When you use this operation with a directory
|
17532
17826
|
# bucket, you must use virtual-hosted-style requests in the format `
|
17533
|
-
#
|
17827
|
+
# Bucket-name.s3express-zone-id.region-code.amazonaws.com`. Path-style
|
17534
17828
|
# requests are not supported. Directory bucket names must be unique in
|
17535
|
-
# the chosen Availability Zone. Bucket names must
|
17536
|
-
#
|
17829
|
+
# the chosen Zone (Availability Zone or Local Zone). Bucket names must
|
17830
|
+
# follow the format ` bucket-base-name--zone-id--x-s3` (for example, `
|
17537
17831
|
# DOC-EXAMPLE-BUCKET--usw2-az1--x-s3`). For information about bucket
|
17538
17832
|
# naming restrictions, see [Directory bucket naming rules][1] in the
|
17539
17833
|
# *Amazon S3 User Guide*.
|