aws-sdk-s3 1.91.0 → 1.92.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 +7 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3.rb +1 -1
- data/lib/aws-sdk-s3/arn/access_point_arn.rb +2 -2
- data/lib/aws-sdk-s3/arn/object_lambda_arn.rb +66 -0
- data/lib/aws-sdk-s3/arn/outpost_access_point_arn.rb +3 -3
- data/lib/aws-sdk-s3/bucket.rb +6 -6
- data/lib/aws-sdk-s3/bucket_acl.rb +1 -1
- data/lib/aws-sdk-s3/bucket_cors.rb +3 -4
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +2 -2
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +2 -2
- data/lib/aws-sdk-s3/bucket_logging.rb +1 -1
- data/lib/aws-sdk-s3/bucket_notification.rb +1 -1
- data/lib/aws-sdk-s3/bucket_policy.rb +2 -2
- data/lib/aws-sdk-s3/bucket_request_payment.rb +1 -1
- data/lib/aws-sdk-s3/bucket_tagging.rb +2 -2
- data/lib/aws-sdk-s3/bucket_versioning.rb +3 -3
- data/lib/aws-sdk-s3/bucket_website.rb +2 -2
- data/lib/aws-sdk-s3/client.rb +662 -412
- data/lib/aws-sdk-s3/client_api.rb +58 -0
- data/lib/aws-sdk-s3/multipart_upload.rb +3 -3
- data/lib/aws-sdk-s3/multipart_upload_part.rb +4 -4
- data/lib/aws-sdk-s3/object.rb +9 -9
- data/lib/aws-sdk-s3/object_acl.rb +1 -1
- data/lib/aws-sdk-s3/object_summary.rb +9 -9
- data/lib/aws-sdk-s3/object_version.rb +4 -4
- data/lib/aws-sdk-s3/plugins/arn.rb +20 -13
- data/lib/aws-sdk-s3/plugins/iad_regional_endpoint.rb +9 -9
- data/lib/aws-sdk-s3/plugins/object_lambda_endpoint.rb +25 -0
- data/lib/aws-sdk-s3/plugins/s3_signer.rb +6 -0
- data/lib/aws-sdk-s3/types.rb +466 -159
- metadata +4 -2
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Aws
|
4
|
+
module S3
|
5
|
+
module Plugins
|
6
|
+
# WriteGetObjectResponse is called from Lambda after a data transform.
|
7
|
+
# If there is no custom endpoint, we change the endpoint from s3 to
|
8
|
+
# s3-object-lambda just for this operation.
|
9
|
+
class ObjectLambdaEndpoint < Seahorse::Client::Plugin
|
10
|
+
class Handler < Seahorse::Client::Handler
|
11
|
+
def call(context)
|
12
|
+
if context.config.regional_endpoint
|
13
|
+
host = context.http_request.endpoint.host
|
14
|
+
host = host.sub('s3.', 's3-object-lambda.')
|
15
|
+
context.http_request.endpoint.host = host
|
16
|
+
end
|
17
|
+
@handler.call(context)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
handler(Handler, operations: [:write_get_object_response])
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -79,6 +79,12 @@ module Aws
|
|
79
79
|
region: arn[:resolved_region],
|
80
80
|
credentials: context.config.credentials
|
81
81
|
)
|
82
|
+
elsif context.operation.name == 'WriteGetObjectResponse'
|
83
|
+
S3Signer.build_v4_signer(
|
84
|
+
service: 's3-object-lambda',
|
85
|
+
region: context.config.sigv4_region,
|
86
|
+
credentials: context.config.credentials
|
87
|
+
)
|
82
88
|
else
|
83
89
|
context.config.sigv4_signer
|
84
90
|
end
|
data/lib/aws-sdk-s3/types.rb
CHANGED
@@ -87,8 +87,8 @@ module Aws::S3
|
|
87
87
|
#
|
88
88
|
#
|
89
89
|
#
|
90
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
91
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
90
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
91
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
92
92
|
# @return [String]
|
93
93
|
#
|
94
94
|
# @!attribute [rw] key
|
@@ -112,7 +112,7 @@ module Aws::S3
|
|
112
112
|
# @return [String]
|
113
113
|
#
|
114
114
|
# @!attribute [rw] expected_bucket_owner
|
115
|
-
# The account
|
115
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
116
116
|
# by a different account, the request will fail with an HTTP `403
|
117
117
|
# (Access Denied)` error.
|
118
118
|
# @return [String]
|
@@ -939,8 +939,8 @@ module Aws::S3
|
|
939
939
|
#
|
940
940
|
#
|
941
941
|
#
|
942
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
943
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
942
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
943
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
944
944
|
# @return [String]
|
945
945
|
#
|
946
946
|
# @!attribute [rw] key
|
@@ -1057,7 +1057,7 @@ module Aws::S3
|
|
1057
1057
|
# @return [String]
|
1058
1058
|
#
|
1059
1059
|
# @!attribute [rw] expected_bucket_owner
|
1060
|
-
# The account
|
1060
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
1061
1061
|
# by a different account, the request will fail with an HTTP `403
|
1062
1062
|
# (Access Denied)` error.
|
1063
1063
|
# @return [String]
|
@@ -1341,8 +1341,8 @@ module Aws::S3
|
|
1341
1341
|
#
|
1342
1342
|
#
|
1343
1343
|
#
|
1344
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
1345
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
1344
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
1345
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
1346
1346
|
# @return [String]
|
1347
1347
|
#
|
1348
1348
|
# @!attribute [rw] cache_control
|
@@ -1411,7 +1411,7 @@ module Aws::S3
|
|
1411
1411
|
#
|
1412
1412
|
#
|
1413
1413
|
#
|
1414
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
1414
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points.html
|
1415
1415
|
# @return [String]
|
1416
1416
|
#
|
1417
1417
|
# @!attribute [rw] copy_source_if_match
|
@@ -1603,13 +1603,13 @@ module Aws::S3
|
|
1603
1603
|
# @return [String]
|
1604
1604
|
#
|
1605
1605
|
# @!attribute [rw] expected_bucket_owner
|
1606
|
-
# The account
|
1606
|
+
# The account ID of the expected destination bucket owner. If the
|
1607
1607
|
# destination bucket is owned by a different account, the request will
|
1608
1608
|
# fail with an HTTP `403 (Access Denied)` error.
|
1609
1609
|
# @return [String]
|
1610
1610
|
#
|
1611
1611
|
# @!attribute [rw] expected_source_bucket_owner
|
1612
|
-
# The account
|
1612
|
+
# The account ID of the expected source bucket owner. If the source
|
1613
1613
|
# bucket is owned by a different account, the request will fail with
|
1614
1614
|
# an HTTP `403 (Access Denied)` error.
|
1615
1615
|
# @return [String]
|
@@ -1858,8 +1858,8 @@ module Aws::S3
|
|
1858
1858
|
#
|
1859
1859
|
#
|
1860
1860
|
#
|
1861
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
1862
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
1861
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
1862
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
1863
1863
|
# @return [String]
|
1864
1864
|
#
|
1865
1865
|
# @!attribute [rw] key
|
@@ -1996,8 +1996,8 @@ module Aws::S3
|
|
1996
1996
|
#
|
1997
1997
|
#
|
1998
1998
|
#
|
1999
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
2000
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
1999
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
2000
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
2001
2001
|
# @return [String]
|
2002
2002
|
#
|
2003
2003
|
# @!attribute [rw] cache_control
|
@@ -2165,7 +2165,7 @@ module Aws::S3
|
|
2165
2165
|
# @return [String]
|
2166
2166
|
#
|
2167
2167
|
# @!attribute [rw] expected_bucket_owner
|
2168
|
-
# The account
|
2168
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
2169
2169
|
# by a different account, the request will fail with an HTTP `403
|
2170
2170
|
# (Access Denied)` error.
|
2171
2171
|
# @return [String]
|
@@ -2295,7 +2295,7 @@ module Aws::S3
|
|
2295
2295
|
# @return [String]
|
2296
2296
|
#
|
2297
2297
|
# @!attribute [rw] expected_bucket_owner
|
2298
|
-
# The account
|
2298
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
2299
2299
|
# by a different account, the request will fail with an HTTP `403
|
2300
2300
|
# (Access Denied)` error.
|
2301
2301
|
# @return [String]
|
@@ -2323,7 +2323,7 @@ module Aws::S3
|
|
2323
2323
|
# @return [String]
|
2324
2324
|
#
|
2325
2325
|
# @!attribute [rw] expected_bucket_owner
|
2326
|
-
# The account
|
2326
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
2327
2327
|
# by a different account, the request will fail with an HTTP `403
|
2328
2328
|
# (Access Denied)` error.
|
2329
2329
|
# @return [String]
|
@@ -2351,7 +2351,7 @@ module Aws::S3
|
|
2351
2351
|
# @return [String]
|
2352
2352
|
#
|
2353
2353
|
# @!attribute [rw] expected_bucket_owner
|
2354
|
-
# The account
|
2354
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
2355
2355
|
# by a different account, the request will fail with an HTTP `403
|
2356
2356
|
# (Access Denied)` error.
|
2357
2357
|
# @return [String]
|
@@ -2410,7 +2410,7 @@ module Aws::S3
|
|
2410
2410
|
# @return [String]
|
2411
2411
|
#
|
2412
2412
|
# @!attribute [rw] expected_bucket_owner
|
2413
|
-
# The account
|
2413
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
2414
2414
|
# by a different account, the request will fail with an HTTP `403
|
2415
2415
|
# (Access Denied)` error.
|
2416
2416
|
# @return [String]
|
@@ -2438,7 +2438,7 @@ module Aws::S3
|
|
2438
2438
|
# @return [String]
|
2439
2439
|
#
|
2440
2440
|
# @!attribute [rw] expected_bucket_owner
|
2441
|
-
# The account
|
2441
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
2442
2442
|
# by a different account, the request will fail with an HTTP `403
|
2443
2443
|
# (Access Denied)` error.
|
2444
2444
|
# @return [String]
|
@@ -2471,7 +2471,7 @@ module Aws::S3
|
|
2471
2471
|
# @return [String]
|
2472
2472
|
#
|
2473
2473
|
# @!attribute [rw] expected_bucket_owner
|
2474
|
-
# The account
|
2474
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
2475
2475
|
# by a different account, the request will fail with an HTTP `403
|
2476
2476
|
# (Access Denied)` error.
|
2477
2477
|
# @return [String]
|
@@ -2499,7 +2499,7 @@ module Aws::S3
|
|
2499
2499
|
# @return [String]
|
2500
2500
|
#
|
2501
2501
|
# @!attribute [rw] expected_bucket_owner
|
2502
|
-
# The account
|
2502
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
2503
2503
|
# by a different account, the request will fail with an HTTP `403
|
2504
2504
|
# (Access Denied)` error.
|
2505
2505
|
# @return [String]
|
@@ -2526,7 +2526,7 @@ module Aws::S3
|
|
2526
2526
|
# @return [String]
|
2527
2527
|
#
|
2528
2528
|
# @!attribute [rw] expected_bucket_owner
|
2529
|
-
# The account
|
2529
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
2530
2530
|
# by a different account, the request will fail with an HTTP `403
|
2531
2531
|
# (Access Denied)` error.
|
2532
2532
|
# @return [String]
|
@@ -2553,7 +2553,7 @@ module Aws::S3
|
|
2553
2553
|
# @return [String]
|
2554
2554
|
#
|
2555
2555
|
# @!attribute [rw] expected_bucket_owner
|
2556
|
-
# The account
|
2556
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
2557
2557
|
# by a different account, the request will fail with an HTTP `403
|
2558
2558
|
# (Access Denied)` error.
|
2559
2559
|
# @return [String]
|
@@ -2580,7 +2580,7 @@ module Aws::S3
|
|
2580
2580
|
# @return [String]
|
2581
2581
|
#
|
2582
2582
|
# @!attribute [rw] expected_bucket_owner
|
2583
|
-
# The account
|
2583
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
2584
2584
|
# by a different account, the request will fail with an HTTP `403
|
2585
2585
|
# (Access Denied)` error.
|
2586
2586
|
# @return [String]
|
@@ -2607,7 +2607,7 @@ module Aws::S3
|
|
2607
2607
|
# @return [String]
|
2608
2608
|
#
|
2609
2609
|
# @!attribute [rw] expected_bucket_owner
|
2610
|
-
# The account
|
2610
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
2611
2611
|
# by a different account, the request will fail with an HTTP `403
|
2612
2612
|
# (Access Denied)` error.
|
2613
2613
|
# @return [String]
|
@@ -2635,7 +2635,7 @@ module Aws::S3
|
|
2635
2635
|
# @return [String]
|
2636
2636
|
#
|
2637
2637
|
# @!attribute [rw] expected_bucket_owner
|
2638
|
-
# The account
|
2638
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
2639
2639
|
# by a different account, the request will fail with an HTTP `403
|
2640
2640
|
# (Access Denied)` error.
|
2641
2641
|
# @return [String]
|
@@ -2791,8 +2791,8 @@ module Aws::S3
|
|
2791
2791
|
#
|
2792
2792
|
#
|
2793
2793
|
#
|
2794
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
2795
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
2794
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
2795
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
2796
2796
|
# @return [String]
|
2797
2797
|
#
|
2798
2798
|
# @!attribute [rw] key
|
@@ -2828,7 +2828,7 @@ module Aws::S3
|
|
2828
2828
|
# @return [Boolean]
|
2829
2829
|
#
|
2830
2830
|
# @!attribute [rw] expected_bucket_owner
|
2831
|
-
# The account
|
2831
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
2832
2832
|
# by a different account, the request will fail with an HTTP `403
|
2833
2833
|
# (Access Denied)` error.
|
2834
2834
|
# @return [String]
|
@@ -2893,8 +2893,8 @@ module Aws::S3
|
|
2893
2893
|
#
|
2894
2894
|
#
|
2895
2895
|
#
|
2896
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
2897
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
2896
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
2897
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
2898
2898
|
# @return [String]
|
2899
2899
|
#
|
2900
2900
|
# @!attribute [rw] key
|
@@ -2907,7 +2907,7 @@ module Aws::S3
|
|
2907
2907
|
# @return [String]
|
2908
2908
|
#
|
2909
2909
|
# @!attribute [rw] expected_bucket_owner
|
2910
|
-
# The account
|
2910
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
2911
2911
|
# by a different account, the request will fail with an HTTP `403
|
2912
2912
|
# (Access Denied)` error.
|
2913
2913
|
# @return [String]
|
@@ -2991,8 +2991,8 @@ module Aws::S3
|
|
2991
2991
|
#
|
2992
2992
|
#
|
2993
2993
|
#
|
2994
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
2995
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
2994
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
2995
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
2996
2996
|
# @return [String]
|
2997
2997
|
#
|
2998
2998
|
# @!attribute [rw] delete
|
@@ -3025,7 +3025,7 @@ module Aws::S3
|
|
3025
3025
|
# @return [Boolean]
|
3026
3026
|
#
|
3027
3027
|
# @!attribute [rw] expected_bucket_owner
|
3028
|
-
# The account
|
3028
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
3029
3029
|
# by a different account, the request will fail with an HTTP `403
|
3030
3030
|
# (Access Denied)` error.
|
3031
3031
|
# @return [String]
|
@@ -3057,7 +3057,7 @@ module Aws::S3
|
|
3057
3057
|
# @return [String]
|
3058
3058
|
#
|
3059
3059
|
# @!attribute [rw] expected_bucket_owner
|
3060
|
-
# The account
|
3060
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
3061
3061
|
# by a different account, the request will fail with an HTTP `403
|
3062
3062
|
# (Access Denied)` error.
|
3063
3063
|
# @return [String]
|
@@ -4244,7 +4244,7 @@ module Aws::S3
|
|
4244
4244
|
# @return [String]
|
4245
4245
|
#
|
4246
4246
|
# @!attribute [rw] expected_bucket_owner
|
4247
|
-
# The account
|
4247
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4248
4248
|
# by a different account, the request will fail with an HTTP `403
|
4249
4249
|
# (Access Denied)` error.
|
4250
4250
|
# @return [String]
|
@@ -4288,7 +4288,7 @@ module Aws::S3
|
|
4288
4288
|
# @return [String]
|
4289
4289
|
#
|
4290
4290
|
# @!attribute [rw] expected_bucket_owner
|
4291
|
-
# The account
|
4291
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4292
4292
|
# by a different account, the request will fail with an HTTP `403
|
4293
4293
|
# (Access Denied)` error.
|
4294
4294
|
# @return [String]
|
@@ -4333,7 +4333,7 @@ module Aws::S3
|
|
4333
4333
|
# @return [String]
|
4334
4334
|
#
|
4335
4335
|
# @!attribute [rw] expected_bucket_owner
|
4336
|
-
# The account
|
4336
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4337
4337
|
# by a different account, the request will fail with an HTTP `403
|
4338
4338
|
# (Access Denied)` error.
|
4339
4339
|
# @return [String]
|
@@ -4374,7 +4374,7 @@ module Aws::S3
|
|
4374
4374
|
# @return [String]
|
4375
4375
|
#
|
4376
4376
|
# @!attribute [rw] expected_bucket_owner
|
4377
|
-
# The account
|
4377
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4378
4378
|
# by a different account, the request will fail with an HTTP `403
|
4379
4379
|
# (Access Denied)` error.
|
4380
4380
|
# @return [String]
|
@@ -4414,7 +4414,7 @@ module Aws::S3
|
|
4414
4414
|
# @return [String]
|
4415
4415
|
#
|
4416
4416
|
# @!attribute [rw] expected_bucket_owner
|
4417
|
-
# The account
|
4417
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4418
4418
|
# by a different account, the request will fail with an HTTP `403
|
4419
4419
|
# (Access Denied)` error.
|
4420
4420
|
# @return [String]
|
@@ -4497,7 +4497,7 @@ module Aws::S3
|
|
4497
4497
|
# @return [String]
|
4498
4498
|
#
|
4499
4499
|
# @!attribute [rw] expected_bucket_owner
|
4500
|
-
# The account
|
4500
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4501
4501
|
# by a different account, the request will fail with an HTTP `403
|
4502
4502
|
# (Access Denied)` error.
|
4503
4503
|
# @return [String]
|
@@ -4537,7 +4537,7 @@ module Aws::S3
|
|
4537
4537
|
# @return [String]
|
4538
4538
|
#
|
4539
4539
|
# @!attribute [rw] expected_bucket_owner
|
4540
|
-
# The account
|
4540
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4541
4541
|
# by a different account, the request will fail with an HTTP `403
|
4542
4542
|
# (Access Denied)` error.
|
4543
4543
|
# @return [String]
|
@@ -4576,7 +4576,7 @@ module Aws::S3
|
|
4576
4576
|
# @return [String]
|
4577
4577
|
#
|
4578
4578
|
# @!attribute [rw] expected_bucket_owner
|
4579
|
-
# The account
|
4579
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4580
4580
|
# by a different account, the request will fail with an HTTP `403
|
4581
4581
|
# (Access Denied)` error.
|
4582
4582
|
# @return [String]
|
@@ -4622,7 +4622,7 @@ module Aws::S3
|
|
4622
4622
|
# @return [String]
|
4623
4623
|
#
|
4624
4624
|
# @!attribute [rw] expected_bucket_owner
|
4625
|
-
# The account
|
4625
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4626
4626
|
# by a different account, the request will fail with an HTTP `403
|
4627
4627
|
# (Access Denied)` error.
|
4628
4628
|
# @return [String]
|
@@ -4668,7 +4668,7 @@ module Aws::S3
|
|
4668
4668
|
# @return [String]
|
4669
4669
|
#
|
4670
4670
|
# @!attribute [rw] expected_bucket_owner
|
4671
|
-
# The account
|
4671
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4672
4672
|
# by a different account, the request will fail with an HTTP `403
|
4673
4673
|
# (Access Denied)` error.
|
4674
4674
|
# @return [String]
|
@@ -4713,7 +4713,7 @@ module Aws::S3
|
|
4713
4713
|
# @return [String]
|
4714
4714
|
#
|
4715
4715
|
# @!attribute [rw] expected_bucket_owner
|
4716
|
-
# The account
|
4716
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4717
4717
|
# by a different account, the request will fail with an HTTP `403
|
4718
4718
|
# (Access Denied)` error.
|
4719
4719
|
# @return [String]
|
@@ -4742,7 +4742,7 @@ module Aws::S3
|
|
4742
4742
|
# @return [String]
|
4743
4743
|
#
|
4744
4744
|
# @!attribute [rw] expected_bucket_owner
|
4745
|
-
# The account
|
4745
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4746
4746
|
# by a different account, the request will fail with an HTTP `403
|
4747
4747
|
# (Access Denied)` error.
|
4748
4748
|
# @return [String]
|
@@ -4783,7 +4783,7 @@ module Aws::S3
|
|
4783
4783
|
# @return [String]
|
4784
4784
|
#
|
4785
4785
|
# @!attribute [rw] expected_bucket_owner
|
4786
|
-
# The account
|
4786
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4787
4787
|
# by a different account, the request will fail with an HTTP `403
|
4788
4788
|
# (Access Denied)` error.
|
4789
4789
|
# @return [String]
|
@@ -4822,7 +4822,7 @@ module Aws::S3
|
|
4822
4822
|
# @return [String]
|
4823
4823
|
#
|
4824
4824
|
# @!attribute [rw] expected_bucket_owner
|
4825
|
-
# The account
|
4825
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4826
4826
|
# by a different account, the request will fail with an HTTP `403
|
4827
4827
|
# (Access Denied)` error.
|
4828
4828
|
# @return [String]
|
@@ -4862,7 +4862,7 @@ module Aws::S3
|
|
4862
4862
|
# @return [String]
|
4863
4863
|
#
|
4864
4864
|
# @!attribute [rw] expected_bucket_owner
|
4865
|
-
# The account
|
4865
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4866
4866
|
# by a different account, the request will fail with an HTTP `403
|
4867
4867
|
# (Access Denied)` error.
|
4868
4868
|
# @return [String]
|
@@ -4902,7 +4902,7 @@ module Aws::S3
|
|
4902
4902
|
# @return [String]
|
4903
4903
|
#
|
4904
4904
|
# @!attribute [rw] expected_bucket_owner
|
4905
|
-
# The account
|
4905
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4906
4906
|
# by a different account, the request will fail with an HTTP `403
|
4907
4907
|
# (Access Denied)` error.
|
4908
4908
|
# @return [String]
|
@@ -4942,7 +4942,7 @@ module Aws::S3
|
|
4942
4942
|
# @return [String]
|
4943
4943
|
#
|
4944
4944
|
# @!attribute [rw] expected_bucket_owner
|
4945
|
-
# The account
|
4945
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4946
4946
|
# by a different account, the request will fail with an HTTP `403
|
4947
4947
|
# (Access Denied)` error.
|
4948
4948
|
# @return [String]
|
@@ -4981,7 +4981,7 @@ module Aws::S3
|
|
4981
4981
|
# @return [String]
|
4982
4982
|
#
|
4983
4983
|
# @!attribute [rw] expected_bucket_owner
|
4984
|
-
# The account
|
4984
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
4985
4985
|
# by a different account, the request will fail with an HTTP `403
|
4986
4986
|
# (Access Denied)` error.
|
4987
4987
|
# @return [String]
|
@@ -5028,7 +5028,7 @@ module Aws::S3
|
|
5028
5028
|
# @return [String]
|
5029
5029
|
#
|
5030
5030
|
# @!attribute [rw] expected_bucket_owner
|
5031
|
-
# The account
|
5031
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
5032
5032
|
# by a different account, the request will fail with an HTTP `403
|
5033
5033
|
# (Access Denied)` error.
|
5034
5034
|
# @return [String]
|
@@ -5086,7 +5086,7 @@ module Aws::S3
|
|
5086
5086
|
# @return [String]
|
5087
5087
|
#
|
5088
5088
|
# @!attribute [rw] expected_bucket_owner
|
5089
|
-
# The account
|
5089
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
5090
5090
|
# by a different account, the request will fail with an HTTP `403
|
5091
5091
|
# (Access Denied)` error.
|
5092
5092
|
# @return [String]
|
@@ -5149,7 +5149,7 @@ module Aws::S3
|
|
5149
5149
|
#
|
5150
5150
|
#
|
5151
5151
|
#
|
5152
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
5152
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
5153
5153
|
# @return [String]
|
5154
5154
|
#
|
5155
5155
|
# @!attribute [rw] key
|
@@ -5173,7 +5173,7 @@ module Aws::S3
|
|
5173
5173
|
# @return [String]
|
5174
5174
|
#
|
5175
5175
|
# @!attribute [rw] expected_bucket_owner
|
5176
|
-
# The account
|
5176
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
5177
5177
|
# by a different account, the request will fail with an HTTP `403
|
5178
5178
|
# (Access Denied)` error.
|
5179
5179
|
# @return [String]
|
@@ -5228,7 +5228,7 @@ module Aws::S3
|
|
5228
5228
|
#
|
5229
5229
|
#
|
5230
5230
|
#
|
5231
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
5231
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
5232
5232
|
# @return [String]
|
5233
5233
|
#
|
5234
5234
|
# @!attribute [rw] key
|
@@ -5254,7 +5254,7 @@ module Aws::S3
|
|
5254
5254
|
# @return [String]
|
5255
5255
|
#
|
5256
5256
|
# @!attribute [rw] expected_bucket_owner
|
5257
|
-
# The account
|
5257
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
5258
5258
|
# by a different account, the request will fail with an HTTP `403
|
5259
5259
|
# (Access Denied)` error.
|
5260
5260
|
# @return [String]
|
@@ -5305,11 +5305,11 @@ module Aws::S3
|
|
5305
5305
|
#
|
5306
5306
|
#
|
5307
5307
|
#
|
5308
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
5308
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
5309
5309
|
# @return [String]
|
5310
5310
|
#
|
5311
5311
|
# @!attribute [rw] expected_bucket_owner
|
5312
|
-
# The account
|
5312
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
5313
5313
|
# by a different account, the request will fail with an HTTP `403
|
5314
5314
|
# (Access Denied)` error.
|
5315
5315
|
# @return [String]
|
@@ -5574,8 +5574,8 @@ module Aws::S3
|
|
5574
5574
|
#
|
5575
5575
|
#
|
5576
5576
|
#
|
5577
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
5578
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
5577
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
5578
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
5579
5579
|
# @return [String]
|
5580
5580
|
#
|
5581
5581
|
# @!attribute [rw] if_match
|
@@ -5684,7 +5684,7 @@ module Aws::S3
|
|
5684
5684
|
# @return [Integer]
|
5685
5685
|
#
|
5686
5686
|
# @!attribute [rw] expected_bucket_owner
|
5687
|
-
# The account
|
5687
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
5688
5688
|
# by a different account, the request will fail with an HTTP `403
|
5689
5689
|
# (Access Denied)` error.
|
5690
5690
|
# @return [String]
|
@@ -5754,7 +5754,7 @@ module Aws::S3
|
|
5754
5754
|
#
|
5755
5755
|
#
|
5756
5756
|
#
|
5757
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
5757
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
5758
5758
|
# @return [String]
|
5759
5759
|
#
|
5760
5760
|
# @!attribute [rw] key
|
@@ -5780,7 +5780,7 @@ module Aws::S3
|
|
5780
5780
|
# @return [String]
|
5781
5781
|
#
|
5782
5782
|
# @!attribute [rw] expected_bucket_owner
|
5783
|
-
# The account
|
5783
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
5784
5784
|
# by a different account, the request will fail with an HTTP `403
|
5785
5785
|
# (Access Denied)` error.
|
5786
5786
|
# @return [String]
|
@@ -5850,8 +5850,8 @@ module Aws::S3
|
|
5850
5850
|
#
|
5851
5851
|
#
|
5852
5852
|
#
|
5853
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
5854
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
5853
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
5854
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
5855
5855
|
# @return [String]
|
5856
5856
|
#
|
5857
5857
|
# @!attribute [rw] key
|
@@ -5864,7 +5864,7 @@ module Aws::S3
|
|
5864
5864
|
# @return [String]
|
5865
5865
|
#
|
5866
5866
|
# @!attribute [rw] expected_bucket_owner
|
5867
|
-
# The account
|
5867
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
5868
5868
|
# by a different account, the request will fail with an HTTP `403
|
5869
5869
|
# (Access Denied)` error.
|
5870
5870
|
# @return [String]
|
@@ -5943,7 +5943,7 @@ module Aws::S3
|
|
5943
5943
|
# @return [String]
|
5944
5944
|
#
|
5945
5945
|
# @!attribute [rw] expected_bucket_owner
|
5946
|
-
# The account
|
5946
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
5947
5947
|
# by a different account, the request will fail with an HTTP `403
|
5948
5948
|
# (Access Denied)` error.
|
5949
5949
|
# @return [String]
|
@@ -5986,7 +5986,7 @@ module Aws::S3
|
|
5986
5986
|
# @return [String]
|
5987
5987
|
#
|
5988
5988
|
# @!attribute [rw] expected_bucket_owner
|
5989
|
-
# The account
|
5989
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
5990
5990
|
# by a different account, the request will fail with an HTTP `403
|
5991
5991
|
# (Access Denied)` error.
|
5992
5992
|
# @return [String]
|
@@ -6158,12 +6158,12 @@ module Aws::S3
|
|
6158
6158
|
#
|
6159
6159
|
#
|
6160
6160
|
#
|
6161
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
6162
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
6161
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
6162
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
6163
6163
|
# @return [String]
|
6164
6164
|
#
|
6165
6165
|
# @!attribute [rw] expected_bucket_owner
|
6166
|
-
# The account
|
6166
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
6167
6167
|
# by a different account, the request will fail with an HTTP `403
|
6168
6168
|
# (Access Denied)` error.
|
6169
6169
|
# @return [String]
|
@@ -6494,8 +6494,8 @@ module Aws::S3
|
|
6494
6494
|
#
|
6495
6495
|
#
|
6496
6496
|
#
|
6497
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
6498
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
6497
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
6498
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
6499
6499
|
# @return [String]
|
6500
6500
|
#
|
6501
6501
|
# @!attribute [rw] if_match
|
@@ -6580,7 +6580,7 @@ module Aws::S3
|
|
6580
6580
|
# @return [Integer]
|
6581
6581
|
#
|
6582
6582
|
# @!attribute [rw] expected_bucket_owner
|
6583
|
-
# The account
|
6583
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
6584
6584
|
# by a different account, the request will fail with an HTTP `403
|
6585
6585
|
# (Access Denied)` error.
|
6586
6586
|
# @return [String]
|
@@ -7623,7 +7623,7 @@ module Aws::S3
|
|
7623
7623
|
# @return [String]
|
7624
7624
|
#
|
7625
7625
|
# @!attribute [rw] expected_bucket_owner
|
7626
|
-
# The account
|
7626
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
7627
7627
|
# by a different account, the request will fail with an HTTP `403
|
7628
7628
|
# (Access Denied)` error.
|
7629
7629
|
# @return [String]
|
@@ -7754,7 +7754,7 @@ module Aws::S3
|
|
7754
7754
|
# @return [String]
|
7755
7755
|
#
|
7756
7756
|
# @!attribute [rw] expected_bucket_owner
|
7757
|
-
# The account
|
7757
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
7758
7758
|
# by a different account, the request will fail with an HTTP `403
|
7759
7759
|
# (Access Denied)` error.
|
7760
7760
|
# @return [String]
|
@@ -7826,7 +7826,7 @@ module Aws::S3
|
|
7826
7826
|
# @return [String]
|
7827
7827
|
#
|
7828
7828
|
# @!attribute [rw] expected_bucket_owner
|
7829
|
-
# The account
|
7829
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
7830
7830
|
# by a different account, the request will fail with an HTTP `403
|
7831
7831
|
# (Access Denied)` error.
|
7832
7832
|
# @return [String]
|
@@ -7985,8 +7985,8 @@ module Aws::S3
|
|
7985
7985
|
#
|
7986
7986
|
#
|
7987
7987
|
#
|
7988
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
7989
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
7988
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
7989
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
7990
7990
|
# @return [String]
|
7991
7991
|
#
|
7992
7992
|
# @!attribute [rw] delimiter
|
@@ -8047,7 +8047,7 @@ module Aws::S3
|
|
8047
8047
|
# @return [String]
|
8048
8048
|
#
|
8049
8049
|
# @!attribute [rw] expected_bucket_owner
|
8050
|
-
# The account
|
8050
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
8051
8051
|
# by a different account, the request will fail with an HTTP `403
|
8052
8052
|
# (Access Denied)` error.
|
8053
8053
|
# @return [String]
|
@@ -8227,7 +8227,7 @@ module Aws::S3
|
|
8227
8227
|
# @return [String]
|
8228
8228
|
#
|
8229
8229
|
# @!attribute [rw] expected_bucket_owner
|
8230
|
-
# The account
|
8230
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
8231
8231
|
# by a different account, the request will fail with an HTTP `403
|
8232
8232
|
# (Access Denied)` error.
|
8233
8233
|
# @return [String]
|
@@ -8370,8 +8370,8 @@ module Aws::S3
|
|
8370
8370
|
#
|
8371
8371
|
#
|
8372
8372
|
#
|
8373
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
8374
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
8373
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
8374
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
8375
8375
|
# @return [String]
|
8376
8376
|
#
|
8377
8377
|
# @!attribute [rw] delimiter
|
@@ -8408,7 +8408,7 @@ module Aws::S3
|
|
8408
8408
|
# @return [String]
|
8409
8409
|
#
|
8410
8410
|
# @!attribute [rw] expected_bucket_owner
|
8411
|
-
# The account
|
8411
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
8412
8412
|
# by a different account, the request will fail with an HTTP `403
|
8413
8413
|
# (Access Denied)` error.
|
8414
8414
|
# @return [String]
|
@@ -8461,8 +8461,8 @@ module Aws::S3
|
|
8461
8461
|
#
|
8462
8462
|
#
|
8463
8463
|
#
|
8464
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
8465
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
8464
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
8465
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
8466
8466
|
# @return [String]
|
8467
8467
|
#
|
8468
8468
|
# @!attribute [rw] prefix
|
@@ -8596,8 +8596,8 @@ module Aws::S3
|
|
8596
8596
|
#
|
8597
8597
|
#
|
8598
8598
|
#
|
8599
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
8600
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
8599
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
8600
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
8601
8601
|
# @return [String]
|
8602
8602
|
#
|
8603
8603
|
# @!attribute [rw] delimiter
|
@@ -8644,7 +8644,7 @@ module Aws::S3
|
|
8644
8644
|
# @return [String]
|
8645
8645
|
#
|
8646
8646
|
# @!attribute [rw] expected_bucket_owner
|
8647
|
-
# The account
|
8647
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
8648
8648
|
# by a different account, the request will fail with an HTTP `403
|
8649
8649
|
# (Access Denied)` error.
|
8650
8650
|
# @return [String]
|
@@ -8811,8 +8811,8 @@ module Aws::S3
|
|
8811
8811
|
#
|
8812
8812
|
#
|
8813
8813
|
#
|
8814
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
8815
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
8814
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
8815
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
8816
8816
|
# @return [String]
|
8817
8817
|
#
|
8818
8818
|
# @!attribute [rw] key
|
@@ -8846,7 +8846,7 @@ module Aws::S3
|
|
8846
8846
|
# @return [String]
|
8847
8847
|
#
|
8848
8848
|
# @!attribute [rw] expected_bucket_owner
|
8849
|
-
# The account
|
8849
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
8850
8850
|
# by a different account, the request will fail with an HTTP `403
|
8851
8851
|
# (Access Denied)` error.
|
8852
8852
|
# @return [String]
|
@@ -9960,7 +9960,7 @@ module Aws::S3
|
|
9960
9960
|
# Amazon S3 bucket. You can enable the configuration options in any
|
9961
9961
|
# combination. For more information about when Amazon S3 considers a
|
9962
9962
|
# bucket or object public, see [The Meaning of "Public"][1] in the
|
9963
|
-
# *Amazon
|
9963
|
+
# *Amazon S3 User Guide*.
|
9964
9964
|
#
|
9965
9965
|
#
|
9966
9966
|
#
|
@@ -10054,7 +10054,7 @@ module Aws::S3
|
|
10054
10054
|
# @return [Types::AccelerateConfiguration]
|
10055
10055
|
#
|
10056
10056
|
# @!attribute [rw] expected_bucket_owner
|
10057
|
-
# The account
|
10057
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
10058
10058
|
# by a different account, the request will fail with an HTTP `403
|
10059
10059
|
# (Access Denied)` error.
|
10060
10060
|
# @return [String]
|
@@ -10152,7 +10152,7 @@ module Aws::S3
|
|
10152
10152
|
# @return [String]
|
10153
10153
|
#
|
10154
10154
|
# @!attribute [rw] expected_bucket_owner
|
10155
|
-
# The account
|
10155
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
10156
10156
|
# by a different account, the request will fail with an HTTP `403
|
10157
10157
|
# (Access Denied)` error.
|
10158
10158
|
# @return [String]
|
@@ -10229,7 +10229,7 @@ module Aws::S3
|
|
10229
10229
|
# @return [Types::AnalyticsConfiguration]
|
10230
10230
|
#
|
10231
10231
|
# @!attribute [rw] expected_bucket_owner
|
10232
|
-
# The account
|
10232
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
10233
10233
|
# by a different account, the request will fail with an HTTP `403
|
10234
10234
|
# (Access Denied)` error.
|
10235
10235
|
# @return [String]
|
@@ -10273,8 +10273,7 @@ module Aws::S3
|
|
10273
10273
|
# @!attribute [rw] cors_configuration
|
10274
10274
|
# Describes the cross-origin access configuration for objects in an
|
10275
10275
|
# Amazon S3 bucket. For more information, see [Enabling Cross-Origin
|
10276
|
-
# Resource Sharing][1] in the *Amazon
|
10277
|
-
# Guide*.
|
10276
|
+
# Resource Sharing][1] in the *Amazon S3 User Guide*.
|
10278
10277
|
#
|
10279
10278
|
#
|
10280
10279
|
#
|
@@ -10296,7 +10295,7 @@ module Aws::S3
|
|
10296
10295
|
# @return [String]
|
10297
10296
|
#
|
10298
10297
|
# @!attribute [rw] expected_bucket_owner
|
10299
|
-
# The account
|
10298
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
10300
10299
|
# by a different account, the request will fail with an HTTP `403
|
10301
10300
|
# (Access Denied)` error.
|
10302
10301
|
# @return [String]
|
@@ -10358,7 +10357,7 @@ module Aws::S3
|
|
10358
10357
|
# @return [Types::ServerSideEncryptionConfiguration]
|
10359
10358
|
#
|
10360
10359
|
# @!attribute [rw] expected_bucket_owner
|
10361
|
-
# The account
|
10360
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
10362
10361
|
# by a different account, the request will fail with an HTTP `403
|
10363
10362
|
# (Access Denied)` error.
|
10364
10363
|
# @return [String]
|
@@ -10481,7 +10480,7 @@ module Aws::S3
|
|
10481
10480
|
# @return [Types::InventoryConfiguration]
|
10482
10481
|
#
|
10483
10482
|
# @!attribute [rw] expected_bucket_owner
|
10484
|
-
# The account
|
10483
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
10485
10484
|
# by a different account, the request will fail with an HTTP `403
|
10486
10485
|
# (Access Denied)` error.
|
10487
10486
|
# @return [String]
|
@@ -10563,7 +10562,7 @@ module Aws::S3
|
|
10563
10562
|
# @return [Types::BucketLifecycleConfiguration]
|
10564
10563
|
#
|
10565
10564
|
# @!attribute [rw] expected_bucket_owner
|
10566
|
-
# The account
|
10565
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
10567
10566
|
# by a different account, the request will fail with an HTTP `403
|
10568
10567
|
# (Access Denied)` error.
|
10569
10568
|
# @return [String]
|
@@ -10628,7 +10627,7 @@ module Aws::S3
|
|
10628
10627
|
# @return [Types::LifecycleConfiguration]
|
10629
10628
|
#
|
10630
10629
|
# @!attribute [rw] expected_bucket_owner
|
10631
|
-
# The account
|
10630
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
10632
10631
|
# by a different account, the request will fail with an HTTP `403
|
10633
10632
|
# (Access Denied)` error.
|
10634
10633
|
# @return [String]
|
@@ -10687,7 +10686,7 @@ module Aws::S3
|
|
10687
10686
|
# @return [String]
|
10688
10687
|
#
|
10689
10688
|
# @!attribute [rw] expected_bucket_owner
|
10690
|
-
# The account
|
10689
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
10691
10690
|
# by a different account, the request will fail with an HTTP `403
|
10692
10691
|
# (Access Denied)` error.
|
10693
10692
|
# @return [String]
|
@@ -10744,7 +10743,7 @@ module Aws::S3
|
|
10744
10743
|
# @return [Types::MetricsConfiguration]
|
10745
10744
|
#
|
10746
10745
|
# @!attribute [rw] expected_bucket_owner
|
10747
|
-
# The account
|
10746
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
10748
10747
|
# by a different account, the request will fail with an HTTP `403
|
10749
10748
|
# (Access Denied)` error.
|
10750
10749
|
# @return [String]
|
@@ -10832,7 +10831,7 @@ module Aws::S3
|
|
10832
10831
|
# @return [Types::NotificationConfiguration]
|
10833
10832
|
#
|
10834
10833
|
# @!attribute [rw] expected_bucket_owner
|
10835
|
-
# The account
|
10834
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
10836
10835
|
# by a different account, the request will fail with an HTTP `403
|
10837
10836
|
# (Access Denied)` error.
|
10838
10837
|
# @return [String]
|
@@ -10893,7 +10892,7 @@ module Aws::S3
|
|
10893
10892
|
# @return [Types::NotificationConfigurationDeprecated]
|
10894
10893
|
#
|
10895
10894
|
# @!attribute [rw] expected_bucket_owner
|
10896
|
-
# The account
|
10895
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
10897
10896
|
# by a different account, the request will fail with an HTTP `403
|
10898
10897
|
# (Access Denied)` error.
|
10899
10898
|
# @return [String]
|
@@ -10938,7 +10937,7 @@ module Aws::S3
|
|
10938
10937
|
# @return [String]
|
10939
10938
|
#
|
10940
10939
|
# @!attribute [rw] expected_bucket_owner
|
10941
|
-
# The account
|
10940
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
10942
10941
|
# by a different account, the request will fail with an HTTP `403
|
10943
10942
|
# (Access Denied)` error.
|
10944
10943
|
# @return [String]
|
@@ -10991,7 +10990,7 @@ module Aws::S3
|
|
10991
10990
|
# @return [String]
|
10992
10991
|
#
|
10993
10992
|
# @!attribute [rw] expected_bucket_owner
|
10994
|
-
# The account
|
10993
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
10995
10994
|
# by a different account, the request will fail with an HTTP `403
|
10996
10995
|
# (Access Denied)` error.
|
10997
10996
|
# @return [String]
|
@@ -11110,7 +11109,7 @@ module Aws::S3
|
|
11110
11109
|
# @return [String]
|
11111
11110
|
#
|
11112
11111
|
# @!attribute [rw] expected_bucket_owner
|
11113
|
-
# The account
|
11112
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
11114
11113
|
# by a different account, the request will fail with an HTTP `403
|
11115
11114
|
# (Access Denied)` error.
|
11116
11115
|
# @return [String]
|
@@ -11162,7 +11161,7 @@ module Aws::S3
|
|
11162
11161
|
# @return [Types::RequestPaymentConfiguration]
|
11163
11162
|
#
|
11164
11163
|
# @!attribute [rw] expected_bucket_owner
|
11165
|
-
# The account
|
11164
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
11166
11165
|
# by a different account, the request will fail with an HTTP `403
|
11167
11166
|
# (Access Denied)` error.
|
11168
11167
|
# @return [String]
|
@@ -11218,7 +11217,7 @@ module Aws::S3
|
|
11218
11217
|
# @return [Types::Tagging]
|
11219
11218
|
#
|
11220
11219
|
# @!attribute [rw] expected_bucket_owner
|
11221
|
-
# The account
|
11220
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
11222
11221
|
# by a different account, the request will fail with an HTTP `403
|
11223
11222
|
# (Access Denied)` error.
|
11224
11223
|
# @return [String]
|
@@ -11277,7 +11276,7 @@ module Aws::S3
|
|
11277
11276
|
# @return [Types::VersioningConfiguration]
|
11278
11277
|
#
|
11279
11278
|
# @!attribute [rw] expected_bucket_owner
|
11280
|
-
# The account
|
11279
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
11281
11280
|
# by a different account, the request will fail with an HTTP `403
|
11282
11281
|
# (Access Denied)` error.
|
11283
11282
|
# @return [String]
|
@@ -11353,7 +11352,7 @@ module Aws::S3
|
|
11353
11352
|
# @return [Types::WebsiteConfiguration]
|
11354
11353
|
#
|
11355
11354
|
# @!attribute [rw] expected_bucket_owner
|
11356
|
-
# The account
|
11355
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
11357
11356
|
# by a different account, the request will fail with an HTTP `403
|
11358
11357
|
# (Access Denied)` error.
|
11359
11358
|
# @return [String]
|
@@ -11447,7 +11446,7 @@ module Aws::S3
|
|
11447
11446
|
#
|
11448
11447
|
#
|
11449
11448
|
#
|
11450
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
11449
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
11451
11450
|
# @return [String]
|
11452
11451
|
#
|
11453
11452
|
# @!attribute [rw] content_md5
|
@@ -11517,8 +11516,8 @@ module Aws::S3
|
|
11517
11516
|
#
|
11518
11517
|
#
|
11519
11518
|
#
|
11520
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
11521
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
11519
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
11520
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
11522
11521
|
# @return [String]
|
11523
11522
|
#
|
11524
11523
|
# @!attribute [rw] request_payer
|
@@ -11538,7 +11537,7 @@ module Aws::S3
|
|
11538
11537
|
# @return [String]
|
11539
11538
|
#
|
11540
11539
|
# @!attribute [rw] expected_bucket_owner
|
11541
|
-
# The account
|
11540
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
11542
11541
|
# by a different account, the request will fail with an HTTP `403
|
11543
11542
|
# (Access Denied)` error.
|
11544
11543
|
# @return [String]
|
@@ -11606,7 +11605,7 @@ module Aws::S3
|
|
11606
11605
|
#
|
11607
11606
|
#
|
11608
11607
|
#
|
11609
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
11608
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
11610
11609
|
# @return [String]
|
11611
11610
|
#
|
11612
11611
|
# @!attribute [rw] key
|
@@ -11642,7 +11641,7 @@ module Aws::S3
|
|
11642
11641
|
# @return [String]
|
11643
11642
|
#
|
11644
11643
|
# @!attribute [rw] expected_bucket_owner
|
11645
|
-
# The account
|
11644
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
11646
11645
|
# by a different account, the request will fail with an HTTP `403
|
11647
11646
|
# (Access Denied)` error.
|
11648
11647
|
# @return [String]
|
@@ -11729,7 +11728,7 @@ module Aws::S3
|
|
11729
11728
|
# @return [String]
|
11730
11729
|
#
|
11731
11730
|
# @!attribute [rw] expected_bucket_owner
|
11732
|
-
# The account
|
11731
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
11733
11732
|
# by a different account, the request will fail with an HTTP `403
|
11734
11733
|
# (Access Denied)` error.
|
11735
11734
|
# @return [String]
|
@@ -11906,8 +11905,8 @@ module Aws::S3
|
|
11906
11905
|
#
|
11907
11906
|
#
|
11908
11907
|
#
|
11909
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
11910
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
11908
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
11909
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
11911
11910
|
# @return [String]
|
11912
11911
|
#
|
11913
11912
|
# @!attribute [rw] cache_control
|
@@ -12155,7 +12154,7 @@ module Aws::S3
|
|
12155
12154
|
# @return [String]
|
12156
12155
|
#
|
12157
12156
|
# @!attribute [rw] expected_bucket_owner
|
12158
|
-
# The account
|
12157
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
12159
12158
|
# by a different account, the request will fail with an HTTP `403
|
12160
12159
|
# (Access Denied)` error.
|
12161
12160
|
# @return [String]
|
@@ -12244,7 +12243,7 @@ module Aws::S3
|
|
12244
12243
|
#
|
12245
12244
|
#
|
12246
12245
|
#
|
12247
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
12246
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
12248
12247
|
# @return [String]
|
12249
12248
|
#
|
12250
12249
|
# @!attribute [rw] key
|
@@ -12286,7 +12285,7 @@ module Aws::S3
|
|
12286
12285
|
# @return [String]
|
12287
12286
|
#
|
12288
12287
|
# @!attribute [rw] expected_bucket_owner
|
12289
|
-
# The account
|
12288
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
12290
12289
|
# by a different account, the request will fail with an HTTP `403
|
12291
12290
|
# (Access Denied)` error.
|
12292
12291
|
# @return [String]
|
@@ -12361,8 +12360,8 @@ module Aws::S3
|
|
12361
12360
|
#
|
12362
12361
|
#
|
12363
12362
|
#
|
12364
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
12365
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
12363
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
12364
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
12366
12365
|
# @return [String]
|
12367
12366
|
#
|
12368
12367
|
# @!attribute [rw] key
|
@@ -12385,7 +12384,7 @@ module Aws::S3
|
|
12385
12384
|
# @return [Types::Tagging]
|
12386
12385
|
#
|
12387
12386
|
# @!attribute [rw] expected_bucket_owner
|
12388
|
-
# The account
|
12387
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
12389
12388
|
# by a different account, the request will fail with an HTTP `403
|
12390
12389
|
# (Access Denied)` error.
|
12391
12390
|
# @return [String]
|
@@ -12456,7 +12455,7 @@ module Aws::S3
|
|
12456
12455
|
# @return [Types::PublicAccessBlockConfiguration]
|
12457
12456
|
#
|
12458
12457
|
# @!attribute [rw] expected_bucket_owner
|
12459
|
-
# The account
|
12458
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
12460
12459
|
# by a different account, the request will fail with an HTTP `403
|
12461
12460
|
# (Access Denied)` error.
|
12462
12461
|
# @return [String]
|
@@ -12562,7 +12561,7 @@ module Aws::S3
|
|
12562
12561
|
# @return [String]
|
12563
12562
|
#
|
12564
12563
|
# @!attribute [rw] events
|
12565
|
-
# A collection of bucket events for which to send notifications
|
12564
|
+
# A collection of bucket events for which to send notifications.
|
12566
12565
|
# @return [Array<String>]
|
12567
12566
|
#
|
12568
12567
|
# @!attribute [rw] queue
|
@@ -13008,7 +13007,7 @@ module Aws::S3
|
|
13008
13007
|
# filters in an `And` tag.
|
13009
13008
|
#
|
13010
13009
|
# * If you specify a filter based on multiple tags, wrap the `Tag`
|
13011
|
-
# elements in an `And` tag
|
13010
|
+
# elements in an `And` tag.
|
13012
13011
|
#
|
13013
13012
|
# @note When making an API call, you may pass ReplicationRuleAndOperator
|
13014
13013
|
# data as a hash:
|
@@ -13341,8 +13340,8 @@ module Aws::S3
|
|
13341
13340
|
#
|
13342
13341
|
#
|
13343
13342
|
#
|
13344
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
13345
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
13343
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
13344
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
13346
13345
|
# @return [String]
|
13347
13346
|
#
|
13348
13347
|
# @!attribute [rw] key
|
@@ -13370,7 +13369,7 @@ module Aws::S3
|
|
13370
13369
|
# @return [String]
|
13371
13370
|
#
|
13372
13371
|
# @!attribute [rw] expected_bucket_owner
|
13373
|
-
# The account
|
13372
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
13374
13373
|
# by a different account, the request will fail with an HTTP `403
|
13375
13374
|
# (Access Denied)` error.
|
13376
13375
|
# @return [String]
|
@@ -13524,8 +13523,7 @@ module Aws::S3
|
|
13524
13523
|
|
13525
13524
|
# Specifies the redirect behavior and when a redirect is applied. For
|
13526
13525
|
# more information about routing rules, see [Configuring advanced
|
13527
|
-
# conditional redirects][1] in the *Amazon
|
13528
|
-
# Guide*.
|
13526
|
+
# conditional redirects][1] in the *Amazon S3 User Guide*.
|
13529
13527
|
#
|
13530
13528
|
#
|
13531
13529
|
#
|
@@ -13574,7 +13572,7 @@ module Aws::S3
|
|
13574
13572
|
# Specifies lifecycle rules for an Amazon S3 bucket. For more
|
13575
13573
|
# information, see [Put Bucket Lifecycle Configuration][1] in the
|
13576
13574
|
# *Amazon Simple Storage Service API Reference*. For examples, see [Put
|
13577
|
-
# Bucket Lifecycle Configuration Examples][2]
|
13575
|
+
# Bucket Lifecycle Configuration Examples][2].
|
13578
13576
|
#
|
13579
13577
|
#
|
13580
13578
|
#
|
@@ -13641,7 +13639,7 @@ module Aws::S3
|
|
13641
13639
|
# Specifies when an object transitions to a specified storage class.
|
13642
13640
|
# For more information about Amazon S3 lifecycle configuration rules,
|
13643
13641
|
# see [Transitioning Objects Using Amazon S3 Lifecycle][1] in the
|
13644
|
-
# *Amazon
|
13642
|
+
# *Amazon S3 User Guide*.
|
13645
13643
|
#
|
13646
13644
|
#
|
13647
13645
|
#
|
@@ -14040,7 +14038,7 @@ module Aws::S3
|
|
14040
14038
|
# @return [Types::ScanRange]
|
14041
14039
|
#
|
14042
14040
|
# @!attribute [rw] expected_bucket_owner
|
14043
|
-
# The account
|
14041
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
14044
14042
|
# by a different account, the request will fail with an HTTP `403
|
14045
14043
|
# (Access Denied)` error.
|
14046
14044
|
# @return [String]
|
@@ -14245,7 +14243,7 @@ module Aws::S3
|
|
14245
14243
|
# Bucket Key. By default, S3 Bucket Key is not enabled.
|
14246
14244
|
#
|
14247
14245
|
# For more information, see [Amazon S3 Bucket Keys][1] in the *Amazon
|
14248
|
-
#
|
14246
|
+
# S3 User Guide*.
|
14249
14247
|
#
|
14250
14248
|
#
|
14251
14249
|
#
|
@@ -14606,8 +14604,8 @@ module Aws::S3
|
|
14606
14604
|
#
|
14607
14605
|
# @!attribute [rw] events
|
14608
14606
|
# The Amazon S3 bucket event about which to send notifications. For
|
14609
|
-
# more information, see [Supported Event Types][1] in the *Amazon
|
14610
|
-
#
|
14607
|
+
# more information, see [Supported Event Types][1] in the *Amazon S3
|
14608
|
+
# User Guide*.
|
14611
14609
|
#
|
14612
14610
|
#
|
14613
14611
|
#
|
@@ -14686,8 +14684,8 @@ module Aws::S3
|
|
14686
14684
|
|
14687
14685
|
# Specifies when an object transitions to a specified storage class. For
|
14688
14686
|
# more information about Amazon S3 lifecycle configuration rules, see
|
14689
|
-
# [Transitioning Objects Using Amazon S3 Lifecycle][1] in the *Amazon
|
14690
|
-
#
|
14687
|
+
# [Transitioning Objects Using Amazon S3 Lifecycle][1] in the *Amazon S3
|
14688
|
+
# User Guide*.
|
14691
14689
|
#
|
14692
14690
|
#
|
14693
14691
|
#
|
@@ -14834,8 +14832,8 @@ module Aws::S3
|
|
14834
14832
|
#
|
14835
14833
|
#
|
14836
14834
|
#
|
14837
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
14838
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
14835
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
14836
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
14839
14837
|
# @return [String]
|
14840
14838
|
#
|
14841
14839
|
# @!attribute [rw] copy_source
|
@@ -14882,7 +14880,7 @@ module Aws::S3
|
|
14882
14880
|
#
|
14883
14881
|
#
|
14884
14882
|
#
|
14885
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
14883
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points.html
|
14886
14884
|
# @return [String]
|
14887
14885
|
#
|
14888
14886
|
# @!attribute [rw] copy_source_if_match
|
@@ -14977,13 +14975,13 @@ module Aws::S3
|
|
14977
14975
|
# @return [String]
|
14978
14976
|
#
|
14979
14977
|
# @!attribute [rw] expected_bucket_owner
|
14980
|
-
# The account
|
14978
|
+
# The account ID of the expected destination bucket owner. If the
|
14981
14979
|
# destination bucket is owned by a different account, the request will
|
14982
14980
|
# fail with an HTTP `403 (Access Denied)` error.
|
14983
14981
|
# @return [String]
|
14984
14982
|
#
|
14985
14983
|
# @!attribute [rw] expected_source_bucket_owner
|
14986
|
-
# The account
|
14984
|
+
# The account ID of the expected source bucket owner. If the source
|
14987
14985
|
# bucket is owned by a different account, the request will fail with
|
14988
14986
|
# an HTTP `403 (Access Denied)` error.
|
14989
14987
|
# @return [String]
|
@@ -15111,8 +15109,8 @@ module Aws::S3
|
|
15111
15109
|
#
|
15112
15110
|
#
|
15113
15111
|
#
|
15114
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
15115
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
15112
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html
|
15113
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
15116
15114
|
# @return [String]
|
15117
15115
|
#
|
15118
15116
|
# @!attribute [rw] content_length
|
@@ -15174,7 +15172,7 @@ module Aws::S3
|
|
15174
15172
|
# @return [String]
|
15175
15173
|
#
|
15176
15174
|
# @!attribute [rw] expected_bucket_owner
|
15177
|
-
# The account
|
15175
|
+
# The account ID of the expected bucket owner. If the bucket is owned
|
15178
15176
|
# by a different account, the request will fail with an HTTP `403
|
15179
15177
|
# (Access Denied)` error.
|
15180
15178
|
# @return [String]
|
@@ -15298,6 +15296,315 @@ module Aws::S3
|
|
15298
15296
|
include Aws::Structure
|
15299
15297
|
end
|
15300
15298
|
|
15299
|
+
# @note When making an API call, you may pass WriteGetObjectResponseRequest
|
15300
|
+
# data as a hash:
|
15301
|
+
#
|
15302
|
+
# {
|
15303
|
+
# request_route: "RequestRoute", # required
|
15304
|
+
# request_token: "RequestToken", # required
|
15305
|
+
# body: source_file,
|
15306
|
+
# status_code: 1,
|
15307
|
+
# error_code: "ErrorCode",
|
15308
|
+
# error_message: "ErrorMessage",
|
15309
|
+
# accept_ranges: "AcceptRanges",
|
15310
|
+
# cache_control: "CacheControl",
|
15311
|
+
# content_disposition: "ContentDisposition",
|
15312
|
+
# content_encoding: "ContentEncoding",
|
15313
|
+
# content_language: "ContentLanguage",
|
15314
|
+
# content_length: 1,
|
15315
|
+
# content_range: "ContentRange",
|
15316
|
+
# content_type: "ContentType",
|
15317
|
+
# delete_marker: false,
|
15318
|
+
# etag: "ETag",
|
15319
|
+
# expires: Time.now,
|
15320
|
+
# expiration: "Expiration",
|
15321
|
+
# last_modified: Time.now,
|
15322
|
+
# missing_meta: 1,
|
15323
|
+
# metadata: {
|
15324
|
+
# "MetadataKey" => "MetadataValue",
|
15325
|
+
# },
|
15326
|
+
# object_lock_mode: "GOVERNANCE", # accepts GOVERNANCE, COMPLIANCE
|
15327
|
+
# object_lock_legal_hold_status: "ON", # accepts ON, OFF
|
15328
|
+
# object_lock_retain_until_date: Time.now,
|
15329
|
+
# parts_count: 1,
|
15330
|
+
# replication_status: "COMPLETE", # accepts COMPLETE, PENDING, FAILED, REPLICA
|
15331
|
+
# request_charged: "requester", # accepts requester
|
15332
|
+
# restore: "Restore",
|
15333
|
+
# server_side_encryption: "AES256", # accepts AES256, aws:kms
|
15334
|
+
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
15335
|
+
# ssekms_key_id: "SSEKMSKeyId",
|
15336
|
+
# sse_customer_key_md5: "SSECustomerKeyMD5",
|
15337
|
+
# storage_class: "STANDARD", # accepts STANDARD, REDUCED_REDUNDANCY, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER, DEEP_ARCHIVE, OUTPOSTS
|
15338
|
+
# tag_count: 1,
|
15339
|
+
# version_id: "ObjectVersionId",
|
15340
|
+
# bucket_key_enabled: false,
|
15341
|
+
# }
|
15342
|
+
#
|
15343
|
+
# @!attribute [rw] request_route
|
15344
|
+
# Route prefix to the HTTP URL generated.
|
15345
|
+
# @return [String]
|
15346
|
+
#
|
15347
|
+
# @!attribute [rw] request_token
|
15348
|
+
# A single use encrypted token that maps `WriteGetObjectResponse` to
|
15349
|
+
# the end user `GetObject` request.
|
15350
|
+
# @return [String]
|
15351
|
+
#
|
15352
|
+
# @!attribute [rw] body
|
15353
|
+
# The object data.
|
15354
|
+
# @return [IO]
|
15355
|
+
#
|
15356
|
+
# @!attribute [rw] status_code
|
15357
|
+
# The integer status code for an HTTP response of a corresponding
|
15358
|
+
# `GetObject` request.
|
15359
|
+
#
|
15360
|
+
# **Status Codes**
|
15361
|
+
#
|
15362
|
+
# * *200 - OK*
|
15363
|
+
#
|
15364
|
+
# * *206 - Partial Content*
|
15365
|
+
#
|
15366
|
+
# * *304 - Not Modified*
|
15367
|
+
#
|
15368
|
+
# * *400 - Bad Request*
|
15369
|
+
#
|
15370
|
+
# * *401 - Unauthorized*
|
15371
|
+
#
|
15372
|
+
# * *403 - Forbidden*
|
15373
|
+
#
|
15374
|
+
# * *404 - Not Found*
|
15375
|
+
#
|
15376
|
+
# * *405 - Method Not Allowed*
|
15377
|
+
#
|
15378
|
+
# * *409 - Conflict*
|
15379
|
+
#
|
15380
|
+
# * *411 - Length Required*
|
15381
|
+
#
|
15382
|
+
# * *412 - Precondition Failed*
|
15383
|
+
#
|
15384
|
+
# * *416 - Range Not Satisfiable*
|
15385
|
+
#
|
15386
|
+
# * *500 - Internal Server Error*
|
15387
|
+
#
|
15388
|
+
# * *503 - Service Unavailable*
|
15389
|
+
# @return [Integer]
|
15390
|
+
#
|
15391
|
+
# @!attribute [rw] error_code
|
15392
|
+
# A string that uniquely identifies an error condition. Returned in
|
15393
|
+
# the <Code> tag of the error XML response for a corresponding
|
15394
|
+
# `GetObject` call. Cannot be used with a successful `StatusCode`
|
15395
|
+
# header or when the transformed object is provided in the body.
|
15396
|
+
# @return [String]
|
15397
|
+
#
|
15398
|
+
# @!attribute [rw] error_message
|
15399
|
+
# Contains a generic description of the error condition. Returned in
|
15400
|
+
# the <Message> tag of the error XML response for a
|
15401
|
+
# corresponding `GetObject` call. Cannot be used with a successful
|
15402
|
+
# `StatusCode` header or when the transformed object is provided in
|
15403
|
+
# body.
|
15404
|
+
# @return [String]
|
15405
|
+
#
|
15406
|
+
# @!attribute [rw] accept_ranges
|
15407
|
+
# Indicates that a range of bytes was specified.
|
15408
|
+
# @return [String]
|
15409
|
+
#
|
15410
|
+
# @!attribute [rw] cache_control
|
15411
|
+
# Specifies caching behavior along the request/reply chain.
|
15412
|
+
# @return [String]
|
15413
|
+
#
|
15414
|
+
# @!attribute [rw] content_disposition
|
15415
|
+
# Specifies presentational information for the object.
|
15416
|
+
# @return [String]
|
15417
|
+
#
|
15418
|
+
# @!attribute [rw] content_encoding
|
15419
|
+
# Specifies what content encodings have been applied to the object and
|
15420
|
+
# thus what decoding mechanisms must be applied to obtain the
|
15421
|
+
# media-type referenced by the Content-Type header field.
|
15422
|
+
# @return [String]
|
15423
|
+
#
|
15424
|
+
# @!attribute [rw] content_language
|
15425
|
+
# The language the content is in.
|
15426
|
+
# @return [String]
|
15427
|
+
#
|
15428
|
+
# @!attribute [rw] content_length
|
15429
|
+
# The size of the content body in bytes.
|
15430
|
+
# @return [Integer]
|
15431
|
+
#
|
15432
|
+
# @!attribute [rw] content_range
|
15433
|
+
# The portion of the object returned in the response.
|
15434
|
+
# @return [String]
|
15435
|
+
#
|
15436
|
+
# @!attribute [rw] content_type
|
15437
|
+
# A standard MIME type describing the format of the object data.
|
15438
|
+
# @return [String]
|
15439
|
+
#
|
15440
|
+
# @!attribute [rw] delete_marker
|
15441
|
+
# Specifies whether an object stored in Amazon S3 is (`true`) or is
|
15442
|
+
# not (`false`) a delete marker.
|
15443
|
+
# @return [Boolean]
|
15444
|
+
#
|
15445
|
+
# @!attribute [rw] etag
|
15446
|
+
# An opaque identifier assigned by a web server to a specific version
|
15447
|
+
# of a resource found at a URL.
|
15448
|
+
# @return [String]
|
15449
|
+
#
|
15450
|
+
# @!attribute [rw] expires
|
15451
|
+
# The date and time at which the object is no longer cacheable.
|
15452
|
+
# @return [Time]
|
15453
|
+
#
|
15454
|
+
# @!attribute [rw] expiration
|
15455
|
+
# If object stored in Amazon S3 expiration is configured (see PUT
|
15456
|
+
# Bucket lifecycle) it includes expiry-date and rule-id key-value
|
15457
|
+
# pairs providing object expiration information. The value of the
|
15458
|
+
# rule-id is URL encoded.
|
15459
|
+
# @return [String]
|
15460
|
+
#
|
15461
|
+
# @!attribute [rw] last_modified
|
15462
|
+
# The date and time that the object was last modified.
|
15463
|
+
# @return [Time]
|
15464
|
+
#
|
15465
|
+
# @!attribute [rw] missing_meta
|
15466
|
+
# Set to the number of metadata entries not returned in `x-amz-meta`
|
15467
|
+
# headers. This can happen if you create metadata using an API like
|
15468
|
+
# SOAP that supports more flexible metadata than the REST API. For
|
15469
|
+
# example, using SOAP, you can create metadata whose values are not
|
15470
|
+
# legal HTTP headers.
|
15471
|
+
# @return [Integer]
|
15472
|
+
#
|
15473
|
+
# @!attribute [rw] metadata
|
15474
|
+
# A map of metadata to store with the object in S3.
|
15475
|
+
# @return [Hash<String,String>]
|
15476
|
+
#
|
15477
|
+
# @!attribute [rw] object_lock_mode
|
15478
|
+
# Indicates whether an object stored in Amazon S3 has Object Lock
|
15479
|
+
# enabled. For more information about S3 Object Lock, see [Object
|
15480
|
+
# Lock][1].
|
15481
|
+
#
|
15482
|
+
#
|
15483
|
+
#
|
15484
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lock.html
|
15485
|
+
# @return [String]
|
15486
|
+
#
|
15487
|
+
# @!attribute [rw] object_lock_legal_hold_status
|
15488
|
+
# Indicates whether an object stored in Amazon S3 has an active legal
|
15489
|
+
# hold.
|
15490
|
+
# @return [String]
|
15491
|
+
#
|
15492
|
+
# @!attribute [rw] object_lock_retain_until_date
|
15493
|
+
# The date and time when Object Lock is configured to expire.
|
15494
|
+
# @return [Time]
|
15495
|
+
#
|
15496
|
+
# @!attribute [rw] parts_count
|
15497
|
+
# The count of parts this object has.
|
15498
|
+
# @return [Integer]
|
15499
|
+
#
|
15500
|
+
# @!attribute [rw] replication_status
|
15501
|
+
# Indicates if request involves bucket that is either a source or
|
15502
|
+
# destination in a Replication rule. For more information about S3
|
15503
|
+
# Replication, see [Replication][1].
|
15504
|
+
#
|
15505
|
+
#
|
15506
|
+
#
|
15507
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/replication.html
|
15508
|
+
# @return [String]
|
15509
|
+
#
|
15510
|
+
# @!attribute [rw] request_charged
|
15511
|
+
# If present, indicates that the requester was successfully charged
|
15512
|
+
# for the request.
|
15513
|
+
# @return [String]
|
15514
|
+
#
|
15515
|
+
# @!attribute [rw] restore
|
15516
|
+
# Provides information about object restoration operation and
|
15517
|
+
# expiration time of the restored object copy.
|
15518
|
+
# @return [String]
|
15519
|
+
#
|
15520
|
+
# @!attribute [rw] server_side_encryption
|
15521
|
+
# The server-side encryption algorithm used when storing requested
|
15522
|
+
# object in Amazon S3 (for example, AES256, aws:kms).
|
15523
|
+
# @return [String]
|
15524
|
+
#
|
15525
|
+
# @!attribute [rw] sse_customer_algorithm
|
15526
|
+
# Encryption algorithm used if server-side encryption with a
|
15527
|
+
# customer-provided encryption key was specified for object stored in
|
15528
|
+
# Amazon S3.
|
15529
|
+
# @return [String]
|
15530
|
+
#
|
15531
|
+
# @!attribute [rw] ssekms_key_id
|
15532
|
+
# If present, specifies the ID of the AWS Key Management Service (AWS
|
15533
|
+
# KMS) symmetric customer managed customer master key (CMK) that was
|
15534
|
+
# used for stored in Amazon S3 object.
|
15535
|
+
# @return [String]
|
15536
|
+
#
|
15537
|
+
# @!attribute [rw] sse_customer_key_md5
|
15538
|
+
# 128-bit MD5 digest of customer-provided encryption key used in
|
15539
|
+
# Amazon S3 to encrypt data stored in S3. For more information, see
|
15540
|
+
# [Protecting data using server-side encryption with customer-provided
|
15541
|
+
# encryption keys (SSE-C)][1].
|
15542
|
+
#
|
15543
|
+
#
|
15544
|
+
#
|
15545
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerSideEncryptionCustomerKeys.html
|
15546
|
+
# @return [String]
|
15547
|
+
#
|
15548
|
+
# @!attribute [rw] storage_class
|
15549
|
+
# The class of storage used to store object in Amazon S3.
|
15550
|
+
# @return [String]
|
15551
|
+
#
|
15552
|
+
# @!attribute [rw] tag_count
|
15553
|
+
# The number of tags, if any, on the object.
|
15554
|
+
# @return [Integer]
|
15555
|
+
#
|
15556
|
+
# @!attribute [rw] version_id
|
15557
|
+
# An ID used to reference a specific version of the object.
|
15558
|
+
# @return [String]
|
15559
|
+
#
|
15560
|
+
# @!attribute [rw] bucket_key_enabled
|
15561
|
+
# Indicates whether the object stored in Amazon S3 uses an S3 bucket
|
15562
|
+
# key for server-side encryption with AWS KMS (SSE-KMS).
|
15563
|
+
# @return [Boolean]
|
15564
|
+
#
|
15565
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/WriteGetObjectResponseRequest AWS API Documentation
|
15566
|
+
#
|
15567
|
+
class WriteGetObjectResponseRequest < Struct.new(
|
15568
|
+
:request_route,
|
15569
|
+
:request_token,
|
15570
|
+
:body,
|
15571
|
+
:status_code,
|
15572
|
+
:error_code,
|
15573
|
+
:error_message,
|
15574
|
+
:accept_ranges,
|
15575
|
+
:cache_control,
|
15576
|
+
:content_disposition,
|
15577
|
+
:content_encoding,
|
15578
|
+
:content_language,
|
15579
|
+
:content_length,
|
15580
|
+
:content_range,
|
15581
|
+
:content_type,
|
15582
|
+
:delete_marker,
|
15583
|
+
:etag,
|
15584
|
+
:expires,
|
15585
|
+
:expiration,
|
15586
|
+
:last_modified,
|
15587
|
+
:missing_meta,
|
15588
|
+
:metadata,
|
15589
|
+
:object_lock_mode,
|
15590
|
+
:object_lock_legal_hold_status,
|
15591
|
+
:object_lock_retain_until_date,
|
15592
|
+
:parts_count,
|
15593
|
+
:replication_status,
|
15594
|
+
:request_charged,
|
15595
|
+
:restore,
|
15596
|
+
:server_side_encryption,
|
15597
|
+
:sse_customer_algorithm,
|
15598
|
+
:ssekms_key_id,
|
15599
|
+
:sse_customer_key_md5,
|
15600
|
+
:storage_class,
|
15601
|
+
:tag_count,
|
15602
|
+
:version_id,
|
15603
|
+
:bucket_key_enabled)
|
15604
|
+
SENSITIVE = [:ssekms_key_id]
|
15605
|
+
include Aws::Structure
|
15606
|
+
end
|
15607
|
+
|
15301
15608
|
# The container for selecting objects from a content event stream.
|
15302
15609
|
#
|
15303
15610
|
# EventStream is an Enumerator of Events.
|