aws-sdk-s3control 1.114.0 → 1.116.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.
@@ -101,8 +101,8 @@ module Aws::S3Control
101
101
  # class name or an instance of a plugin class.
102
102
  #
103
103
  # @option options [required, Aws::CredentialProvider] :credentials
104
- # Your AWS credentials used for authentication. This can be an instance of any one of the
105
- # following classes:
104
+ # Your AWS credentials used for authentication. This can be any class that includes and implements
105
+ # `Aws::CredentialProvider`, or instance of any one of the following classes:
106
106
  #
107
107
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
108
108
  # credentials.
@@ -130,8 +130,7 @@ module Aws::S3Control
130
130
  # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
131
131
  # from the Cognito Identity service.
132
132
  #
133
- # When `:credentials` are not configured directly, the following
134
- # locations will be searched for credentials:
133
+ # When `:credentials` are not configured directly, the following locations will be searched for credentials:
135
134
  #
136
135
  # * `Aws.config[:credentials]`
137
136
  #
@@ -145,12 +144,10 @@ module Aws::S3Control
145
144
  #
146
145
  # * `~/.aws/config`
147
146
  #
148
- # * EC2/ECS IMDS instance profile - When used by default, the timeouts
149
- # are very aggressive. Construct and pass an instance of
150
- # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
151
- # enable retries and extended timeouts. Instance profile credential
152
- # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
153
- # to `true`.
147
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
148
+ # Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
149
+ # enable retries and extended timeouts. Instance profile credential fetching can be disabled by
150
+ # setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
154
151
  #
155
152
  # @option options [required, String] :region
156
153
  # The AWS region to connect to. The configured `:region` is
@@ -389,8 +386,8 @@ module Aws::S3Control
389
386
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
390
387
  #
391
388
  # @option options [Aws::TokenProvider] :token_provider
392
- # Your Bearer token used for authentication. This can be an instance of any one of the
393
- # following classes:
389
+ # Your Bearer token used for authentication. This can be any class that includes and implements
390
+ # `Aws::TokenProvider`, or instance of any one of the following classes:
394
391
  #
395
392
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
396
393
  # tokens.
@@ -509,6 +506,10 @@ module Aws::S3Control
509
506
  # `sso:CreateApplication`, `sso:PutApplicationGrant`, and
510
507
  # `sso:PutApplicationAuthenticationMethod`.
511
508
  #
509
+ # You must URL encode any signed header values that contain spaces. For
510
+ # example, if your header value is `my file.txt`, containing two spaces
511
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
512
+ #
512
513
  # @option params [String] :account_id
513
514
  # The Amazon Web Services account ID of the S3 Access Grants instance.
514
515
  #
@@ -564,6 +565,10 @@ module Aws::S3Control
564
565
  #
565
566
  # For directory groups - `identitystore:DescribeGroup`
566
567
  #
568
+ # You must URL encode any signed header values that contain spaces. For
569
+ # example, if your header value is `my file.txt`, containing two spaces
570
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
571
+ #
567
572
  #
568
573
  #
569
574
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateAccessGrantsInstance.html
@@ -696,6 +701,10 @@ module Aws::S3Control
696
701
  # `sso:CreateApplication`, `sso:PutApplicationGrant`, and
697
702
  # `sso:PutApplicationAuthenticationMethod` permissions.
698
703
  #
704
+ # You must URL encode any signed header values that contain spaces. For
705
+ # example, if your header value is `my file.txt`, containing two spaces
706
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
707
+ #
699
708
  # @option params [String] :account_id
700
709
  # The Amazon Web Services account ID of the S3 Access Grants instance.
701
710
  #
@@ -785,6 +794,10 @@ module Aws::S3Control
785
794
  # : You must also have the following permission for the specified IAM
786
795
  # role: `iam:PassRole`
787
796
  #
797
+ # You must URL encode any signed header values that contain spaces. For
798
+ # example, if your header value is `my file.txt`, containing two spaces
799
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
800
+ #
788
801
  #
789
802
  #
790
803
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-grants-location.html
@@ -891,6 +904,10 @@ module Aws::S3Control
891
904
  #
892
905
  # * [ListAccessPointsForDirectoryBuckets][9]
893
906
  #
907
+ # You must URL encode any signed header values that contain spaces. For
908
+ # example, if your header value is `my file.txt`, containing two spaces
909
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
910
+ #
894
911
  #
895
912
  #
896
913
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points.html
@@ -982,6 +999,14 @@ module Aws::S3Control
982
999
  # S3][1]. For information about tagging access points, see [Using tags
983
1000
  # for attribute-based access control (ABAC)][2].
984
1001
  #
1002
+ # <note markdown="1"> * You must have the `s3:TagResource` permission to create an access
1003
+ # point with tags for a general purpose bucket.
1004
+ #
1005
+ # * You must have the `s3express:TagResource` permission to create an
1006
+ # access point with tags for a directory bucket.
1007
+ #
1008
+ # </note>
1009
+ #
985
1010
  #
986
1011
  #
987
1012
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/tagging.html
@@ -1051,6 +1076,10 @@ module Aws::S3Control
1051
1076
  #
1052
1077
  # * [ListAccessPointsForObjectLambda][4]
1053
1078
  #
1079
+ # You must URL encode any signed header values that contain spaces. For
1080
+ # example, if your header value is `my file.txt`, containing two spaces
1081
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
1082
+ #
1054
1083
  #
1055
1084
  #
1056
1085
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/transforming-objects.html
@@ -1296,6 +1325,10 @@ module Aws::S3Control
1296
1325
  #
1297
1326
  # * [JobOperation][7]
1298
1327
  #
1328
+ # You must URL encode any signed header values that contain spaces. For
1329
+ # example, if your header value is `my file.txt`, containing two spaces
1330
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
1331
+ #
1299
1332
  #
1300
1333
  #
1301
1334
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/batch-ops.html
@@ -1473,6 +1506,10 @@ module Aws::S3Control
1473
1506
  # },
1474
1507
  # s3_replicate_object: {
1475
1508
  # },
1509
+ # s3_compute_object_checksum: {
1510
+ # checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, CRC64NVME, MD5, SHA1, SHA256
1511
+ # checksum_type: "FULL_OBJECT", # accepts FULL_OBJECT, COMPOSITE
1512
+ # },
1476
1513
  # },
1477
1514
  # report: { # required
1478
1515
  # bucket: "S3BucketArnString",
@@ -1480,6 +1517,7 @@ module Aws::S3Control
1480
1517
  # enabled: false, # required
1481
1518
  # prefix: "ReportPrefixString",
1482
1519
  # report_scope: "AllTasks", # accepts AllTasks, FailedTasksOnly
1520
+ # expected_bucket_owner: "AccountId",
1483
1521
  # },
1484
1522
  # client_request_token: "NonEmptyMaxLength64String", # required
1485
1523
  # manifest: {
@@ -1580,6 +1618,10 @@ module Aws::S3Control
1580
1618
  #
1581
1619
  # * [ListMultiRegionAccessPoints][6]
