aws-sdk-s3control 1.73.0 → 1.74.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3control/client.rb +222 -35
- data/lib/aws-sdk-s3control/client_api.rb +8 -1
- data/lib/aws-sdk-s3control/plugins/endpoints.rb +3 -2
- data/lib/aws-sdk-s3control/types.rb +193 -11
- data/lib/aws-sdk-s3control.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 97b1cad2a91d5de00ed7e311fb527e1a27de5d585554a7f5078e7e39ce0b15a9
|
|
4
|
+
data.tar.gz: d13620045ac634ba69ed1a8da37d2aedda82a4ce0682ef05f06725c95815e717
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 23d24966a3e664ccd6d6d057a25004dcd6e518ef718f9105857ca4c6c7f6519862d22af19ab214abf85314bf12ab4a94ddac4387820bb1b3f1eb36ccb7e09739
|
|
7
|
+
data.tar.gz: 4c28ef07dc9eda8fe2fc693dccbff43c55092cea7d527ece53bf29af4ce627448ada444297d5216d57745e0cc958c192df1493c013a267aedad5b976441e3a2f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.74.0
|
|
@@ -757,6 +757,10 @@ module Aws::S3Control
|
|
|
757
757
|
req.send_request(options)
|
|
758
758
|
end
|
|
759
759
|
|
|
760
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
761
|
+
#
|
|
762
|
+
# </note>
|
|
763
|
+
#
|
|
760
764
|
# Creates an access point and associates it with the specified bucket.
|
|
761
765
|
# For more information, see [Managing Data Access with Amazon S3 Access
|
|
762
766
|
# Points][1] in the *Amazon S3 User Guide*.
|
|
@@ -876,6 +880,10 @@ module Aws::S3Control
|
|
|
876
880
|
req.send_request(options)
|
|
877
881
|
end
|
|
878
882
|
|
|
883
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
884
|
+
#
|
|
885
|
+
# </note>
|
|
886
|
+
#
|
|
879
887
|
# Creates an Object Lambda Access Point. For more information, see
|
|
880
888
|
# [Transforming objects with Object Lambda Access Points][1] in the
|
|
881
889
|
# *Amazon S3 User Guide*.
|
|
@@ -1107,35 +1115,42 @@ module Aws::S3Control
|
|
|
1107
1115
|
req.send_request(options)
|
|
1108
1116
|
end
|
|
1109
1117
|
|
|
1118
|
+
# This operation creates an S3 Batch Operations job.
|
|
1119
|
+
#
|
|
1110
1120
|
# You can use S3 Batch Operations to perform large-scale batch actions
|
|
1111
1121
|
# on Amazon S3 objects. Batch Operations can run a single action on
|
|
1112
1122
|
# lists of Amazon S3 objects that you specify. For more information, see
|
|
1113
1123
|
# [S3 Batch Operations][1] in the *Amazon S3 User Guide*.
|
|
1114
1124
|
#
|
|
1115
|
-
#
|
|
1125
|
+
# Permissions
|
|
1126
|
+
#
|
|
1127
|
+
# : For information about permissions required to use the Batch
|
|
1128
|
+
# Operations, see [Granting permissions for S3 Batch Operations][2] in
|
|
1129
|
+
# the *Amazon S3 User Guide*.
|
|
1116
1130
|
#
|
|
1117
1131
|
#
|
|
1118
1132
|
#
|
|
1119
1133
|
# Related actions include:
|
|
1120
1134
|
#
|
|
1121
|
-
# * [DescribeJob][
|
|
1135
|
+
# * [DescribeJob][3]
|
|
1122
1136
|
#
|
|
1123
|
-
# * [ListJobs][
|
|
1137
|
+
# * [ListJobs][4]
|
|
1124
1138
|
#
|
|
1125
|
-
# * [UpdateJobPriority][
|
|
1139
|
+
# * [UpdateJobPriority][5]
|
|
1126
1140
|
#
|
|
1127
|
-
# * [UpdateJobStatus][
|
|
1141
|
+
# * [UpdateJobStatus][6]
|
|
1128
1142
|
#
|
|
1129
|
-
# * [JobOperation][
|
|
1143
|
+
# * [JobOperation][7]
|
|
1130
1144
|
#
|
|
1131
1145
|
#
|
|
1132
1146
|
#
|
|
1133
1147
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/batch-ops.html
|
|
1134
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
|
1135
|
-
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
|
1136
|
-
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
|
1137
|
-
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
|
1138
|
-
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
|
1148
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html
|
|
1149
|
+
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DescribeJob.html
|
|
1150
|
+
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListJobs.html
|
|
1151
|
+
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobPriority.html
|
|
1152
|
+
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
|
1153
|
+
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_JobOperation.html
|
|
1139
1154
|
#
|
|
1140
1155
|
# @option params [String] :account_id
|
|
1141
1156
|
# The Amazon Web Services account ID that creates the job.
|
|
@@ -1202,9 +1217,13 @@ module Aws::S3Control
|
|
|
1202
1217
|
# operation: { # required
|
|
1203
1218
|
# lambda_invoke: {
|
|
1204
1219
|
# function_arn: "FunctionArnString",
|
|
1220
|
+
# invocation_schema_version: "NonEmptyMaxLength64String",
|
|
1221
|
+
# user_arguments: {
|
|
1222
|
+
# "NonEmptyMaxLength64String" => "MaxLength1024String",
|
|
1223
|
+
# },
|
|
1205
1224
|
# },
|
|
1206
1225
|
# s3_put_object_copy: {
|
|
1207
|
-
# target_resource: "
|
|
1226
|
+
# target_resource: "S3RegionalOrS3ExpressBucketArnString",
|
|
1208
1227
|
# canned_access_control_list: "private", # accepts private, public-read, public-read-write, aws-exec-read, authenticated-read, bucket-owner-read, bucket-owner-full-control
|
|
1209
1228
|
# access_control_grants: [
|
|
1210
1229
|
# {
|
|
@@ -1378,6 +1397,10 @@ module Aws::S3Control
|
|
|
1378
1397
|
req.send_request(options)
|
|
1379
1398
|
end
|
|
1380
1399
|
|
|
1400
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
1401
|
+
#
|
|
1402
|
+
# </note>
|
|
1403
|
+
#
|
|
1381
1404
|
# Creates a Multi-Region Access Point and associates it with the
|
|
1382
1405
|
# specified buckets. For more information about creating Multi-Region
|
|
1383
1406
|
# Access Points, see [Creating Multi-Region Access Points][1] in the
|
|
@@ -1733,6 +1756,10 @@ module Aws::S3Control
|
|
|
1733
1756
|
req.send_request(options)
|
|
1734
1757
|
end
|
|
1735
1758
|
|
|
1759
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
1760
|
+
#
|
|
1761
|
+
# </note>
|
|
1762
|
+
#
|
|
1736
1763
|
# Deletes the specified access point.
|
|
1737
1764
|
#
|
|
1738
1765
|
# All Amazon S3 on Outposts REST API requests for this action require an
|
|
@@ -1796,6 +1823,10 @@ module Aws::S3Control
|
|
|
1796
1823
|
req.send_request(options)
|
|
1797
1824
|
end
|
|
1798
1825
|
|
|
1826
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
1827
|
+
#
|
|
1828
|
+
# </note>
|
|
1829
|
+
#
|
|
1799
1830
|
# Deletes the specified Object Lambda Access Point.
|
|
1800
1831
|
#
|
|
1801
1832
|
# The following actions are related to
|
|
@@ -1838,6 +1869,10 @@ module Aws::S3Control
|
|
|
1838
1869
|
req.send_request(options)
|
|
1839
1870
|
end
|
|
1840
1871
|
|
|
1872
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
1873
|
+
#
|
|
1874
|
+
# </note>
|
|
1875
|
+
#
|
|
1841
1876
|
# Deletes the access point policy for the specified access point.
|
|
1842
1877
|
#
|
|
1843
1878
|
#
|
|
@@ -1899,6 +1934,10 @@ module Aws::S3Control
|
|
|
1899
1934
|
req.send_request(options)
|
|
1900
1935
|
end
|
|
1901
1936
|
|
|
1937
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
1938
|
+
#
|
|
1939
|
+
# </note>
|
|
1940
|
+
#
|
|
1902
1941
|
# Removes the resource policy for an Object Lambda Access Point.
|
|
1903
1942
|
#
|
|
1904
1943
|
# The following actions are related to
|
|
@@ -2348,12 +2387,13 @@ module Aws::S3Control
|
|
|
2348
2387
|
end
|
|
2349
2388
|
|
|
2350
2389
|
# Removes the entire tag set from the specified S3 Batch Operations job.
|
|
2351
|
-
# To use the `DeleteJobTagging` operation, you must have permission to
|
|
2352
|
-
# perform the `s3:DeleteJobTagging` action. For more information, see
|
|
2353
|
-
# [Controlling access and labeling jobs using tags][1] in the *Amazon S3
|
|
2354
|
-
# User Guide*.
|
|
2355
2390
|
#
|
|
2391
|
+
# Permissions
|
|
2356
2392
|
#
|
|
2393
|
+
# : To use the `DeleteJobTagging` operation, you must have permission to
|
|
2394
|
+
# perform the `s3:DeleteJobTagging` action. For more information, see
|
|
2395
|
+
# [Controlling access and labeling jobs using tags][1] in the *Amazon
|
|
2396
|
+
# S3 User Guide*.
|
|
2357
2397
|
#
|
|
2358
2398
|
# Related actions include:
|
|
2359
2399
|
#
|
|
@@ -2395,6 +2435,10 @@ module Aws::S3Control
|
|
|
2395
2435
|
req.send_request(options)
|
|
2396
2436
|
end
|
|
2397
2437
|
|
|
2438
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
2439
|
+
#
|
|
2440
|
+
# </note>
|
|
2441
|
+
#
|
|
2398
2442
|
# Deletes a Multi-Region Access Point. This action does not delete the
|
|
2399
2443
|
# buckets associated with the Multi-Region Access Point, only the
|
|
2400
2444
|
# Multi-Region Access Point itself.
|
|
@@ -2469,6 +2513,10 @@ module Aws::S3Control
|
|
|
2469
2513
|
req.send_request(options)
|
|
2470
2514
|
end
|
|
2471
2515
|
|
|
2516
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
2517
|
+
#
|
|
2518
|
+
# </note>
|
|
2519
|
+
#
|
|
2472
2520
|
# Removes the `PublicAccessBlock` configuration for an Amazon Web
|
|
2473
2521
|
# Services account. For more information, see [ Using Amazon S3 block
|
|
2474
2522
|
# public access][1].
|
|
@@ -2506,6 +2554,10 @@ module Aws::S3Control
|
|
|
2506
2554
|
req.send_request(options)
|
|
2507
2555
|
end
|
|
2508
2556
|
|
|
2557
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
2558
|
+
#
|
|
2559
|
+
# </note>
|
|
2560
|
+
#
|
|
2509
2561
|
# Deletes the Amazon S3 Storage Lens configuration. For more information
|
|
2510
2562
|
# about S3 Storage Lens, see [Assessing your storage activity and usage
|
|
2511
2563
|
# with Amazon S3 Storage Lens ][1] in the *Amazon S3 User Guide*.
|
|
@@ -2546,6 +2598,10 @@ module Aws::S3Control
|
|
|
2546
2598
|
req.send_request(options)
|
|
2547
2599
|
end
|
|
2548
2600
|
|
|
2601
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
2602
|
+
#
|
|
2603
|
+
# </note>
|
|
2604
|
+
#
|
|
2549
2605
|
# Deletes the Amazon S3 Storage Lens configuration tags. For more
|
|
2550
2606
|
# information about S3 Storage Lens, see [Assessing your storage
|
|
2551
2607
|
# activity and usage with Amazon S3 Storage Lens ][1] in the *Amazon S3
|
|
@@ -2631,7 +2687,10 @@ module Aws::S3Control
|
|
|
2631
2687
|
# Operations job. For more information, see [S3 Batch Operations][1] in
|
|
2632
2688
|
# the *Amazon S3 User Guide*.
|
|
2633
2689
|
#
|
|
2690
|
+
# Permissions
|
|
2634
2691
|
#
|
|
2692
|
+
# : To use the `DescribeJob` operation, you must have permission to
|
|
2693
|
+
# perform the `s3:DescribeJob` action.
|
|
2635
2694
|
#
|
|
2636
2695
|
# Related actions include:
|
|
2637
2696
|
#
|
|
@@ -2683,6 +2742,9 @@ module Aws::S3Control
|
|
|
2683
2742
|
# resp.job.manifest.location.object_version_id #=> String
|
|
2684
2743
|
# resp.job.manifest.location.etag #=> String
|
|
2685
2744
|
# resp.job.operation.lambda_invoke.function_arn #=> String
|
|
2745
|
+
# resp.job.operation.lambda_invoke.invocation_schema_version #=> String
|
|
2746
|
+
# resp.job.operation.lambda_invoke.user_arguments #=> Hash
|
|
2747
|
+
# resp.job.operation.lambda_invoke.user_arguments["NonEmptyMaxLength64String"] #=> String
|
|
2686
2748
|
# resp.job.operation.s3_put_object_copy.target_resource #=> String
|
|
2687
2749
|
# resp.job.operation.s3_put_object_copy.canned_access_control_list #=> String, one of "private", "public-read", "public-read-write", "aws-exec-read", "authenticated-read", "bucket-owner-read", "bucket-owner-full-control"
|
|
2688
2750
|
# resp.job.operation.s3_put_object_copy.access_control_grants #=> Array
|
|
@@ -2791,6 +2853,10 @@ module Aws::S3Control
|
|
|
2791
2853
|
req.send_request(options)
|
|
2792
2854
|
end
|
|
2793
2855
|
|
|
2856
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
2857
|
+
#
|
|
2858
|
+
# </note>
|
|
2859
|
+
#
|
|
2794
2860
|
# Retrieves the status of an asynchronous request to manage a
|
|
2795
2861
|
# Multi-Region Access Point. For more information about managing
|
|
2796
2862
|
# Multi-Region Access Points and how asynchronous requests work, see
|
|
@@ -3130,6 +3196,10 @@ module Aws::S3Control
|
|
|
3130
3196
|
req.send_request(options)
|
|
3131
3197
|
end
|
|
3132
3198
|
|
|
3199
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
3200
|
+
#
|
|
3201
|
+
# </note>
|
|
3202
|
+
#
|
|
3133
3203
|
# Returns configuration information about the specified access point.
|
|
3134
3204
|
#
|
|
3135
3205
|
#
|
|
@@ -3224,6 +3294,10 @@ module Aws::S3Control
|
|
|
3224
3294
|
req.send_request(options)
|
|
3225
3295
|
end
|
|
3226
3296
|
|
|
3297
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
3298
|
+
#
|
|
3299
|
+
# </note>
|
|
3300
|
+
#
|
|
3227
3301
|
# Returns configuration for an Object Lambda Access Point.
|
|
3228
3302
|
#
|
|
3229
3303
|
# The following actions are related to
|
|
@@ -3277,6 +3351,10 @@ module Aws::S3Control
|
|
|
3277
3351
|
req.send_request(options)
|
|
3278
3352
|
end
|
|
3279
3353
|
|
|
3354
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
3355
|
+
#
|
|
3356
|
+
# </note>
|
|
3357
|
+
#
|
|
3280
3358
|
# Returns configuration information about the specified Object Lambda
|
|
3281
3359
|
# Access Point
|
|
3282
3360
|
#
|
|
@@ -3335,6 +3413,10 @@ module Aws::S3Control
|
|
|
3335
3413
|
req.send_request(options)
|
|
3336
3414
|
end
|
|
3337
3415
|
|
|
3416
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
3417
|
+
#
|
|
3418
|
+
# </note>
|
|
3419
|
+
#
|
|
3338
3420
|
# Returns the access point policy associated with the specified access
|
|
3339
3421
|
# point.
|
|
3340
3422
|
#
|
|
@@ -3392,6 +3474,10 @@ module Aws::S3Control
|
|
|
3392
3474
|
req.send_request(options)
|
|
3393
3475
|
end
|
|
3394
3476
|
|
|
3477
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
3478
|
+
#
|
|
3479
|
+
# </note>
|
|
3480
|
+
#
|
|
3395
3481
|
# Returns the resource policy for an Object Lambda Access Point.
|
|
3396
3482
|
#
|
|
3397
3483
|
# The following actions are related to
|
|
@@ -3437,6 +3523,10 @@ module Aws::S3Control
|
|
|
3437
3523
|
req.send_request(options)
|
|
3438
3524
|
end
|
|
3439
3525
|
|
|
3526
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
3527
|
+
#
|
|
3528
|
+
# </note>
|
|
3529
|
+
#
|
|
3440
3530
|
# Indicates whether the specified access point currently has a policy
|
|
3441
3531
|
# that allows public access. For more information about public access
|
|
3442
3532
|
# through access points, see [Managing Data Access with Amazon S3 access
|
|
@@ -3476,6 +3566,10 @@ module Aws::S3Control
|
|
|
3476
3566
|
req.send_request(options)
|
|
3477
3567
|
end
|
|
3478
3568
|
|
|
3569
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
3570
|
+
#
|
|
3571
|
+
# </note>
|
|
3572
|
+
#
|
|
3479
3573
|
# Returns the status of the resource policy associated with an Object
|
|
3480
3574
|
# Lambda Access Point.
|
|
3481
3575
|
#
|
|
@@ -3510,9 +3604,11 @@ module Aws::S3Control
|
|
|
3510
3604
|
req.send_request(options)
|
|
3511
3605
|
end
|
|
3512
3606
|
|
|
3513
|
-
# Gets an Amazon S3 on Outposts bucket. For more information, see [
|
|
3607
|
+
# <note markdown="1"> Gets an Amazon S3 on Outposts bucket. For more information, see [
|
|
3514
3608
|
# Using Amazon S3 on Outposts][1] in the *Amazon S3 User Guide*.
|
|
3515
3609
|
#
|
|
3610
|
+
# </note>
|
|
3611
|
+
#
|
|
3516
3612
|
# If you are using an identity other than the root user of the Amazon
|
|
3517
3613
|
# Web Services account that owns the Outposts bucket, the calling
|
|
3518
3614
|
# identity must have the `s3-outposts:GetBucket` permissions on the
|
|
@@ -4209,12 +4305,14 @@ module Aws::S3Control
|
|
|
4209
4305
|
req.send_request(options)
|
|
4210
4306
|
end
|
|
4211
4307
|
|
|
4212
|
-
# Returns the tags on an S3 Batch Operations job.
|
|
4213
|
-
# `GetJobTagging` operation, you must have permission to perform the
|
|
4214
|
-
# `s3:GetJobTagging` action. For more information, see [Controlling
|
|
4215
|
-
# access and labeling jobs using tags][1] in the *Amazon S3 User Guide*.
|
|
4308
|
+
# Returns the tags on an S3 Batch Operations job.
|
|
4216
4309
|
#
|
|
4310
|
+
# Permissions
|
|
4217
4311
|
#
|
|
4312
|
+
# : To use the `GetJobTagging` operation, you must have permission to
|
|
4313
|
+
# perform the `s3:GetJobTagging` action. For more information, see
|
|
4314
|
+
# [Controlling access and labeling jobs using tags][1] in the *Amazon
|
|
4315
|
+
# S3 User Guide*.
|
|
4218
4316
|
#
|
|
4219
4317
|
# Related actions include:
|
|
4220
4318
|
#
|
|
@@ -4265,6 +4363,10 @@ module Aws::S3Control
|
|
|
4265
4363
|
req.send_request(options)
|
|
4266
4364
|
end
|
|
4267
4365
|
|
|
4366
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
4367
|
+
#
|
|
4368
|
+
# </note>
|
|
4369
|
+
#
|
|
4268
4370
|
# Returns configuration information about the specified Multi-Region
|
|
4269
4371
|
# Access Point.
|
|
4270
4372
|
#
|
|
@@ -4342,6 +4444,10 @@ module Aws::S3Control
|
|
|
4342
4444
|
req.send_request(options)
|
|
4343
4445
|
end
|
|
4344
4446
|
|
|
4447
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
4448
|
+
#
|
|
4449
|
+
# </note>
|
|
4450
|
+
#
|
|
4345
4451
|
# Returns the access control policy of the specified Multi-Region Access
|
|
4346
4452
|
# Point.
|
|
4347
4453
|
#
|
|
@@ -4403,6 +4509,10 @@ module Aws::S3Control
|
|
|
4403
4509
|
req.send_request(options)
|
|
4404
4510
|
end
|
|
4405
4511
|
|
|
4512
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
4513
|
+
#
|
|
4514
|
+
# </note>
|
|
4515
|
+
#
|
|
4406
4516
|
# Indicates whether the specified Multi-Region Access Point has an
|
|
4407
4517
|
# access control policy that allows public access.
|
|
4408
4518
|
#
|
|
@@ -4463,6 +4573,10 @@ module Aws::S3Control
|
|
|
4463
4573
|
req.send_request(options)
|
|
4464
4574
|
end
|
|
4465
4575
|
|
|
4576
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
4577
|
+
#
|
|
4578
|
+
# </note>
|
|
4579
|
+
#
|
|
4466
4580
|
# Returns the routing configuration for a Multi-Region Access Point,
|
|
4467
4581
|
# indicating which Regions are active or passive.
|
|
4468
4582
|
#
|
|
@@ -4520,6 +4634,10 @@ module Aws::S3Control
|
|
|
4520
4634
|
req.send_request(options)
|
|
4521
4635
|
end
|
|
4522
4636
|
|
|
4637
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
4638
|
+
#
|
|
4639
|
+
# </note>
|
|
4640
|
+
#
|
|
4523
4641
|
# Retrieves the `PublicAccessBlock` configuration for an Amazon Web
|
|
4524
4642
|
# Services account. For more information, see [ Using Amazon S3 block
|
|
4525
4643
|
# public access][1].
|
|
@@ -4566,6 +4684,10 @@ module Aws::S3Control
|
|
|
4566
4684
|
req.send_request(options)
|
|
4567
4685
|
end
|
|
4568
4686
|
|
|
4687
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
4688
|
+
#
|
|
4689
|
+
# </note>
|
|
4690
|
+
#
|
|
4569
4691
|
# Gets the Amazon S3 Storage Lens configuration. For more information,
|
|
4570
4692
|
# see [Assessing your storage activity and usage with Amazon S3 Storage
|
|
4571
4693
|
# Lens ][1] in the *Amazon S3 User Guide*. For a complete list of S3
|
|
@@ -4649,6 +4771,10 @@ module Aws::S3Control
|
|
|
4649
4771
|
req.send_request(options)
|
|
4650
4772
|
end
|
|
4651
4773
|
|
|
4774
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
4775
|
+
#
|
|
4776
|
+
# </note>
|
|
4777
|
+
#
|
|
4652
4778
|
# Gets the tags of Amazon S3 Storage Lens configuration. For more
|
|
4653
4779
|
# information about S3 Storage Lens, see [Assessing your storage
|
|
4654
4780
|
# activity and usage with Amazon S3 Storage Lens ][1] in the *Amazon S3
|
|
@@ -5012,6 +5138,10 @@ module Aws::S3Control
|
|
|
5012
5138
|
req.send_request(options)
|
|
5013
5139
|
end
|
|
5014
5140
|
|
|
5141
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
5142
|
+
#
|
|
5143
|
+
# </note>
|
|
5144
|
+
#
|
|
5015
5145
|
# Returns a list of the access points that are owned by the current
|
|
5016
5146
|
# account that's associated with the specified bucket. You can retrieve
|
|
5017
5147
|
# up to 1000 access points per call. If the specified bucket has more
|
|
@@ -5114,6 +5244,10 @@ module Aws::S3Control
|
|
|
5114
5244
|
req.send_request(options)
|
|
5115
5245
|
end
|
|
5116
5246
|
|
|
5247
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
5248
|
+
#
|
|
5249
|
+
# </note>
|
|
5250
|
+
#
|
|
5117
5251
|
# Returns some or all (up to 1,000) access points associated with the
|
|
5118
5252
|
# Object Lambda Access Point per call. If there are more access points
|
|
5119
5253
|
# than what can be returned in one call, the response will include a
|
|
@@ -5185,10 +5319,15 @@ module Aws::S3Control
|
|
|
5185
5319
|
req.send_request(options)
|
|
5186
5320
|
end
|
|
5187
5321
|
|
|
5188
|
-
# Lists current S3 Batch Operations jobs
|
|
5189
|
-
# the last 30 days for the Amazon Web Services account
|
|
5190
|
-
# request. For more information, see [S3 Batch Operations][1]
|
|
5191
|
-
# *Amazon S3 User Guide*.
|
|
5322
|
+
# Lists current S3 Batch Operations jobs as well as the jobs that have
|
|
5323
|
+
# ended within the last 30 days for the Amazon Web Services account
|
|
5324
|
+
# making the request. For more information, see [S3 Batch Operations][1]
|
|
5325
|
+
# in the *Amazon S3 User Guide*.
|
|
5326
|
+
#
|
|
5327
|
+
# Permissions
|
|
5328
|
+
#
|
|
5329
|
+
# : To use the `ListJobs` operation, you must have permission to perform
|
|
5330
|
+
# the `s3:ListJobs` action.
|
|
5192
5331
|
#
|
|
5193
5332
|
# Related actions include:
|
|
5194
5333
|
#
|
|
@@ -5270,6 +5409,10 @@ module Aws::S3Control
|
|
|
5270
5409
|
req.send_request(options)
|
|
5271
5410
|
end
|
|
5272
5411
|
|
|
5412
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
5413
|
+
#
|
|
5414
|
+
# </note>
|
|
5415
|
+
#
|
|
5273
5416
|
# Returns a list of the Multi-Region Access Points currently associated
|
|
5274
5417
|
# with the specified Amazon Web Services account. Each call can return
|
|
5275
5418
|
# up to 100 Multi-Region Access Points, the maximum number of
|
|
@@ -5350,6 +5493,10 @@ module Aws::S3Control
|
|
|
5350
5493
|
req.send_request(options)
|
|
5351
5494
|
end
|
|
5352
5495
|
|
|
5496
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
5497
|
+
#
|
|
5498
|
+
# </note>
|
|
5499
|
+
#
|
|
5353
5500
|
# Returns a list of all Outposts buckets in an Outpost that are owned by
|
|
5354
5501
|
# the authenticated sender of the request. For more information, see
|
|
5355
5502
|
# [Using Amazon S3 on Outposts][1] in the *Amazon S3 User Guide*.
|
|
@@ -5412,6 +5559,10 @@ module Aws::S3Control
|
|
|
5412
5559
|
req.send_request(options)
|
|
5413
5560
|
end
|
|
5414
5561
|
|
|
5562
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
5563
|
+
#
|
|
5564
|
+
# </note>
|
|
5565
|
+
#
|
|
5415
5566
|
# Gets a list of Amazon S3 Storage Lens configurations. For more
|
|
5416
5567
|
# information about S3 Storage Lens, see [Assessing your storage
|
|
5417
5568
|
# activity and usage with Amazon S3 Storage Lens ][1] in the *Amazon S3
|
|
@@ -5632,6 +5783,10 @@ module Aws::S3Control
|
|
|
5632
5783
|
req.send_request(options)
|
|
5633
5784
|
end
|
|
5634
5785
|
|
|
5786
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
5787
|
+
#
|
|
5788
|
+
# </note>
|
|
5789
|
+
#
|
|
5635
5790
|
# Replaces configuration for an Object Lambda Access Point.
|
|
5636
5791
|
#
|
|
5637
5792
|
# The following actions are related to
|
|
@@ -5689,6 +5844,10 @@ module Aws::S3Control
|
|
|
5689
5844
|
req.send_request(options)
|
|
5690
5845
|
end
|
|
5691
5846
|
|
|
5847
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
5848
|
+
#
|
|
5849
|
+
# </note>
|
|
5850
|
+
#
|
|
5692
5851
|
# Associates an access policy with the specified access point. Each
|
|
5693
5852
|
# access point can have only one policy, so a request made to this API
|
|
5694
5853
|
# replaces any existing policy associated with the specified access
|
|
@@ -5765,6 +5924,10 @@ module Aws::S3Control
|
|
|
5765
5924
|
req.send_request(options)
|
|
5766
5925
|
end
|
|
5767
5926
|
|
|
5927
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
5928
|
+
#
|
|
5929
|
+
# </note>
|
|
5930
|
+
#
|
|
5768
5931
|
# Creates or replaces resource policy for an Object Lambda Access Point.
|
|
5769
5932
|
# For an example policy, see [Creating Object Lambda Access Points][1]
|
|
5770
5933
|
# in the *Amazon S3 User Guide*.
|
|
@@ -6481,13 +6644,11 @@ module Aws::S3Control
|
|
|
6481
6644
|
# that is associated with the job. To modify the existing tag set, you
|
|
6482
6645
|
# can either replace the existing tag set entirely, or make changes
|
|
6483
6646
|
# within the existing tag set by retrieving the existing tag set using
|
|
6484
|
-
# [GetJobTagging][1], modify that tag set, and use this
|
|
6647
|
+
# [GetJobTagging][1], modify that tag set, and use this operation to
|
|
6485
6648
|
# replace the tag set with the one you modified. For more information,
|
|
6486
6649
|
# see [Controlling access and labeling jobs using tags][2] in the
|
|
6487
6650
|
# *Amazon S3 User Guide*.
|
|
6488
6651
|
#
|
|
6489
|
-
#
|
|
6490
|
-
#
|
|
6491
6652
|
# <note markdown="1"> * If you send this request with an empty tag set, Amazon S3 deletes
|
|
6492
6653
|
# the existing tag set on the Batch Operations job. If you use this
|
|
6493
6654
|
# method, you are charged for a Tier 1 Request (PUT). For more
|
|
@@ -6515,10 +6676,10 @@ module Aws::S3Control
|
|
|
6515
6676
|
#
|
|
6516
6677
|
# </note>
|
|
6517
6678
|
#
|
|
6679
|
+
# Permissions
|
|
6518
6680
|
#
|
|
6519
|
-
#
|
|
6520
|
-
#
|
|
6521
|
-
# perform the `s3:PutJobTagging` action.
|
|
6681
|
+
# : To use the `PutJobTagging` operation, you must have permission to
|
|
6682
|
+
# perform the `s3:PutJobTagging` action.
|
|
6522
6683
|
#
|
|
6523
6684
|
# Related actions include:
|
|
6524
6685
|
#
|
|
@@ -6571,6 +6732,10 @@ module Aws::S3Control
|
|
|
6571
6732
|
req.send_request(options)
|
|
6572
6733
|
end
|
|
6573
6734
|
|
|
6735
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
6736
|
+
#
|
|
6737
|
+
# </note>
|
|
6738
|
+
#
|
|
6574
6739
|
# Associates an access control policy with the specified Multi-Region
|
|
6575
6740
|
# Access Point. Each Multi-Region Access Point can have only one policy,
|
|
6576
6741
|
# so a request made to this action replaces any existing policy that is
|
|
@@ -6637,6 +6802,10 @@ module Aws::S3Control
|
|
|
6637
6802
|
req.send_request(options)
|
|
6638
6803
|
end
|
|
6639
6804
|
|
|
6805
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
6806
|
+
#
|
|
6807
|
+
# </note>
|
|
6808
|
+
#
|
|
6640
6809
|
# Creates or modifies the `PublicAccessBlock` configuration for an
|
|
6641
6810
|
# Amazon Web Services account. For this operation, users must have the
|
|
6642
6811
|
# `s3:PutAccountPublicAccessBlock` permission. For more information, see
|
|
@@ -6685,6 +6854,10 @@ module Aws::S3Control
|
|
|
6685
6854
|
req.send_request(options)
|
|
6686
6855
|
end
|
|
6687
6856
|
|
|
6857
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
6858
|
+
#
|
|
6859
|
+
# </note>
|
|
6860
|
+
#
|
|
6688
6861
|
# Puts an Amazon S3 Storage Lens configuration. For more information
|
|
6689
6862
|
# about S3 Storage Lens, see [Working with Amazon S3 Storage Lens][1] in
|
|
6690
6863
|
# the *Amazon S3 User Guide*. For a complete list of S3 Storage Lens
|
|
@@ -6823,6 +6996,10 @@ module Aws::S3Control
|
|
|
6823
6996
|
req.send_request(options)
|
|
6824
6997
|
end
|
|
6825
6998
|
|
|
6999
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
7000
|
+
#
|
|
7001
|
+
# </note>
|
|
7002
|
+
#
|
|
6826
7003
|
# Put or replace tags on an existing Amazon S3 Storage Lens
|
|
6827
7004
|
# configuration. For more information about S3 Storage Lens, see
|
|
6828
7005
|
# [Assessing your storage activity and usage with Amazon S3 Storage Lens
|
|
@@ -6877,6 +7054,10 @@ module Aws::S3Control
|
|
|
6877
7054
|
req.send_request(options)
|
|
6878
7055
|
end
|
|
6879
7056
|
|
|
7057
|
+
# <note markdown="1"> This operation is not supported by directory buckets.
|
|
7058
|
+
#
|
|
7059
|
+
# </note>
|
|
7060
|
+
#
|
|
6880
7061
|
# Submits an updated route configuration for a Multi-Region Access
|
|
6881
7062
|
# Point. This API operation updates the routing status for the specified
|
|
6882
7063
|
# Regions from active to passive, or from passive to active. A value of
|
|
@@ -7153,7 +7334,10 @@ module Aws::S3Control
|
|
|
7153
7334
|
# information, see [S3 Batch Operations][1] in the *Amazon S3 User
|
|
7154
7335
|
# Guide*.
|
|
7155
7336
|
#
|
|
7337
|
+
# Permissions
|
|
7156
7338
|
#
|
|
7339
|
+
# : To use the `UpdateJobPriority` operation, you must have permission
|
|
7340
|
+
# to perform the `s3:UpdateJobPriority` action.
|
|
7157
7341
|
#
|
|
7158
7342
|
# Related actions include:
|
|
7159
7343
|
#
|
|
@@ -7210,12 +7394,15 @@ module Aws::S3Control
|
|
|
7210
7394
|
req.send_request(options)
|
|
7211
7395
|
end
|
|
7212
7396
|
|
|
7213
|
-
# Updates the status for the specified job. Use this
|
|
7214
|
-
# that you want to run a job or to cancel an existing job. For
|
|
7215
|
-
# information, see [S3 Batch Operations][1] in the *Amazon S3 User
|
|
7397
|
+
# Updates the status for the specified job. Use this operation to
|
|
7398
|
+
# confirm that you want to run a job or to cancel an existing job. For
|
|
7399
|
+
# more information, see [S3 Batch Operations][1] in the *Amazon S3 User
|
|
7216
7400
|
# Guide*.
|
|
7217
7401
|
#
|
|
7402
|
+
# Permissions
|
|
7218
7403
|
#
|
|
7404
|
+
# : To use the `UpdateJobStatus` operation, you must have permission to
|
|
7405
|
+
# perform the `s3:UpdateJobStatus` action.
|
|
7219
7406
|
#
|
|
7220
7407
|
# Related actions include:
|
|
7221
7408
|
#
|
|
@@ -7392,7 +7579,7 @@ module Aws::S3Control
|
|
|
7392
7579
|
params: params,
|
|
7393
7580
|
config: config)
|
|
7394
7581
|
context[:gem_name] = 'aws-sdk-s3control'
|
|
7395
|
-
context[:gem_version] = '1.
|
|
7582
|
+
context[:gem_version] = '1.74.0'
|
|
7396
7583
|
Seahorse::Client::Request.new(handlers, context)
|
|
7397
7584
|
end
|
|
7398
7585
|
|
|
@@ -440,6 +440,7 @@ module Aws::S3Control
|
|
|
440
440
|
S3Prefix = Shapes::StringShape.new(name: 'S3Prefix')
|
|
441
441
|
S3PrefixType = Shapes::StringShape.new(name: 'S3PrefixType')
|
|
442
442
|
S3RegionalBucketArn = Shapes::StringShape.new(name: 'S3RegionalBucketArn')
|
|
443
|
+
S3RegionalOrS3ExpressBucketArnString = Shapes::StringShape.new(name: 'S3RegionalOrS3ExpressBucketArnString')
|
|
443
444
|
S3ReplicateObjectOperation = Shapes::StructureShape.new(name: 'S3ReplicateObjectOperation')
|
|
444
445
|
S3ResourceArn = Shapes::StringShape.new(name: 'S3ResourceArn')
|
|
445
446
|
S3Retention = Shapes::StructureShape.new(name: 'S3Retention')
|
|
@@ -516,6 +517,7 @@ module Aws::S3Control
|
|
|
516
517
|
UpdateJobStatusRequest = Shapes::StructureShape.new(name: 'UpdateJobStatusRequest')
|
|
517
518
|
UpdateJobStatusResult = Shapes::StructureShape.new(name: 'UpdateJobStatusResult')
|
|
518
519
|
UpdateStorageLensGroupRequest = Shapes::StructureShape.new(name: 'UpdateStorageLensGroupRequest')
|
|
520
|
+
UserArguments = Shapes::MapShape.new(name: 'UserArguments')
|
|
519
521
|
VersioningConfiguration = Shapes::StructureShape.new(name: 'VersioningConfiguration')
|
|
520
522
|
VpcConfiguration = Shapes::StructureShape.new(name: 'VpcConfiguration')
|
|
521
523
|
VpcId = Shapes::StringShape.new(name: 'VpcId')
|
|
@@ -1242,6 +1244,8 @@ module Aws::S3Control
|
|
|
1242
1244
|
KeyNameConstraint.struct_class = Types::KeyNameConstraint
|
|
1243
1245
|
|
|
1244
1246
|
LambdaInvokeOperation.add_member(:function_arn, Shapes::ShapeRef.new(shape: FunctionArnString, location_name: "FunctionArn"))
|
|
1247
|
+
LambdaInvokeOperation.add_member(:invocation_schema_version, Shapes::ShapeRef.new(shape: NonEmptyMaxLength64String, location_name: "InvocationSchemaVersion"))
|
|
1248
|
+
LambdaInvokeOperation.add_member(:user_arguments, Shapes::ShapeRef.new(shape: UserArguments, location_name: "UserArguments"))
|
|
1245
1249
|
LambdaInvokeOperation.struct_class = Types::LambdaInvokeOperation
|
|
1246
1250
|
|
|
1247
1251
|
LifecycleConfiguration.add_member(:rules, Shapes::ShapeRef.new(shape: LifecycleRules, location_name: "Rules"))
|
|
@@ -1711,7 +1715,7 @@ module Aws::S3Control
|
|
|
1711
1715
|
S3BucketDestination.add_member(:encryption, Shapes::ShapeRef.new(shape: StorageLensDataExportEncryption, location_name: "Encryption"))
|
|
1712
1716
|
S3BucketDestination.struct_class = Types::S3BucketDestination
|
|
1713
1717
|
|
|
1714
|
-
S3CopyObjectOperation.add_member(:target_resource, Shapes::ShapeRef.new(shape:
|
|
1718
|
+
S3CopyObjectOperation.add_member(:target_resource, Shapes::ShapeRef.new(shape: S3RegionalOrS3ExpressBucketArnString, location_name: "TargetResource"))
|
|
1715
1719
|
S3CopyObjectOperation.add_member(:canned_access_control_list, Shapes::ShapeRef.new(shape: S3CannedAccessControlList, location_name: "CannedAccessControlList", metadata: {"box"=>true}))
|
|
1716
1720
|
S3CopyObjectOperation.add_member(:access_control_grants, Shapes::ShapeRef.new(shape: S3GrantList, location_name: "AccessControlGrants", metadata: {"box"=>true}))
|
|
1717
1721
|
S3CopyObjectOperation.add_member(:metadata_directive, Shapes::ShapeRef.new(shape: S3MetadataDirective, location_name: "MetadataDirective"))
|
|
@@ -1990,6 +1994,9 @@ module Aws::S3Control
|
|
|
1990
1994
|
UpdateStorageLensGroupRequest.add_member(:storage_lens_group, Shapes::ShapeRef.new(shape: StorageLensGroup, required: true, location_name: "StorageLensGroup"))
|
|
1991
1995
|
UpdateStorageLensGroupRequest.struct_class = Types::UpdateStorageLensGroupRequest
|
|
1992
1996
|
|
|
1997
|
+
UserArguments.key = Shapes::ShapeRef.new(shape: NonEmptyMaxLength64String)
|
|
1998
|
+
UserArguments.value = Shapes::ShapeRef.new(shape: MaxLength1024String)
|
|
1999
|
+
|
|
1993
2000
|
VersioningConfiguration.add_member(:mfa_delete, Shapes::ShapeRef.new(shape: MFADelete, location_name: "MfaDelete"))
|
|
1994
2001
|
VersioningConfiguration.add_member(:status, Shapes::ShapeRef.new(shape: BucketVersioningStatus, location_name: "Status"))
|
|
1995
2002
|
VersioningConfiguration.struct_class = Types::VersioningConfiguration
|
|
@@ -25,16 +25,17 @@ module Aws::S3Control
|
|
|
25
25
|
# @api private
|
|
26
26
|
class Handler < Seahorse::Client::Handler
|
|
27
27
|
def call(context)
|
|
28
|
-
# If endpoint was discovered, do not resolve or apply the endpoint.
|
|
29
28
|
unless context[:discovered_endpoint]
|
|
30
29
|
params = parameters_for_operation(context)
|
|
31
30
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
|
32
31
|
|
|
33
32
|
context.http_request.endpoint = endpoint.url
|
|
34
33
|
apply_endpoint_headers(context, endpoint.headers)
|
|
34
|
+
|
|
35
|
+
context[:endpoint_params] = params
|
|
36
|
+
context[:endpoint_properties] = endpoint.properties
|
|
35
37
|
end
|
|
36
38
|
|
|
37
|
-
context[:endpoint_params] = params
|
|
38
39
|
context[:auth_scheme] =
|
|
39
40
|
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
|
40
41
|
|
|
@@ -1991,7 +1991,7 @@ module Aws::S3Control
|
|
|
1991
1991
|
# S3 on Outposts uses the `OUTPOSTS` storage class to create the
|
|
1992
1992
|
# object replicas.
|
|
1993
1993
|
#
|
|
1994
|
-
# <note markdown="1"> Values other than `OUTPOSTS`
|
|
1994
|
+
# <note markdown="1"> Values other than `OUTPOSTS` aren't supported by Amazon S3 on
|
|
1995
1995
|
# Outposts.
|
|
1996
1996
|
#
|
|
1997
1997
|
# </note>
|
|
@@ -3726,7 +3726,12 @@ module Aws::S3Control
|
|
|
3726
3726
|
#
|
|
3727
3727
|
# @!attribute [rw] location
|
|
3728
3728
|
# Contains the information required to locate the specified job's
|
|
3729
|
-
# manifest.
|
|
3729
|
+
# manifest. Manifests can't be imported from directory buckets. For
|
|
3730
|
+
# more information, see [Directory buckets][1].
|
|
3731
|
+
#
|
|
3732
|
+
#
|
|
3733
|
+
#
|
|
3734
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-overview.html
|
|
3730
3735
|
# @return [Types::JobManifestLocation]
|
|
3731
3736
|
#
|
|
3732
3737
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/JobManifest AWS API Documentation
|
|
@@ -3822,6 +3827,12 @@ module Aws::S3Control
|
|
|
3822
3827
|
end
|
|
3823
3828
|
|
|
3824
3829
|
# Contains the information required to locate a manifest object.
|
|
3830
|
+
# Manifests can't be imported from directory buckets. For more
|
|
3831
|
+
# information, see [Directory buckets][1].
|
|
3832
|
+
#
|
|
3833
|
+
#
|
|
3834
|
+
#
|
|
3835
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-overview.html
|
|
3825
3836
|
#
|
|
3826
3837
|
# @!attribute [rw] object_arn
|
|
3827
3838
|
# The Amazon Resource Name (ARN) for a manifest object.
|
|
@@ -3899,21 +3910,37 @@ module Aws::S3Control
|
|
|
3899
3910
|
# @!attribute [rw] s3_put_object_acl
|
|
3900
3911
|
# Directs the specified job to run a `PutObjectAcl` call on every
|
|
3901
3912
|
# object in the manifest.
|
|
3913
|
+
#
|
|
3914
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
3915
|
+
#
|
|
3916
|
+
# </note>
|
|
3902
3917
|
# @return [Types::S3SetObjectAclOperation]
|
|
3903
3918
|
#
|
|
3904
3919
|
# @!attribute [rw] s3_put_object_tagging
|
|
3905
3920
|
# Directs the specified job to run a PUT Object tagging call on every
|
|
3906
3921
|
# object in the manifest.
|
|
3922
|
+
#
|
|
3923
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
3924
|
+
#
|
|
3925
|
+
# </note>
|
|
3907
3926
|
# @return [Types::S3SetObjectTaggingOperation]
|
|
3908
3927
|
#
|
|
3909
3928
|
# @!attribute [rw] s3_delete_object_tagging
|
|
3910
3929
|
# Directs the specified job to execute a DELETE Object tagging call on
|
|
3911
3930
|
# every object in the manifest.
|
|
3931
|
+
#
|
|
3932
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
3933
|
+
#
|
|
3934
|
+
# </note>
|
|
3912
3935
|
# @return [Types::S3DeleteObjectTaggingOperation]
|
|
3913
3936
|
#
|
|
3914
3937
|
# @!attribute [rw] s3_initiate_restore_object
|
|
3915
3938
|
# Directs the specified job to initiate restore requests for every
|
|
3916
3939
|
# archived object in the manifest.
|
|
3940
|
+
#
|
|
3941
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
3942
|
+
#
|
|
3943
|
+
# </note>
|
|
3917
3944
|
# @return [Types::S3InitiateRestoreObjectOperation]
|
|
3918
3945
|
#
|
|
3919
3946
|
# @!attribute [rw] s3_put_object_legal_hold
|
|
@@ -3923,6 +3950,10 @@ module Aws::S3Control
|
|
|
3923
3950
|
# information, see [Using S3 Object Lock legal hold with S3 Batch
|
|
3924
3951
|
# Operations][1] in the *Amazon S3 User Guide*.
|
|
3925
3952
|
#
|
|
3953
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
3954
|
+
#
|
|
3955
|
+
# </note>
|
|
3956
|
+
#
|
|
3926
3957
|
#
|
|
3927
3958
|
#
|
|
3928
3959
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-legal-hold.html
|
|
@@ -3935,6 +3966,10 @@ module Aws::S3Control
|
|
|
3935
3966
|
# more information, see [Using S3 Object Lock retention with S3 Batch
|
|
3936
3967
|
# Operations][1] in the *Amazon S3 User Guide*.
|
|
3937
3968
|
#
|
|
3969
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
3970
|
+
#
|
|
3971
|
+
# </note>
|
|
3972
|
+
#
|
|
3938
3973
|
#
|
|
3939
3974
|
#
|
|
3940
3975
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-retention-date.html
|
|
@@ -3943,6 +3978,10 @@ module Aws::S3Control
|
|
|
3943
3978
|
# @!attribute [rw] s3_replicate_object
|
|
3944
3979
|
# Directs the specified job to invoke `ReplicateObject` on every
|
|
3945
3980
|
# object in the job's manifest.
|
|
3981
|
+
#
|
|
3982
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
3983
|
+
#
|
|
3984
|
+
# </note>
|
|
3946
3985
|
# @return [Types::S3ReplicateObjectOperation]
|
|
3947
3986
|
#
|
|
3948
3987
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/JobOperation AWS API Documentation
|
|
@@ -3994,6 +4033,11 @@ module Aws::S3Control
|
|
|
3994
4033
|
# @!attribute [rw] bucket
|
|
3995
4034
|
# The Amazon Resource Name (ARN) for the bucket where specified
|
|
3996
4035
|
# job-completion report will be stored.
|
|
4036
|
+
#
|
|
4037
|
+
# <note markdown="1"> **Directory buckets** - Directory buckets aren't supported as a
|
|
4038
|
+
# location for Batch Operations to store job completion reports.
|
|
4039
|
+
#
|
|
4040
|
+
# </note>
|
|
3997
4041
|
# @return [String]
|
|
3998
4042
|
#
|
|
3999
4043
|
# @!attribute [rw] format
|
|
@@ -4090,10 +4134,51 @@ module Aws::S3Control
|
|
|
4090
4134
|
# specified job will invoke on every object in the manifest.
|
|
4091
4135
|
# @return [String]
|
|
4092
4136
|
#
|
|
4137
|
+
# @!attribute [rw] invocation_schema_version
|
|
4138
|
+
# Specifies the schema version for the payload that Batch Operations
|
|
4139
|
+
# sends when invoking an Lambda function. Version `1.0` is the
|
|
4140
|
+
# default. Version `2.0` is required when you use Batch Operations to
|
|
4141
|
+
# invoke Lambda functions that act on directory buckets, or if you
|
|
4142
|
+
# need to specify `UserArguments`. For more information, see [Using
|
|
4143
|
+
# Lambda with Amazon S3 Batch Operations and Amazon S3 Express One
|
|
4144
|
+
# Zone][1] in the *Amazon Web Services Storage Blog*.
|
|
4145
|
+
#
|
|
4146
|
+
# Ensure that your Lambda function code expects
|
|
4147
|
+
# `InvocationSchemaVersion` **2.0** and uses bucket name rather than
|
|
4148
|
+
# bucket ARN. If the `InvocationSchemaVersion` does not match what
|
|
4149
|
+
# your Lambda function expects, your function might not work as
|
|
4150
|
+
# expected.
|
|
4151
|
+
#
|
|
4152
|
+
# <note markdown="1"> **Directory buckets** - To initiate Amazon Web Services Lambda
|
|
4153
|
+
# function to perform custom actions on objects in directory buckets,
|
|
4154
|
+
# you must specify `2.0`.
|
|
4155
|
+
#
|
|
4156
|
+
# </note>
|
|
4157
|
+
#
|
|
4158
|
+
#
|
|
4159
|
+
#
|
|
4160
|
+
# [1]: https://aws.amazon.com/blogs/storage/using-lambda-with-s3-batch-operations-and-s3-express-one-zone/
|
|
4161
|
+
# @return [String]
|
|
4162
|
+
#
|
|
4163
|
+
# @!attribute [rw] user_arguments
|
|
4164
|
+
# Key-value pairs that are passed in the payload that Batch Operations
|
|
4165
|
+
# sends when invoking an Lambda function. You must specify
|
|
4166
|
+
# `InvocationSchemaVersion` **2.0** for `LambdaInvoke` operations that
|
|
4167
|
+
# include `UserArguments`. For more information, see [Using Lambda
|
|
4168
|
+
# with Amazon S3 Batch Operations and Amazon S3 Express One Zone][1]
|
|
4169
|
+
# in the *Amazon Web Services Storage Blog*.
|
|
4170
|
+
#
|
|
4171
|
+
#
|
|
4172
|
+
#
|
|
4173
|
+
# [1]: https://aws.amazon.com/blogs/storage/using-lambda-with-s3-batch-operations-and-s3-express-one-zone/
|
|
4174
|
+
# @return [Hash<String,String>]
|
|
4175
|
+
#
|
|
4093
4176
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/LambdaInvokeOperation AWS API Documentation
|
|
4094
4177
|
#
|
|
4095
4178
|
class LambdaInvokeOperation < Struct.new(
|
|
4096
|
-
:function_arn
|
|
4179
|
+
:function_arn,
|
|
4180
|
+
:invocation_schema_version,
|
|
4181
|
+
:user_arguments)
|
|
4097
4182
|
SENSITIVE = []
|
|
4098
4183
|
include Aws::Structure
|
|
4099
4184
|
end
|
|
@@ -6657,15 +6742,29 @@ module Aws::S3Control
|
|
|
6657
6742
|
#
|
|
6658
6743
|
# @!attribute [rw] target_resource
|
|
6659
6744
|
# Specifies the destination bucket Amazon Resource Name (ARN) for the
|
|
6660
|
-
# batch copy operation.
|
|
6661
|
-
#
|
|
6662
|
-
#
|
|
6745
|
+
# batch copy operation.
|
|
6746
|
+
#
|
|
6747
|
+
# * **General purpose buckets** - For example, to copy objects to a
|
|
6748
|
+
# general purpose bucket named `destinationBucket`, set the
|
|
6749
|
+
# `TargetResource` property to `arn:aws:s3:::destinationBucket`.
|
|
6750
|
+
#
|
|
6751
|
+
# * **Directory buckets** - For example, to copy objects to a
|
|
6752
|
+
# directory bucket named `destinationBucket` in the Availability
|
|
6753
|
+
# Zone; identified by the AZ ID `usw2-az2`, set the `TargetResource`
|
|
6754
|
+
# property to
|
|
6755
|
+
# `arn:aws:s3express:region:account_id:/bucket/destination_bucket_base_name--usw2-az2--x-s3`.
|
|
6663
6756
|
# @return [String]
|
|
6664
6757
|
#
|
|
6665
6758
|
# @!attribute [rw] canned_access_control_list
|
|
6759
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
6760
|
+
#
|
|
6761
|
+
# </note>
|
|
6666
6762
|
# @return [String]
|
|
6667
6763
|
#
|
|
6668
6764
|
# @!attribute [rw] access_control_grants
|
|
6765
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
6766
|
+
#
|
|
6767
|
+
# </note>
|
|
6669
6768
|
# @return [Array<Types::S3Grant>]
|
|
6670
6769
|
#
|
|
6671
6770
|
# @!attribute [rw] metadata_directive
|
|
@@ -6682,24 +6781,53 @@ module Aws::S3Control
|
|
|
6682
6781
|
# @return [Types::S3ObjectMetadata]
|
|
6683
6782
|
#
|
|
6684
6783
|
# @!attribute [rw] new_object_tagging
|
|
6784
|
+
# Specifies a list of tags to add to the destination objects after
|
|
6785
|
+
# they are copied. If `NewObjectTagging` is not specified, the tags of
|
|
6786
|
+
# the source objects are copied to destination objects by default.
|
|
6787
|
+
#
|
|
6788
|
+
# <note markdown="1"> **Directory buckets** - Tags aren't supported by directory buckets.
|
|
6789
|
+
# If your source objects have tags and your destination bucket is a
|
|
6790
|
+
# directory bucket, specify an empty tag set in the `NewObjectTagging`
|
|
6791
|
+
# field to prevent copying the source object tags to the directory
|
|
6792
|
+
# bucket.
|
|
6793
|
+
#
|
|
6794
|
+
# </note>
|
|
6685
6795
|
# @return [Array<Types::S3Tag>]
|
|
6686
6796
|
#
|
|
6687
6797
|
# @!attribute [rw] redirect_location
|
|
6688
|
-
#
|
|
6798
|
+
# If the destination bucket is configured as a website, specifies an
|
|
6799
|
+
# optional metadata property for website redirects,
|
|
6689
6800
|
# `x-amz-website-redirect-location`. Allows webpage redirects if the
|
|
6690
|
-
# object is accessed through a website endpoint.
|
|
6801
|
+
# object copy is accessed through a website endpoint.
|
|
6802
|
+
#
|
|
6803
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
6804
|
+
#
|
|
6805
|
+
# </note>
|
|
6691
6806
|
# @return [String]
|
|
6692
6807
|
#
|
|
6693
6808
|
# @!attribute [rw] requester_pays
|
|
6809
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
6810
|
+
#
|
|
6811
|
+
# </note>
|
|
6694
6812
|
# @return [Boolean]
|
|
6695
6813
|
#
|
|
6696
6814
|
# @!attribute [rw] storage_class
|
|
6815
|
+
# Specify the storage class for the destination objects in a `Copy`
|
|
6816
|
+
# operation.
|
|
6817
|
+
#
|
|
6818
|
+
# <note markdown="1"> <b>Directory buckets </b> - This functionality is not supported by
|
|
6819
|
+
# directory buckets.
|
|
6820
|
+
#
|
|
6821
|
+
# </note>
|
|
6697
6822
|
# @return [String]
|
|
6698
6823
|
#
|
|
6699
6824
|
# @!attribute [rw] un_modified_since_constraint
|
|
6700
6825
|
# @return [Time]
|
|
6701
6826
|
#
|
|
6702
6827
|
# @!attribute [rw] sse_aws_kms_key_id
|
|
6828
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
6829
|
+
#
|
|
6830
|
+
# </note>
|
|
6703
6831
|
# @return [String]
|
|
6704
6832
|
#
|
|
6705
6833
|
# @!attribute [rw] target_key_prefix
|
|
@@ -6712,16 +6840,28 @@ module Aws::S3Control
|
|
|
6712
6840
|
# @!attribute [rw] object_lock_legal_hold_status
|
|
6713
6841
|
# The legal hold status to be applied to all objects in the Batch
|
|
6714
6842
|
# Operations job.
|
|
6843
|
+
#
|
|
6844
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
6845
|
+
#
|
|
6846
|
+
# </note>
|
|
6715
6847
|
# @return [String]
|
|
6716
6848
|
#
|
|
6717
6849
|
# @!attribute [rw] object_lock_mode
|
|
6718
6850
|
# The retention mode to be applied to all objects in the Batch
|
|
6719
6851
|
# Operations job.
|
|
6852
|
+
#
|
|
6853
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
6854
|
+
#
|
|
6855
|
+
# </note>
|
|
6720
6856
|
# @return [String]
|
|
6721
6857
|
#
|
|
6722
6858
|
# @!attribute [rw] object_lock_retain_until_date
|
|
6723
6859
|
# The date when the applied object retention configuration expires on
|
|
6724
6860
|
# all objects in the Batch Operations job.
|
|
6861
|
+
#
|
|
6862
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
6863
|
+
#
|
|
6864
|
+
# </note>
|
|
6725
6865
|
# @return [Time]
|
|
6726
6866
|
#
|
|
6727
6867
|
# @!attribute [rw] bucket_key_enabled
|
|
@@ -6732,6 +6872,10 @@ module Aws::S3Control
|
|
|
6732
6872
|
#
|
|
6733
6873
|
# Specifying this header with an *object* action doesn’t affect
|
|
6734
6874
|
# *bucket-level* settings for S3 Bucket Key.
|
|
6875
|
+
#
|
|
6876
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
6877
|
+
#
|
|
6878
|
+
# </note>
|
|
6735
6879
|
# @return [Boolean]
|
|
6736
6880
|
#
|
|
6737
6881
|
# @!attribute [rw] checksum_algorithm
|
|
@@ -6789,6 +6933,12 @@ module Aws::S3Control
|
|
|
6789
6933
|
#
|
|
6790
6934
|
# @!attribute [rw] location
|
|
6791
6935
|
# Contains the information required to locate a manifest object.
|
|
6936
|
+
# Manifests can't be imported from directory buckets. For more
|
|
6937
|
+
# information, see [Directory buckets][1].
|
|
6938
|
+
#
|
|
6939
|
+
#
|
|
6940
|
+
#
|
|
6941
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-overview.html
|
|
6792
6942
|
# @return [Types::JobManifestLocation]
|
|
6793
6943
|
#
|
|
6794
6944
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/S3GeneratedManifestDescriptor AWS API Documentation
|
|
@@ -6889,16 +7039,28 @@ module Aws::S3Control
|
|
|
6889
7039
|
#
|
|
6890
7040
|
# @!attribute [rw] source_bucket
|
|
6891
7041
|
# The source bucket used by the ManifestGenerator.
|
|
7042
|
+
#
|
|
7043
|
+
# <note markdown="1"> **Directory buckets** - Directory buckets aren't supported as the
|
|
7044
|
+
# source buckets used by `S3JobManifestGenerator` to generate the job
|
|
7045
|
+
# manifest.
|
|
7046
|
+
#
|
|
7047
|
+
# </note>
|
|
6892
7048
|
# @return [String]
|
|
6893
7049
|
#
|
|
6894
7050
|
# @!attribute [rw] manifest_output_location
|
|
6895
7051
|
# Specifies the location the generated manifest will be written to.
|
|
7052
|
+
# Manifests can't be written to directory buckets. For more
|
|
7053
|
+
# information, see [Directory buckets][1].
|
|
7054
|
+
#
|
|
7055
|
+
#
|
|
7056
|
+
#
|
|
7057
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-overview.html
|
|
6896
7058
|
# @return [Types::S3ManifestOutputLocation]
|
|
6897
7059
|
#
|
|
6898
7060
|
# @!attribute [rw] filter
|
|
6899
|
-
# Specifies rules the S3JobManifestGenerator should use to
|
|
6900
|
-
#
|
|
6901
|
-
#
|
|
7061
|
+
# Specifies rules the S3JobManifestGenerator should use to decide
|
|
7062
|
+
# whether an object in the source bucket should or should not be
|
|
7063
|
+
# included in the generated job manifest.
|
|
6902
7064
|
# @return [Types::JobManifestGeneratorFilter]
|
|
6903
7065
|
#
|
|
6904
7066
|
# @!attribute [rw] enable_manifest_output
|
|
@@ -6927,6 +7089,11 @@ module Aws::S3Control
|
|
|
6927
7089
|
#
|
|
6928
7090
|
# @!attribute [rw] bucket
|
|
6929
7091
|
# The bucket ARN the generated manifest should be written to.
|
|
7092
|
+
#
|
|
7093
|
+
# <note markdown="1"> **Directory buckets** - Directory buckets aren't supported as the
|
|
7094
|
+
# buckets to store the generated manifest.
|
|
7095
|
+
#
|
|
7096
|
+
# </note>
|
|
6930
7097
|
# @return [String]
|
|
6931
7098
|
#
|
|
6932
7099
|
# @!attribute [rw] manifest_prefix
|
|
@@ -6987,9 +7154,11 @@ module Aws::S3Control
|
|
|
6987
7154
|
# @return [Hash<String,String>]
|
|
6988
7155
|
#
|
|
6989
7156
|
# @!attribute [rw] content_length
|
|
7157
|
+
# *This member has been deprecated.*
|
|
6990
7158
|
# @return [Integer]
|
|
6991
7159
|
#
|
|
6992
7160
|
# @!attribute [rw] content_md5
|
|
7161
|
+
# *This member has been deprecated.*
|
|
6993
7162
|
# @return [String]
|
|
6994
7163
|
#
|
|
6995
7164
|
# @!attribute [rw] content_type
|
|
@@ -6999,9 +7168,14 @@ module Aws::S3Control
|
|
|
6999
7168
|
# @return [Time]
|
|
7000
7169
|
#
|
|
7001
7170
|
# @!attribute [rw] requester_charged
|
|
7171
|
+
# *This member has been deprecated.*
|
|
7002
7172
|
# @return [Boolean]
|
|
7003
7173
|
#
|
|
7004
7174
|
# @!attribute [rw] sse_algorithm
|
|
7175
|
+
# <note markdown="1"> For directory buckets, only the server-side encryption with Amazon
|
|
7176
|
+
# S3 managed keys (SSE-S3) (`AES256`) is supported.
|
|
7177
|
+
#
|
|
7178
|
+
# </note>
|
|
7005
7179
|
# @return [String]
|
|
7006
7180
|
#
|
|
7007
7181
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/S3ObjectMetadata AWS API Documentation
|
|
@@ -7102,6 +7276,10 @@ module Aws::S3Control
|
|
|
7102
7276
|
# see [Using S3 Object Lock legal hold with S3 Batch Operations][1] in
|
|
7103
7277
|
# the *Amazon S3 User Guide*.
|
|
7104
7278
|
#
|
|
7279
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
7280
|
+
#
|
|
7281
|
+
# </note>
|
|
7282
|
+
#
|
|
7105
7283
|
#
|
|
7106
7284
|
#
|
|
7107
7285
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-legal-hold.html
|
|
@@ -7125,6 +7303,10 @@ module Aws::S3Control
|
|
|
7125
7303
|
# information, see [Using S3 Object Lock retention with S3 Batch
|
|
7126
7304
|
# Operations][1] in the *Amazon S3 User Guide*.
|
|
7127
7305
|
#
|
|
7306
|
+
# <note markdown="1"> This functionality is not supported by directory buckets.
|
|
7307
|
+
#
|
|
7308
|
+
# </note>
|
|
7309
|
+
#
|
|
7128
7310
|
#
|
|
7129
7311
|
#
|
|
7130
7312
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-retention-date.html
|
data/lib/aws-sdk-s3control.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-s3control
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.74.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-11-
|
|
11
|
+
date: 2023-11-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|