1582
1620
  #
1621
+ # You must URL encode any signed header values that contain spaces. For
1622
+ # example, if your header value is `my file.txt`, containing two spaces
1623
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
1624
+ #
1583
1625
  #
1584
1626
  #
1585
1627
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/CreatingMultiRegionAccessPoints.html
@@ -1662,6 +1704,10 @@ module Aws::S3Control
1662
1704
  # For information about Storage Lens groups errors, see [List of Amazon
1663
1705
  # S3 Storage Lens error codes][3].
1664
1706
  #
1707
+ # You must URL encode any signed header values that contain spaces. For
1708
+ # example, if your header value is `my file.txt`, containing two spaces
1709
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
1710
+ #
1665
1711
  #
1666
1712
  #
1667
1713
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-lens-groups-overview.html
@@ -1769,6 +1815,10 @@ module Aws::S3Control
1769
1815
  # : You must have the `s3:DeleteAccessGrant` permission to use this
1770
1816
  # operation.
1771
1817
  #
1818
+ # You must URL encode any signed header values that contain spaces. For
1819
+ # example, if your header value is `my file.txt`, containing two spaces
1820
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
1821
+ #
1772
1822
  # @option params [String] :account_id
1773
1823
  # The Amazon Web Services account ID of the S3 Access Grants instance.
1774
1824
  #
@@ -1809,6 +1859,10 @@ module Aws::S3Control
1809
1859
  # : You must have the `s3:DeleteAccessGrantsInstance` permission to use
1810
1860
  # this operation.
1811
1861
  #
1862
+ # You must URL encode any signed header values that contain spaces. For
1863
+ # example, if your header value is `my file.txt`, containing two spaces
1864
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
1865
+ #
1812
1866
  #
1813
1867
  #
1814
1868
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessGrant.html
@@ -1846,6 +1900,10 @@ module Aws::S3Control
1846
1900
  # : You must have the `s3:DeleteAccessGrantsInstanceResourcePolicy`
1847
1901
  # permission to use this operation.
1848
1902
  #
1903
+ # You must URL encode any signed header values that contain spaces. For
1904
+ # example, if your header value is `my file.txt`, containing two spaces
1905
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
1906
+ #
1849
1907
  # @option params [String] :account_id
1850
1908
  # The Amazon Web Services account ID of the S3 Access Grants instance.
1851
1909
  #
@@ -1878,6 +1936,10 @@ module Aws::S3Control
1878
1936
  # : You must have the `s3:DeleteAccessGrantsLocation` permission to use
1879
1937
  # this operation.
1880
1938
  #
1939
+ # You must URL encode any signed header values that contain spaces. For
1940
+ # example, if your header value is `my file.txt`, containing two spaces
1941
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
1942
+ #
1881
1943
  #
1882
1944
  #
1883
1945
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessGrant.html
@@ -1928,6 +1990,10 @@ module Aws::S3Control
1928
1990
  #
1929
1991
  # * [ListAccessPoints][4]
1930
1992
  #
1993
+ # You must URL encode any signed header values that contain spaces. For
1994
+ # example, if your header value is `my file.txt`, containing two spaces
1995
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
1996
+ #
1931
1997
  #
1932
1998
  #
1933
1999
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPoint.html#API_control_DeleteAccessPoint_Examples
@@ -1988,6 +2054,10 @@ module Aws::S3Control
1988
2054
  #
1989
2055
  # * [ListAccessPointsForObjectLambda][3]
1990
2056
  #
2057
+ # You must URL encode any signed header values that contain spaces. For
2058
+ # example, if your header value is `my file.txt`, containing two spaces
2059
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2060
+ #
1991
2061
  #
1992
2062
  #
1993
2063
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateAccessPointForObjectLambda.html
@@ -2037,6 +2107,10 @@ module Aws::S3Control
2037
2107
  #
2038
2108
  # * [GetAccessPointPolicy][3]
2039
2109
  #
2110
+ # You must URL encode any signed header values that contain spaces. For
2111
+ # example, if your header value is `my file.txt`, containing two spaces
2112
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2113
+ #
2040
2114
  #
2041
2115
  #
2042
2116
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPointPolicy.html#API_control_DeleteAccessPointPolicy_Examples
@@ -2093,6 +2167,10 @@ module Aws::S3Control
2093
2167
  #
2094
2168
  # * [PutAccessPointPolicyForObjectLambda][2]
2095
2169
  #
2170
+ # You must URL encode any signed header values that contain spaces. For
2171
+ # example, if your header value is `my file.txt`, containing two spaces
2172
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2173
+ #
2096
2174
  #
2097
2175
  #
2098
2176
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPointPolicyForObjectLambda.html
@@ -2136,6 +2214,10 @@ module Aws::S3Control
2136
2214
  #
2137
2215
  # For information about REST API errors, see [REST error responses][1].
2138
2216
  #
2217
+ # You must URL encode any signed header values that contain spaces. For
2218
+ # example, if your header value is `my file.txt`, containing two spaces
2219
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2220
+ #
2139
2221
  #
2140
2222
  #
2141
2223
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#RESTErrorResponses
@@ -2273,6 +2355,10 @@ module Aws::S3Control
2273
2355
  #
2274
2356
  # * [GetBucketLifecycleConfiguration][6]
2275
2357
  #
2358
+ # You must URL encode any signed header values that contain spaces. For
2359
+ # example, if your header value is `my file.txt`, containing two spaces
2360
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2361
+ #
2276
2362
  #
2277
2363
  #
2278
2364
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketLifecycle.html
@@ -2361,6 +2447,10 @@ module Aws::S3Control
2361
2447
  #
2362
2448
  # * [PutBucketPolicy][6]
2363
2449
  #
2450
+ # You must URL encode any signed header values that contain spaces. For
2451
+ # example, if your header value is `my file.txt`, containing two spaces
2452
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2453
+ #
2364
2454
  #
2365
2455
  #
2366
2456
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketPolicy.html
@@ -2451,6 +2541,10 @@ module Aws::S3Control
2451
2541
  #
2452
2542
  # * [GetBucketReplication][7]
2453
2543
  #
2544
+ # You must URL encode any signed header values that contain spaces. For
2545
+ # example, if your header value is `my file.txt`, containing two spaces
2546
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2547
+ #
2454
2548
  #
2455
2549
  #
2456
2550
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketReplication.html
@@ -2527,6 +2621,10 @@ module Aws::S3Control
2527
2621
  #
2528
2622
  # * [PutBucketTagging][5]
2529
2623
  #
2624
+ # You must URL encode any signed header values that contain spaces. For
2625
+ # example, if your header value is `my file.txt`, containing two spaces
2626
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2627
+ #
2530
2628
  #
2531
2629
  #
2532
2630
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketTagging.html
@@ -2590,6 +2688,10 @@ module Aws::S3Control
2590
2688
  #
2591
2689
  # * [PutJobTagging][4]
2592
2690
  #
2691
+ # You must URL encode any signed header values that contain spaces. For
2692
+ # example, if your header value is `my file.txt`, containing two spaces
2693
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2694
+ #
2593
2695
  #
2594
2696
  #
2595
2697
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-managing-jobs.html#batch-ops-job-tags
@@ -2650,6 +2752,10 @@ module Aws::S3Control
2650
2752
  #
2651
2753
  # * [ListMultiRegionAccessPoints][5]
2652
2754
  #
2755
+ # You must URL encode any signed header values that contain spaces. For
2756
+ # example, if your header value is `my file.txt`, containing two spaces
2757
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2758
+ #
2653
2759
  #
2654
2760
  #
2655
2761
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/MultiRegionAccessPointRestrictions.html
@@ -2714,6 +2820,10 @@ module Aws::S3Control
2714
2820
  #
2715
2821
  # * [PutPublicAccessBlock][3]
2716
2822
  #
2823
+ # You must URL encode any signed header values that contain spaces. For
2824
+ # example, if your header value is `my file.txt`, containing two spaces
2825
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2826
+ #
2717
2827
  #
2718
2828
  #
2719
2829
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html
@@ -2756,6 +2866,10 @@ module Aws::S3Control
2756
2866
  #
2757
2867
  # </note>
2758
2868
  #
2869
+ # You must URL encode any signed header values that contain spaces. For
2870
+ # example, if your header value is `my file.txt`, containing two spaces
2871
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2872
+ #
2759
2873
  #
2760
2874
  #
2761
2875
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
@@ -2801,6 +2915,10 @@ module Aws::S3Control
2801
2915
  #
2802
2916
  # </note>
2803
2917
  #
2918
+ # You must URL encode any signed header values that contain spaces. For
2919
+ # example, if your header value is `my file.txt`, containing two spaces
2920
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2921
+ #
2804
2922
  #
2805
2923
  #
2806
2924
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
@@ -2840,6 +2958,10 @@ module Aws::S3Control
2840
2958
  # For information about Storage Lens groups errors, see [List of Amazon
2841
2959
  # S3 Storage Lens error codes][2].
2842
2960
  #
2961
+ # You must URL encode any signed header values that contain spaces. For
2962
+ # example, if your header value is `my file.txt`, containing two spaces
2963
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
2964
+ #
2843
2965
  #
2844
2966
  #
2845
2967
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_iam_permissions.html#storage_lens_groups_permissions
@@ -2889,6 +3011,10 @@ module Aws::S3Control
2889
3011
  #
2890
3012
  # * [UpdateJobStatus][5]
2891
3013
  #
3014
+ # You must URL encode any signed header values that contain spaces. For
3015
+ # example, if your header value is `my file.txt`, containing two spaces
3016
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3017
+ #
2892
3018
  #
2893
3019
  #
2894
3020
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/batch-ops.html
@@ -2984,6 +3110,8 @@ module Aws::S3Control
2984
3110
  # resp.job.operation.s3_put_object_retention.bypass_governance_retention #=> Boolean
2985
3111
  # resp.job.operation.s3_put_object_retention.retention.retain_until_date #=> Time
2986
3112
  # resp.job.operation.s3_put_object_retention.retention.mode #=> String, one of "COMPLIANCE", "GOVERNANCE"
3113
+ # resp.job.operation.s3_compute_object_checksum.checksum_algorithm #=> String, one of "CRC32", "CRC32C", "CRC64NVME", "MD5", "SHA1", "SHA256"
3114
+ # resp.job.operation.s3_compute_object_checksum.checksum_type #=> String, one of "FULL_OBJECT", "COMPOSITE"
2987
3115
  # resp.job.priority #=> Integer
2988
3116
  # resp.job.progress_summary.total_number_of_tasks #=> Integer
2989
3117
  # resp.job.progress_summary.number_of_tasks_succeeded #=> Integer
@@ -2998,6 +3126,7 @@ module Aws::S3Control
2998
3126
  # resp.job.report.enabled #=> Boolean
2999
3127
  # resp.job.report.prefix #=> String
3000
3128
  # resp.job.report.report_scope #=> String, one of "AllTasks", "FailedTasksOnly"
3129
+ # resp.job.report.expected_bucket_owner #=> String
3001
3130
  # resp.job.creation_time #=> Time
3002
3131
  # resp.job.termination_date #=> Time
3003
3132
  # resp.job.role_arn #=> String
@@ -3059,6 +3188,10 @@ module Aws::S3Control
3059
3188
  #
3060
3189
  # * [ListMultiRegionAccessPoints][5]
3061
3190
  #
3191
+ # You must URL encode any signed header values that contain spaces. For
3192
+ # example, if your header value is `my file.txt`, containing two spaces
3193
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3194
+ #
3062
3195
  #
3063
3196
  #
3064
3197
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/MrapOperations.html
@@ -3135,6 +3268,10 @@ module Aws::S3Control
3135
3268
  # : You must have the `sso:DeleteApplication` permission to use this
3136
3269
  # operation.
3137
3270
  #
3271
+ # You must URL encode any signed header values that contain spaces. For
3272
+ # example, if your header value is `my file.txt`, containing two spaces
3273
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3274
+ #
3138
3275
  # @option params [String] :account_id
3139
3276
  # The Amazon Web Services account ID of the S3 Access Grants instance.
3140
3277
  #
@@ -3163,6 +3300,10 @@ module Aws::S3Control
3163
3300
  # : You must have the `s3:GetAccessGrant` permission to use this
3164
3301
  # operation.
3165
3302
  #
3303
+ # You must URL encode any signed header values that contain spaces. For
3304
+ # example, if your header value is `my file.txt`, containing two spaces
3305
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3306
+ #
3166
3307
  # @option params [String] :account_id
3167
3308
  # The Amazon Web Services account ID of the S3 Access Grants instance.
3168
3309
  #
@@ -3224,6 +3365,10 @@ module Aws::S3Control
3224
3365
  #
3225
3366
  # </note>
3226
3367
  #
3368
+ # You must URL encode any signed header values that contain spaces. For
3369
+ # example, if your header value is `my file.txt`, containing two spaces
3370
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3371
+ #
3227
3372
  # @option params [String] :account_id
3228
3373
  # The Amazon Web Services account ID of the S3 Access Grants instance.
3229
3374
  #
@@ -3274,6 +3419,10 @@ module Aws::S3Control
3274
3419
  # their S3 Access Grants instance:
3275
3420
  # `s3:GetAccessGrantsInstanceForPrefix`.
3276
3421
  #
3422
+ # You must URL encode any signed header values that contain spaces. For
3423
+ # example, if your header value is `my file.txt`, containing two spaces
3424
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3425
+ #
3277
3426
  # @option params [String] :account_id
3278
3427
  # The ID of the Amazon Web Services account that is making this request.
3279
3428
  #
@@ -3313,6 +3462,10 @@ module Aws::S3Control
3313
3462
  # : You must have the `s3:GetAccessGrantsInstanceResourcePolicy`
3314
3463
  # permission to use this operation.
3315
3464
  #
3465
+ # You must URL encode any signed header values that contain spaces. For
3466
+ # example, if your header value is `my file.txt`, containing two spaces
3467
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3468
+ #
3316
3469
  # @option params [String] :account_id
3317
3470
  # The Amazon Web Services account ID of the S3 Access Grants instance.
3318
3471
  #
@@ -3351,6 +3504,10 @@ module Aws::S3Control
3351
3504
  # : You must have the `s3:GetAccessGrantsLocation` permission to use
3352
3505
  # this operation.
3353
3506
  #
3507
+ # You must URL encode any signed header values that contain spaces. For
3508
+ # example, if your header value is `my file.txt`, containing two spaces
3509
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3510
+ #
3354
3511
  # @option params [String] :account_id
3355
3512
  # The Amazon Web Services account ID of the S3 Access Grants instance.
3356
3513
  #
@@ -3412,6 +3569,10 @@ module Aws::S3Control
3412
3569
  #
3413
3570
  # * [ListAccessPoints][4]
3414
3571
  #
3572
+ # You must URL encode any signed header values that contain spaces. For
3573
+ # example, if your header value is `my file.txt`, containing two spaces
3574
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3575
+ #
3415
3576
  #
3416
3577
  #
3417
3578
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPoint.html#API_control_GetAccessPoint_Examples
@@ -3503,6 +3664,10 @@ module Aws::S3Control
3503
3664
  #
3504
3665
  # ^
3505
3666
  #
3667
+ # You must URL encode any signed header values that contain spaces. For
3668
+ # example, if your header value is `my file.txt`, containing two spaces
3669
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3670
+ #
3506
3671
  #
3507
3672
  #
3508
3673
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutAccessPointConfigurationForObjectLambda.html
@@ -3562,6 +3727,10 @@ module Aws::S3Control
3562
3727
  #
3563
3728
  # * [ListAccessPointsForObjectLambda][3]
3564
3729
  #
3730
+ # You must URL encode any signed header values that contain spaces. For
3731
+ # example, if your header value is `my file.txt`, containing two spaces
3732
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3733
+ #
3565
3734
  #
3566
3735
  #
3567
3736
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateAccessPointForObjectLambda.html
@@ -3618,6 +3787,10 @@ module Aws::S3Control
3618
3787
  #
3619
3788
  # * [DeleteAccessPointPolicy][2]
3620
3789
  #
3790
+ # You must URL encode any signed header values that contain spaces. For
3791
+ # example, if your header value is `my file.txt`, containing two spaces
3792
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3793
+ #
3621
3794
  #
3622
3795
  #
3623
3796
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutAccessPointPolicy.html
@@ -3679,6 +3852,10 @@ module Aws::S3Control
3679
3852
  #
3680
3853
  # * [PutAccessPointPolicyForObjectLambda][2]
3681
3854
  #
3855
+ # You must URL encode any signed header values that contain spaces. For
3856
+ # example, if your header value is `my file.txt`, containing two spaces
3857
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3858
+ #
3682
3859
  #
3683
3860
  #
3684
3861
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPointPolicyForObjectLambda.html
@@ -3724,6 +3901,10 @@ module Aws::S3Control
3724
3901
  # through access points, see [Managing Data Access with Amazon S3 access
3725
3902
  # points][1] in the *Amazon S3 User Guide*.
3726
3903
  #
3904
+ # You must URL encode any signed header values that contain spaces. For
3905
+ # example, if your header value is `my file.txt`, containing two spaces
3906
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3907
+ #
3727
3908
  #
3728
3909
  #
3729
3910
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points.html
@@ -3765,6 +3946,10 @@ module Aws::S3Control
3765
3946
  # Returns the status of the resource policy associated with an Object
3766
3947
  # Lambda Access Point.
3767
3948
  #
3949
+ # You must URL encode any signed header values that contain spaces. For
3950
+ # example, if your header value is `my file.txt`, containing two spaces
3951
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3952
+ #
3768
3953
  # @option params [String] :account_id
3769
3954
  # The account ID for the account that owns the specified Object Lambda
3770
3955
  # Access Point.
@@ -3803,6 +3988,10 @@ module Aws::S3Control
3803
3988
  #
3804
3989
  # For information about REST API errors, see [REST error responses][1].
3805
3990
  #
3991
+ # You must URL encode any signed header values that contain spaces. For
3992
+ # example, if your header value is `my file.txt`, containing two spaces
3993
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
3994
+ #
3806
3995
  #
3807
3996
  #
3808
3997
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#RESTErrorResponses
@@ -3873,6 +4062,10 @@ module Aws::S3Control
3873
4062
  #
3874
4063
  # * [DeleteBucket][5]
3875
4064
  #
4065
+ # You must URL encode any signed header values that contain spaces. For
4066
+ # example, if your header value is `my file.txt`, containing two spaces
4067
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4068
+ #
3876
4069
  #
3877
4070
  #
3878
4071
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
@@ -3971,6 +4164,10 @@ module Aws::S3Control
3971
4164
  #
3972
4165
  # * [DeleteBucketLifecycleConfiguration][8]
3973
4166
  #
4167
+ # You must URL encode any signed header values that contain spaces. For
4168
+ # example, if your header value is `my file.txt`, containing two spaces
4169
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4170
+ #
3974
4171
  #
3975
4172
  #
3976
4173
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLifecycleConfiguration.html
@@ -4096,6 +4293,10 @@ module Aws::S3Control
4096
4293
  #
4097
4294
  # * [DeleteBucketPolicy][7]
4098
4295
  #
4296
+ # You must URL encode any signed header values that contain spaces. For
4297
+ # example, if your header value is `my file.txt`, containing two spaces
4298
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4299
+ #
4099
4300
  #
4100
4301
  #
4101
4302
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketPolicy.html
@@ -4461,6 +4662,10 @@ module Aws::S3Control
4461
4662
  # `sts:SetContext`, and for IAM users or roles
4462
4663
  # `sts:SetSourceIdentity`.
4463
4664
  #
4665
+ # You must URL encode any signed header values that contain spaces. For
4666
+ # example, if your header value is `my file.txt`, containing two spaces
4667
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4668
+ #
4464
4669
  #
4465
4670
  #
4466
4671
  # [1]: https://docs.aws.amazon.com/STS/latest/APIReference/API_Credentials.html
@@ -4561,6 +4766,10 @@ module Aws::S3Control
4561
4766
  #
4562
4767
  # * [DeleteJobTagging][4]
4563
4768
  #
4769
+ # You must URL encode any signed header values that contain spaces. For
4770
+ # example, if your header value is `my file.txt`, containing two spaces
4771
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4772
+ #
4564
4773
  #
4565
4774
  #
4566
4775
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-managing-jobs.html#batch-ops-job-tags
@@ -4624,6 +4833,10 @@ module Aws::S3Control
4624
4833
  #
4625
4834
  # * [ListMultiRegionAccessPoints][5]
4626
4835
  #
4836
+ # You must URL encode any signed header values that contain spaces. For
4837
+ # example, if your header value is `my file.txt`, containing two spaces
4838
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4839
+ #
4627
4840
  #
4628
4841
  #
4629
4842
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/MultiRegionAccessPointRestrictions.html
@@ -4702,6 +4915,10 @@ module Aws::S3Control
4702
4915
  #
4703
4916
  # * [PutMultiRegionAccessPointPolicy][3]
4704
4917
  #
4918
+ # You must URL encode any signed header values that contain spaces. For
4919
+ # example, if your header value is `my file.txt`, containing two spaces
4920
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4921
+ #
4705
4922
  #
4706
4923
  #
4707
4924
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/MultiRegionAccessPointRestrictions.html
@@ -4767,6 +4984,10 @@ module Aws::S3Control
4767
4984
  #
4768
4985
  # * [PutMultiRegionAccessPointPolicy][3]
4769
4986
  #
4987
+ # You must URL encode any signed header values that contain spaces. For
4988
+ # example, if your header value is `my file.txt`, containing two spaces
4989
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
4990
+ #
4770
4991
  #
4771
4992
  #
4772
4993
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/MultiRegionAccessPointRestrictions.html
@@ -4833,6 +5054,10 @@ module Aws::S3Control
4833
5054
  #
4834
5055
  # * `eu-west-1`
4835
5056
  #
5057
+ # You must URL encode any signed header values that contain spaces. For
5058
+ # example, if your header value is `my file.txt`, containing two spaces
5059
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5060
+ #
4836
5061
  # @option params [String] :account_id
4837
5062
  # The Amazon Web Services account ID for the owner of the Multi-Region
4838
5063
  # Access Point.
@@ -4883,6 +5108,10 @@ module Aws::S3Control
4883
5108
  #
4884
5109
  # * [PutPublicAccessBlock][3]
4885
5110
  #
5111
+ # You must URL encode any signed header values that contain spaces. For
5112
+ # example, if your header value is `my file.txt`, containing two spaces
5113
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5114
+ #
4886
5115
  #
4887
5116
  #
4888
5117
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html
@@ -4936,6 +5165,10 @@ module Aws::S3Control
4936
5165
  #
4937
5166
  # </note>
4938
5167
  #
5168
+ # You must URL encode any signed header values that contain spaces. For
5169
+ # example, if your header value is `my file.txt`, containing two spaces
5170
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5171
+ #
4939
5172
  #
4940
5173
  #
4941
5174
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
@@ -5022,6 +5255,10 @@ module Aws::S3Control
5022
5255
  #
5023
5256
  # </note>
5024
5257
  #
5258
+ # You must URL encode any signed header values that contain spaces. For
5259
+ # example, if your header value is `my file.txt`, containing two spaces
5260
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5261
+ #
5025
5262
  #
5026
5263
  #
5027
5264
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
@@ -5069,6 +5306,10 @@ module Aws::S3Control
5069
5306
  # For information about Storage Lens groups errors, see [List of Amazon
5070
5307
  # S3 Storage Lens error codes][2].
5071
5308
  #
5309
+ # You must URL encode any signed header values that contain spaces. For
5310
+ # example, if your header value is `my file.txt`, containing two spaces
5311
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5312
+ #
5072
5313
  #
5073
5314
  #
5074
5315
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_iam_permissions.html#storage_lens_groups_permissions
@@ -5147,6 +5388,10 @@ module Aws::S3Control
5147
5388
  # : You must have the `s3:ListAccessGrants` permission to use this
5148
5389
  # operation.
5149
5390
  #
5391
+ # You must URL encode any signed header values that contain spaces. For
5392
+ # example, if your header value is `my file.txt`, containing two spaces
5393
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5394
+ #
5150
5395
  # @option params [String] :account_id
5151
5396
  # The Amazon Web Services account ID of the S3 Access Grants instance.
5152
5397
  #
@@ -5259,6 +5504,10 @@ module Aws::S3Control
5259
5504
  # : You must have the `s3:ListAccessGrantsInstances` permission to use
5260
5505
  # this operation.
5261
5506
  #
5507
+ # You must URL encode any signed header values that contain spaces. For
5508
+ # example, if your header value is `my file.txt`, containing two spaces
5509
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5510
+ #
5262
5511
  # @option params [String] :account_id
5263
5512
  # The Amazon Web Services account ID of the S3 Access Grants instance.
5264
5513
  #
@@ -5316,6 +5565,10 @@ module Aws::S3Control
5316
5565
  # : You must have the `s3:ListAccessGrantsLocations` permission to use
5317
5566
  # this operation.
5318
5567
  #
5568
+ # You must URL encode any signed header values that contain spaces. For
5569
+ # example, if your header value is `my file.txt`, containing two spaces
5570
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5571
+ #
5319
5572
  # @option params [String] :account_id
5320
5573
  # The Amazon Web Services account ID of the S3 Access Grants instance.
5321
5574
  #
@@ -5406,6 +5659,10 @@ module Aws::S3Control
5406
5659
  #
5407
5660
  # * [GetAccessPoint][4]
5408
5661
  #
5662
+ # You must URL encode any signed header values that contain spaces. For
5663
+ # example, if your header value is `my file.txt`, containing two spaces
5664
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5665
+ #
5409
5666
  #
5410
5667
  #
5411
5668
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPoint.html#API_control_GetAccessPoint_Examples
@@ -5507,6 +5764,10 @@ module Aws::S3Control
5507
5764
  #
5508
5765
  # For information about REST API errors, see [REST error responses][2].
5509
5766
  #
5767
+ # You must URL encode any signed header values that contain spaces. For
5768
+ # example, if your header value is `my file.txt`, containing two spaces
5769
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5770
+ #
5510
5771
  #
5511
5772
  #
5512
5773
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPoints.html
@@ -5591,6 +5852,10 @@ module Aws::S3Control
5591
5852
  #
5592
5853
  # * [GetAccessPointForObjectLambda][3]
5593
5854
  #
5855
+ # You must URL encode any signed header values that contain spaces. For
5856
+ # example, if your header value is `my file.txt`, containing two spaces
5857
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5858
+ #
5594
5859
  #
5595
5860
  #
5596
5861
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateAccessPointForObjectLambda.html
@@ -5666,6 +5931,10 @@ module Aws::S3Control
5666
5931
  # : You must have the `s3:ListCallerAccessGrants` permission to use this
5667
5932
  # operation.
5668
5933
  #
5934
+ # You must URL encode any signed header values that contain spaces. For
5935
+ # example, if your header value is `my file.txt`, containing two spaces
5936
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
5937
+ #
5669
5938
  #
5670
5939
  #
5671
5940
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-grants-list-grants.html
@@ -5752,6 +6021,10 @@ module Aws::S3Control
5752
6021
  #
5753
6022
  # * [UpdateJobStatus][5]
5754
6023
  #
6024
+ # You must URL encode any signed header values that contain spaces. For
6025
+ # example, if your header value is `my file.txt`, containing two spaces
6026
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6027
+ #
5755
6028
  #
5756
6029
  #
5757
6030
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/batch-ops.html
@@ -5801,7 +6074,7 @@ module Aws::S3Control
5801
6074
  # resp.jobs #=> Array
5802
6075
  # resp.jobs[0].job_id #=> String
5803
6076
  # resp.jobs[0].description #=> String
5804
- # resp.jobs[0].operation #=> String, one of "LambdaInvoke", "S3PutObjectCopy", "S3PutObjectAcl", "S3PutObjectTagging", "S3DeleteObjectTagging", "S3InitiateRestoreObject", "S3PutObjectLegalHold", "S3PutObjectRetention", "S3ReplicateObject"
6077
+ # resp.jobs[0].operation #=> String, one of "LambdaInvoke", "S3PutObjectCopy", "S3PutObjectAcl", "S3PutObjectTagging", "S3DeleteObjectTagging", "S3InitiateRestoreObject", "S3PutObjectLegalHold", "S3PutObjectRetention", "S3ReplicateObject", "S3ComputeObjectChecksum"
5805
6078
  # resp.jobs[0].priority #=> Integer
5806
6079
  # resp.jobs[0].status #=> String, one of "Active", "Cancelled", "Cancelling", "Complete", "Completing", "Failed", "Failing", "New", "Paused", "Pausing", "Preparing", "Ready", "Suspended"
5807
6080
  # resp.jobs[0].creation_time #=> Time
@@ -5845,6 +6118,10 @@ module Aws::S3Control
5845
6118
  #
5846
6119
  # * [GetMultiRegionAccessPoint][5]
5847
6120
  #
6121
+ # You must URL encode any signed header values that contain spaces. For
6122
+ # example, if your header value is `my file.txt`, containing two spaces
6123
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6124
+ #
5848
6125
  #
5849
6126
  #
5850
6127
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/MultiRegionAccessPointRestrictions.html
@@ -5916,6 +6193,10 @@ module Aws::S3Control
5916
6193
  # uses the S3 on Outposts endpoint hostname prefix and
5917
6194
  # `x-amz-outpost-id` in your request, see the [Examples][2] section.
5918
6195
  #
6196
+ # You must URL encode any signed header values that contain spaces. For
6197
+ # example, if your header value is `my file.txt`, containing two spaces
6198
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6199
+ #
5919
6200
  #
5920
6201
  #
5921
6202
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
@@ -5986,6 +6267,10 @@ module Aws::S3Control
5986
6267
  #
5987
6268
  # </note>
5988
6269
  #
6270
+ # You must URL encode any signed header values that contain spaces. For
6271
+ # example, if your header value is `my file.txt`, containing two spaces
6272
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6273
+ #
5989
6274
  #
5990
6275
  #
5991
6276
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
@@ -6039,6 +6324,10 @@ module Aws::S3Control
6039
6324
  # For information about Storage Lens groups errors, see [List of Amazon
6040
6325
  # S3 Storage Lens error codes][2].
6041
6326
  #
6327
+ # You must URL encode any signed header values that contain spaces. For
6328
+ # example, if your header value is `my file.txt`, containing two spaces
6329
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6330
+ #
6042
6331
  #
6043
6332
  #
6044
6333
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_iam_permissions.html#storage_lens_groups_permissions
@@ -6089,11 +6378,15 @@ module Aws::S3Control
6089
6378
  # <note markdown="1"> This operation is only supported for the following Amazon S3
6090
6379
  # resources:
6091
6380
  #
6092
- # * [Directory buckets][1]
6381
+ # * [Access Points for directory buckets][1]
6382
+ #
6383
+ # * [Access Points for general purpose buckets][2]
6093
6384
  #
6094
- # * [Storage Lens groups][2]
6385
+ # * [Directory buckets][3]
6095
6386
  #
6096
- # * [S3 Access Grants instances, registered locations, and grants][3].
6387
+ # * [Storage Lens groups][4]
6388
+ #
6389
+ # * [S3 Access Grants instances, registered locations, and grants][5].
6097
6390
  #
6098
6391
  # </note>
6099
6392
  #
@@ -6104,15 +6397,15 @@ module Aws::S3Control
6104
6397
  #
6105
6398
  # For more information about the required Storage Lens Groups
6106
6399
  # permissions, see [Setting account permissions to use S3 Storage Lens
6107
- # groups][4].
6400
+ # groups][6].
6108
6401
  #
6109
6402
  # Directory bucket permissions
6110
6403
  #
6111
- # : For directory buckets, you must have the
6112
- # `s3express:ListTagsForResource` permission to use this operation.
6113
- # For more information about directory buckets policies and
6404
+ # : For directory buckets and access points for directory buckets, you
6405
+ # must have the `s3express:ListTagsForResource` permission to use this
6406
+ # operation. For more information about directory buckets policies and
6114
6407
  # permissions, see [Identity and Access Management (IAM) for S3
6115
- # Express One Zone][5] in the *Amazon S3 User Guide*.
6408
+ # Express One Zone][7] in the *Amazon S3 User Guide*.
6116
6409
  #
6117
6410
  # HTTP Host header syntax
6118
6411
  #
@@ -6120,16 +6413,22 @@ module Aws::S3Control
6120
6413
  # `s3express-control.region.amazonaws.com`.
6121
6414
  #
6122
6415
  # For information about S3 Tagging errors, see [List of Amazon S3
6123
- # Tagging error codes][6].
6416
+ # Tagging error codes][8].
6417
+ #
6418
+ # You must URL encode any signed header values that contain spaces. For
6419
+ # example, if your header value is `my file.txt`, containing two spaces
6420
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6124
6421
  #
6125
6422
  #
6126
6423
  #
6127
- # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-tagging.html
6128
- # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-lens-groups.html
6129
- # [3]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-grants-tagging.html
6130
- # [4]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_iam_permissions.html#storage_lens_groups_permissions
6131
- # [5]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-permissions.html
6132
- # [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#S3TaggingErrorCodeList
6424
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-db-tagging.html
6425
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-tagging.html
6426
+ # [3]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-tagging.html
6427
+ # [4]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-lens-groups.html
6428
+ # [5]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-grants-tagging.html
6429
+ # [6]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_iam_permissions.html#storage_lens_groups_permissions
6430
+ # [7]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-permissions.html
6431
+ # [8]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#S3TaggingErrorCodeList
6133
6432
  #
6134
6433
  # @option params [String] :account_id
6135
6434
  # The Amazon Web Services account ID of the resource owner.
@@ -6173,6 +6472,10 @@ module Aws::S3Control
6173
6472
  # : You must have the `s3:PutAccessGrantsInstanceResourcePolicy`
6174
6473
  # permission to use this operation.
6175
6474
  #
6475
+ # You must URL encode any signed header values that contain spaces. For
6476
+ # example, if your header value is `my file.txt`, containing two spaces
6477
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6478
+ #
6176
6479
  # @option params [String] :account_id
6177
6480
  # The Amazon Web Services account ID of the S3 Access Grants instance.
6178
6481
  #
@@ -6226,6 +6529,10 @@ module Aws::S3Control
6226
6529
  #
6227
6530
  # ^
6228
6531
  #
6532
+ # You must URL encode any signed header values that contain spaces. For
6533
+ # example, if your header value is `my file.txt`, containing two spaces
6534
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6535
+ #
6229
6536
  #
6230
6537
  #
6231
6538
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPointConfigurationForObjectLambda.html
@@ -6295,6 +6602,10 @@ module Aws::S3Control
6295
6602
  #
6296
6603
  # * [DeleteAccessPointPolicy][3]
6297
6604
  #
6605
+ # You must URL encode any signed header values that contain spaces. For
6606
+ # example, if your header value is `my file.txt`, containing two spaces
6607
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6608
+ #
6298
6609
  #
6299
6610
  #
6300
6611
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutAccessPointPolicy.html#API_control_PutAccessPointPolicy_Examples
@@ -6368,6 +6679,10 @@ module Aws::S3Control
6368
6679
  #
6369
6680
  # * [GetAccessPointPolicyForObjectLambda][3]
6370
6681
  #
6682
+ # You must URL encode any signed header values that contain spaces. For
6683
+ # example, if your header value is `my file.txt`, containing two spaces
6684
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6685
+ #
6371
6686
  #
6372
6687
  #
6373
6688
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/olap-create.html#olap-create-cli
@@ -6417,6 +6732,10 @@ module Aws::S3Control
6417
6732
  #
6418
6733
  # For information about REST API errors, see [REST error responses][1].
6419
6734
  #
6735
+ # You must URL encode any signed header values that contain spaces. For
6736
+ # example, if your header value is `my file.txt`, containing two spaces
6737
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
6738
+ #
6420
6739
  #
6421
6740
  #
6422
6741
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#RESTErrorResponses
@@ -7068,6 +7387,10 @@ module Aws::S3Control
7068
7387
  #
7069
7388
  # * [GetBucketLifecycleConfiguration][7]
7070
7389
  #
7390
+ # You must URL encode any signed header values that contain spaces. For
7391
+ # example, if your header value is `my file.txt`, containing two spaces
7392
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7393
+ #
7071
7394
  #
7072
7395
  #
7073
7396
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketVersioning.html
@@ -7166,6 +7489,10 @@ module Aws::S3Control
7166
7489
  #
7167
7490
  # * [DeleteJobTagging][4]
7168
7491
  #
7492
+ # You must URL encode any signed header values that contain spaces. For
7493
+ # example, if your header value is `my file.txt`, containing two spaces
7494
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7495
+ #
7169
7496
  #
7170
7497
  #
7171
7498
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetJobTagging.html
@@ -7230,6 +7557,10 @@ module Aws::S3Control
7230
7557
  #
7231
7558
  # * [GetMultiRegionAccessPointPolicyStatus][3]
7232
7559
  #
7560
+ # You must URL encode any signed header values that contain spaces. For
7561
+ # example, if your header value is `my file.txt`, containing two spaces
7562
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7563
+ #
7233
7564
  #
7234
7565
  #
7235
7566
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/MultiRegionAccessPointRestrictions.html
@@ -7294,6 +7625,10 @@ module Aws::S3Control
7294
7625
  #
7295
7626
  # * [DeletePublicAccessBlock][3]
7296
7627
  #
7628
+ # You must URL encode any signed header values that contain spaces. For
7629
+ # example, if your header value is `my file.txt`, containing two spaces
7630
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7631
+ #
7297
7632
  #
7298
7633
  #
7299
7634
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html
@@ -7348,6 +7683,10 @@ module Aws::S3Control
7348
7683
  #
7349
7684
  # </note>
7350
7685
  #
7686
+ # You must URL encode any signed header values that contain spaces. For
7687
+ # example, if your header value is `my file.txt`, containing two spaces
7688
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7689
+ #
7351
7690
  #
7352
7691
  #
7353
7692
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
@@ -7489,6 +7828,10 @@ module Aws::S3Control
7489
7828
  #
7490
7829
  # </note>
7491
7830
  #
7831
+ # You must URL encode any signed header values that contain spaces. For
7832
+ # example, if your header value is `my file.txt`, containing two spaces
7833
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7834
+ #
7492
7835
  #
7493
7836
  #
7494
7837
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
@@ -7568,6 +7911,10 @@ module Aws::S3Control
7568
7911
  #
7569
7912
  # * `eu-west-1`
7570
7913
  #
7914
+ # You must URL encode any signed header values that contain spaces. For
7915
+ # example, if your header value is `my file.txt`, containing two spaces
7916
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7917
+ #
7571
7918
  # @option params [String] :account_id
7572
7919
  # The Amazon Web Services account ID for the owner of the Multi-Region
7573
7920
  # Access Point.
@@ -7613,11 +7960,25 @@ module Aws::S3Control
7613
7960
  #
7614
7961
  # <note markdown="1"> This operation is only supported for the following Amazon S3 resource:
7615
7962
  #
7616
- # * [Directory buckets][1]
7963
+ # * [Access Points for directory buckets][1]
7964
+ #
7965
+ # * [Access Points for general purpose buckets][2]
7617
7966
  #
7618
- # * [S3 Storage Lens groups][2]
7967
+ # * [Directory buckets][3]
7619
7968
  #
7620
- # * [S3 Access Grants instances, registered locations, or grants][3].
7969
+ # * [S3 Storage Lens groups][4]
7970
+ #
7971
+ # * [S3 Access Grants instances, registered locations, or grants][5].
7972
+ #
7973
+ # </note>
7974
+ #
7975
+ # <note markdown="1"> This operation is only supported for the following Amazon S3 resource:
7976
+ #
7977
+ # * [Directory buckets][3]
7978
+ #
7979
+ # * [S3 Storage Lens groups][4]
7980
+ #
7981
+ # * [S3 Access Grants instances, registered locations, or grants][5].
7621
7982
  #
7622
7983
  # </note>
7623
7984
  #
@@ -7628,15 +7989,15 @@ module Aws::S3Control
7628
7989
  #
7629
7990
  # For more information about the required Storage Lens Groups
7630
7991
  # permissions, see [Setting account permissions to use S3 Storage Lens
7631
- # groups][4].
7992
+ # groups][6].
7632
7993
  #
7633
7994
  # Directory bucket permissions
7634
7995
  #
7635
- # : For directory buckets, you must have the `s3express:TagResource`
7636
- # permission to use this operation. For more information about
7637
- # directory buckets policies and permissions, see [Identity and Access
7638
- # Management (IAM) for S3 Express One Zone][5] in the *Amazon S3 User
7639
- # Guide*.
7996
+ # : For directory buckets and access points for directory buckets, you
7997
+ # must have the `s3express:TagResource` permission to use this
7998
+ # operation. For more information about directory buckets policies and
7999
+ # permissions, see [Identity and Access Management (IAM) for S3
8000
+ # Express One Zone][7] in the *Amazon S3 User Guide*.
7640
8001
  #
7641
8002
  # HTTP Host header syntax
7642
8003
  #
@@ -7644,16 +8005,22 @@ module Aws::S3Control
7644
8005
  # `s3express-control.region.amazonaws.com`.
7645
8006
  #
7646
8007
  # For information about S3 Tagging errors, see [List of Amazon S3
7647
- # Tagging error codes][6].
8008
+ # Tagging error codes][8].
7648
8009
  #
8010
+ # You must URL encode any signed header values that contain spaces. For
8011
+ # example, if your header value is `my file.txt`, containing two spaces
8012
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7649
8013
  #
7650
8014
  #
7651
- # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-tagging.html
7652
- # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-lens-groups.html
7653
- # [3]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-grants-tagging.html
7654
- # [4]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_iam_permissions.html#storage_lens_groups_permissions
7655
- # [5]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-permissions.html
7656
- # [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#S3TaggingErrorCodeList
8015
+ #
8016
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-db-tagging.html
8017
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-tagging.html
8018
+ # [3]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-tagging.html
8019
+ # [4]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-lens-groups.html
8020
+ # [5]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-grants-tagging.html
8021
+ # [6]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_iam_permissions.html#storage_lens_groups_permissions
8022
+ # [7]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-permissions.html
8023
+ # [8]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#S3TaggingErrorCodeList
7657
8024
  #
7658
8025
  # @option params [String] :account_id
7659
8026
  # The Amazon Web Services account ID that created the S3 resource that
@@ -7699,11 +8066,15 @@ module Aws::S3Control
7699
8066
  # <note markdown="1"> This operation is only supported for the following Amazon S3
7700
8067
  # resources:
7701
8068
  #
7702
- # * [Directory buckets][1]
8069
+ # * [Access Points for directory buckets][1]
8070
+ #
8071
+ # * [Access Points for general purpose buckets][2]
8072
+ #
8073
+ # * [Directory buckets][3]
7703
8074
  #
7704
- # * [Storage Lens groups][2]
8075
+ # * [Storage Lens groups][4]
7705
8076
  #
7706
- # * [S3 Access Grants instances, registered locations, and grants][3].
8077
+ # * [S3 Access Grants instances, registered locations, and grants][5].
7707
8078
  #
7708
8079
  # </note>
7709
8080
  #
@@ -7714,15 +8085,15 @@ module Aws::S3Control
7714
8085
  #
7715
8086
  # For more information about the required Storage Lens Groups
7716
8087
  # permissions, see [Setting account permissions to use S3 Storage Lens
7717
- # groups][4].
8088
+ # groups][6].
7718
8089
  #
7719
8090
  # Directory bucket permissions
7720
8091
  #
7721
- # : For directory buckets, you must have the `s3express:UntagResource`
7722
- # permission to use this operation. For more information about
7723
- # directory buckets policies and permissions, see [Identity and Access
7724
- # Management (IAM) for S3 Express One Zone][5] in the *Amazon S3 User
7725
- # Guide*.
8092
+ # : For directory buckets and access points for directory buckets, you
8093
+ # must have the `s3express:UntagResource` permission to use this
8094
+ # operation. For more information about directory buckets policies and
8095
+ # permissions, see [Identity and Access Management (IAM) for S3
8096
+ # Express One Zone][7] in the *Amazon S3 User Guide*.
7726
8097
  #
7727
8098
  # HTTP Host header syntax
7728
8099
  #
@@ -7730,16 +8101,22 @@ module Aws::S3Control
7730
8101
  # `s3express-control.region.amazonaws.com`.
7731
8102
  #
7732
8103
  # For information about S3 Tagging errors, see [List of Amazon S3
7733
- # Tagging error codes][6].
8104
+ # Tagging error codes][8].
8105
+ #
8106
+ # You must URL encode any signed header values that contain spaces. For
8107
+ # example, if your header value is `my file.txt`, containing two spaces
8108
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
7734
8109
  #
7735
8110
  #
7736
8111
  #
7737
- # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-tagging.html
7738
- # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-lens-groups.html
7739
- # [3]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-grants-tagging.html
7740
- # [4]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_iam_permissions.html#storage_lens_groups_permissions
7741
- # [5]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-permissions.html
7742
- # [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#S3TaggingErrorCodeList
8112
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-db-tagging.html
8113
+ # [2]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-tagging.html
8114
+ # [3]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-tagging.html
8115
+ # [4]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-lens-groups.html
8116
+ # [5]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-grants-tagging.html
8117
+ # [6]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_iam_permissions.html#storage_lens_groups_permissions
8118
+ # [7]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-permissions.html
8119
+ # [8]: https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#S3TaggingErrorCodeList
7743
8120
  #
7744
8121
  # @option params [String] :account_id
7745
8122
  # The Amazon Web Services account ID that owns the resource that you're
@@ -7786,6 +8163,10 @@ module Aws::S3Control
7786
8163
  #
7787
8164
  # : You must also have the following permission: `iam:PassRole`
7788
8165
  #
8166
+ # You must URL encode any signed header values that contain spaces. For
8167
+ # example, if your header value is `my file.txt`, containing two spaces
8168
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
8169
+ #
7789
8170
  # @option params [String] :account_id
7790
8171
  # The Amazon Web Services account ID of the S3 Access Grants instance.
7791
8172
  #
@@ -7861,6 +8242,10 @@ module Aws::S3Control
7861
8242
  #
7862
8243
  # * [UpdateJobStatus][5]
7863
8244
  #
8245
+ # You must URL encode any signed header values that contain spaces. For
8246
+ # example, if your header value is `my file.txt`, containing two spaces
8247
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
8248
+ #
7864
8249
  #
7865
8250
  #
7866
8251
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/batch-ops.html
@@ -7926,6 +8311,10 @@ module Aws::S3Control
7926
8311
  #
7927
8312
  # * [UpdateJobStatus][5]
7928
8313
  #
8314
+ # You must URL encode any signed header values that contain spaces. For
8315
+ # example, if your header value is `my file.txt`, containing two spaces
8316
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
8317
+ #
7929
8318
  #
7930
8319
  #
7931
8320
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/batch-ops.html
@@ -7988,6 +8377,10 @@ module Aws::S3Control
7988
8377
  # For information about Storage Lens groups errors, see [List of Amazon
7989
8378
  # S3 Storage Lens error codes][2].
7990
8379
  #
8380
+ # You must URL encode any signed header values that contain spaces. For
8381
+ # example, if your header value is `my file.txt`, containing two spaces
8382
+ # after `my`, you must URL encode this value to `my%20%20file.txt`.
8383
+ #
7991
8384
  #
7992
8385
  #
7993
8386
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_iam_permissions.html#storage_lens_groups_permissions
@@ -8096,7 +8489,7 @@ module Aws::S3Control
8096
8489
  tracer: tracer
8097
8490
  )
8098
8491
  context[:gem_name] = 'aws-sdk-s3control'
8099
- context[:gem_version] = '1.114.0'
8492
+ context[:gem_version] = '1.116.0'
8100
8493
  Seahorse::Client::Request.new(handlers, context)
8101
8494
  end
8102
8495