aws-sdk-s3control 1.53.0 → 1.55.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3control/client.rb +146 -119
- data/lib/aws-sdk-s3control/client_api.rb +66 -116
- data/lib/aws-sdk-s3control/endpoint_parameters.rb +114 -0
- data/lib/aws-sdk-s3control/endpoint_provider.rb +545 -0
- data/lib/aws-sdk-s3control/endpoints.rb +1195 -0
- data/lib/aws-sdk-s3control/plugins/arn.rb +1 -162
- data/lib/aws-sdk-s3control/plugins/dualstack.rb +2 -31
- data/lib/aws-sdk-s3control/plugins/endpoints.rb +186 -0
- data/lib/aws-sdk-s3control/types.rb +121 -68
- data/lib/aws-sdk-s3control.rb +5 -1
- metadata +8 -5
- data/lib/aws-sdk-s3control/plugins/s3_control_signer.rb +0 -97
@@ -30,10 +30,10 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
33
34
|
require 'aws-sdk-core/plugins/protocols/rest_xml.rb'
|
34
35
|
require 'aws-sdk-s3control/plugins/arn.rb'
|
35
36
|
require 'aws-sdk-s3control/plugins/dualstack.rb'
|
36
|
-
require 'aws-sdk-s3control/plugins/s3_control_signer.rb'
|
37
37
|
require 'aws-sdk-s3control/plugins/s3_host_id.rb'
|
38
38
|
|
39
39
|
Aws::Plugins::GlobalConfiguration.add_identifier(:s3control)
|
@@ -82,11 +82,12 @@ module Aws::S3Control
|
|
82
82
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
83
83
|
add_plugin(Aws::Plugins::DefaultsMode)
|
84
84
|
add_plugin(Aws::Plugins::RecursionDetection)
|
85
|
+
add_plugin(Aws::Plugins::Sign)
|
85
86
|
add_plugin(Aws::Plugins::Protocols::RestXml)
|
86
87
|
add_plugin(Aws::S3Control::Plugins::ARN)
|
87
88
|
add_plugin(Aws::S3Control::Plugins::Dualstack)
|
88
|
-
add_plugin(Aws::S3Control::Plugins::S3ControlSigner)
|
89
89
|
add_plugin(Aws::S3Control::Plugins::S3HostId)
|
90
|
+
add_plugin(Aws::S3Control::Plugins::Endpoints)
|
90
91
|
|
91
92
|
# @overload initialize(options)
|
92
93
|
# @param [Hash] options
|
@@ -299,6 +300,19 @@ module Aws::S3Control
|
|
299
300
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
300
301
|
# requests are made, and retries are disabled.
|
301
302
|
#
|
303
|
+
# @option options [Aws::TokenProvider] :token_provider
|
304
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
305
|
+
# following classes:
|
306
|
+
#
|
307
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
308
|
+
# tokens.
|
309
|
+
#
|
310
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
311
|
+
# access token generated from `aws login`.
|
312
|
+
#
|
313
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
314
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
315
|
+
#
|
302
316
|
# @option options [Boolean] :use_dualstack_endpoint
|
303
317
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
304
318
|
# will be used if available.
|
@@ -312,6 +326,9 @@ module Aws::S3Control
|
|
312
326
|
# When `true`, request parameters are validated before
|
313
327
|
# sending the request.
|
314
328
|
#
|
329
|
+
# @option options [Aws::S3Control::EndpointProvider] :endpoint_provider
|
330
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::S3Control::EndpointParameters`
|
331
|
+
#
|
315
332
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
316
333
|
# requests through. Formatted like 'http://proxy.com:123'.
|
317
334
|
#
|
@@ -404,7 +421,7 @@ module Aws::S3Control
|
|
404
421
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPoint.html
|
405
422
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPoints.html
|
406
423
|
#
|
407
|
-
# @option params [
|
424
|
+
# @option params [String] :account_id
|
408
425
|
# The Amazon Web Services account ID for the owner of the bucket for
|
409
426
|
# which you want to create an access point.
|
410
427
|
#
|
@@ -449,7 +466,7 @@ module Aws::S3Control
|
|
449
466
|
# @example Request syntax with placeholder values
|
450
467
|
#
|
451
468
|
# resp = client.create_access_point({
|
452
|
-
# account_id: "AccountId",
|
469
|
+
# account_id: "AccountId",
|
453
470
|
# name: "AccessPointName", # required
|
454
471
|
# bucket: "BucketName", # required
|
455
472
|
# vpc_configuration: {
|
@@ -497,7 +514,7 @@ module Aws::S3Control
|
|
497
514
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPointForObjectLambda.html
|
498
515
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPointsForObjectLambda.html
|
499
516
|
#
|
500
|
-
# @option params [
|
517
|
+
# @option params [String] :account_id
|
501
518
|
# The Amazon Web Services account ID for owner of the specified Object
|
502
519
|
# Lambda Access Point.
|
503
520
|
#
|
@@ -514,7 +531,7 @@ module Aws::S3Control
|
|
514
531
|
# @example Request syntax with placeholder values
|
515
532
|
#
|
516
533
|
# resp = client.create_access_point_for_object_lambda({
|
517
|
-
# account_id: "AccountId",
|
534
|
+
# account_id: "AccountId",
|
518
535
|
# name: "ObjectLambdaAccessPointName", # required
|
519
536
|
# configuration: { # required
|
520
537
|
# supporting_access_point: "ObjectLambdaSupportingAccessPointArn", # required
|
@@ -735,7 +752,7 @@ module Aws::S3Control
|
|
735
752
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
736
753
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_JobOperation.html
|
737
754
|
#
|
738
|
-
# @option params [
|
755
|
+
# @option params [String] :account_id
|
739
756
|
# The Amazon Web Services account ID that creates the job.
|
740
757
|
#
|
741
758
|
# @option params [Boolean] :confirmation_required
|
@@ -795,7 +812,7 @@ module Aws::S3Control
|
|
795
812
|
# @example Request syntax with placeholder values
|
796
813
|
#
|
797
814
|
# resp = client.create_job({
|
798
|
-
# account_id: "AccountId",
|
815
|
+
# account_id: "AccountId",
|
799
816
|
# confirmation_required: false,
|
800
817
|
# operation: { # required
|
801
818
|
# lambda_invoke: {
|
@@ -1002,7 +1019,7 @@ module Aws::S3Control
|
|
1002
1019
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetMultiRegionAccessPoint.html
|
1003
1020
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListMultiRegionAccessPoints.html
|
1004
1021
|
#
|
1005
|
-
# @option params [
|
1022
|
+
# @option params [String] :account_id
|
1006
1023
|
# The Amazon Web Services account ID for the owner of the Multi-Region
|
1007
1024
|
# Access Point. The owner of the Multi-Region Access Point also must own
|
1008
1025
|
# the underlying buckets.
|
@@ -1025,7 +1042,7 @@ module Aws::S3Control
|
|
1025
1042
|
# @example Request syntax with placeholder values
|
1026
1043
|
#
|
1027
1044
|
# resp = client.create_multi_region_access_point({
|
1028
|
-
# account_id: "AccountId",
|
1045
|
+
# account_id: "AccountId",
|
1029
1046
|
# client_token: "MultiRegionAccessPointClientToken", # required
|
1030
1047
|
# details: { # required
|
1031
1048
|
# name: "MultiRegionAccessPointName", # required
|
@@ -1081,7 +1098,7 @@ module Aws::S3Control
|
|
1081
1098
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPoint.html
|
1082
1099
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPoints.html
|
1083
1100
|
#
|
1084
|
-
# @option params [
|
1101
|
+
# @option params [String] :account_id
|
1085
1102
|
# The account ID for the account that owns the specified access point.
|
1086
1103
|
#
|
1087
1104
|
# @option params [required, String] :name
|
@@ -1105,7 +1122,7 @@ module Aws::S3Control
|
|
1105
1122
|
# @example Request syntax with placeholder values
|
1106
1123
|
#
|
1107
1124
|
# resp = client.delete_access_point({
|
1108
|
-
# account_id: "AccountId",
|
1125
|
+
# account_id: "AccountId",
|
1109
1126
|
# name: "AccessPointName", # required
|
1110
1127
|
# })
|
1111
1128
|
#
|
@@ -1135,7 +1152,7 @@ module Aws::S3Control
|
|
1135
1152
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPointForObjectLambda.html
|
1136
1153
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPointsForObjectLambda.html
|
1137
1154
|
#
|
1138
|
-
# @option params [
|
1155
|
+
# @option params [String] :account_id
|
1139
1156
|
# The account ID for the account that owns the specified Object Lambda
|
1140
1157
|
# Access Point.
|
1141
1158
|
#
|
@@ -1147,7 +1164,7 @@ module Aws::S3Control
|
|
1147
1164
|
# @example Request syntax with placeholder values
|
1148
1165
|
#
|
1149
1166
|
# resp = client.delete_access_point_for_object_lambda({
|
1150
|
-
# account_id: "AccountId",
|
1167
|
+
# account_id: "AccountId",
|
1151
1168
|
# name: "ObjectLambdaAccessPointName", # required
|
1152
1169
|
# })
|
1153
1170
|
#
|
@@ -1184,7 +1201,7 @@ module Aws::S3Control
|
|
1184
1201
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutAccessPointPolicy.html
|
1185
1202
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPointPolicy.html
|
1186
1203
|
#
|
1187
|
-
# @option params [
|
1204
|
+
# @option params [String] :account_id
|
1188
1205
|
# The account ID for the account that owns the specified access point.
|
1189
1206
|
#
|
1190
1207
|
# @option params [required, String] :name
|
@@ -1208,7 +1225,7 @@ module Aws::S3Control
|
|
1208
1225
|
# @example Request syntax with placeholder values
|
1209
1226
|
#
|
1210
1227
|
# resp = client.delete_access_point_policy({
|
1211
|
-
# account_id: "AccountId",
|
1228
|
+
# account_id: "AccountId",
|
1212
1229
|
# name: "AccessPointName", # required
|
1213
1230
|
# })
|
1214
1231
|
#
|
@@ -1235,7 +1252,7 @@ module Aws::S3Control
|
|
1235
1252
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPointPolicyForObjectLambda.html
|
1236
1253
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutAccessPointPolicyForObjectLambda.html
|
1237
1254
|
#
|
1238
|
-
# @option params [
|
1255
|
+
# @option params [String] :account_id
|
1239
1256
|
# The account ID for the account that owns the specified Object Lambda
|
1240
1257
|
# Access Point.
|
1241
1258
|
#
|
@@ -1248,7 +1265,7 @@ module Aws::S3Control
|
|
1248
1265
|
# @example Request syntax with placeholder values
|
1249
1266
|
#
|
1250
1267
|
# resp = client.delete_access_point_policy_for_object_lambda({
|
1251
|
-
# account_id: "AccountId",
|
1268
|
+
# account_id: "AccountId",
|
1252
1269
|
# name: "ObjectLambdaAccessPointName", # required
|
1253
1270
|
# })
|
1254
1271
|
#
|
@@ -1296,7 +1313,7 @@ module Aws::S3Control
|
|
1296
1313
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetBucket.html
|
1297
1314
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObject.html
|
1298
1315
|
#
|
1299
|
-
# @option params [
|
1316
|
+
# @option params [String] :account_id
|
1300
1317
|
# The account ID that owns the Outposts bucket.
|
1301
1318
|
#
|
1302
1319
|
# @option params [required, String] :bucket
|
@@ -1320,7 +1337,7 @@ module Aws::S3Control
|
|
1320
1337
|
# @example Request syntax with placeholder values
|
1321
1338
|
#
|
1322
1339
|
# resp = client.delete_bucket({
|
1323
|
-
# account_id: "AccountId",
|
1340
|
+
# account_id: "AccountId",
|
1324
1341
|
# bucket: "BucketName", # required
|
1325
1342
|
# })
|
1326
1343
|
#
|
@@ -1378,7 +1395,7 @@ module Aws::S3Control
|
|
1378
1395
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketLifecycleConfiguration.html
|
1379
1396
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetBucketLifecycleConfiguration.html
|
1380
1397
|
#
|
1381
|
-
# @option params [
|
1398
|
+
# @option params [String] :account_id
|
1382
1399
|
# The account ID of the lifecycle configuration to delete.
|
1383
1400
|
#
|
1384
1401
|
# @option params [required, String] :bucket
|
@@ -1402,7 +1419,7 @@ module Aws::S3Control
|
|
1402
1419
|
# @example Request syntax with placeholder values
|
1403
1420
|
#
|
1404
1421
|
# resp = client.delete_bucket_lifecycle_configuration({
|
1405
|
-
# account_id: "AccountId",
|
1422
|
+
# account_id: "AccountId",
|
1406
1423
|
# bucket: "BucketName", # required
|
1407
1424
|
# })
|
1408
1425
|
#
|
@@ -1466,7 +1483,7 @@ module Aws::S3Control
|
|
1466
1483
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetBucketPolicy.html
|
1467
1484
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketPolicy.html
|
1468
1485
|
#
|
1469
|
-
# @option params [
|
1486
|
+
# @option params [String] :account_id
|
1470
1487
|
# The account ID of the Outposts bucket.
|
1471
1488
|
#
|
1472
1489
|
# @option params [required, String] :bucket
|
@@ -1490,7 +1507,7 @@ module Aws::S3Control
|
|
1490
1507
|
# @example Request syntax with placeholder values
|
1491
1508
|
#
|
1492
1509
|
# resp = client.delete_bucket_policy({
|
1493
|
-
# account_id: "AccountId",
|
1510
|
+
# account_id: "AccountId",
|
1494
1511
|
# bucket: "BucketName", # required
|
1495
1512
|
# })
|
1496
1513
|
#
|
@@ -1538,7 +1555,7 @@ module Aws::S3Control
|
|
1538
1555
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetBucketTagging.html
|
1539
1556
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketTagging.html
|
1540
1557
|
#
|
1541
|
-
# @option params [
|
1558
|
+
# @option params [String] :account_id
|
1542
1559
|
# The Amazon Web Services account ID of the Outposts bucket tag set to
|
1543
1560
|
# be removed.
|
1544
1561
|
#
|
@@ -1563,7 +1580,7 @@ module Aws::S3Control
|
|
1563
1580
|
# @example Request syntax with placeholder values
|
1564
1581
|
#
|
1565
1582
|
# resp = client.delete_bucket_tagging({
|
1566
|
-
# account_id: "AccountId",
|
1583
|
+
# account_id: "AccountId",
|
1567
1584
|
# bucket: "BucketName", # required
|
1568
1585
|
# })
|
1569
1586
|
#
|
@@ -1598,7 +1615,7 @@ module Aws::S3Control
|
|
1598
1615
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetJobTagging.html
|
1599
1616
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutJobTagging.html
|
1600
1617
|
#
|
1601
|
-
# @option params [
|
1618
|
+
# @option params [String] :account_id
|
1602
1619
|
# The Amazon Web Services account ID associated with the S3 Batch
|
1603
1620
|
# Operations job.
|
1604
1621
|
#
|
@@ -1610,7 +1627,7 @@ module Aws::S3Control
|
|
1610
1627
|
# @example Request syntax with placeholder values
|
1611
1628
|
#
|
1612
1629
|
# resp = client.delete_job_tagging({
|
1613
|
-
# account_id: "AccountId",
|
1630
|
+
# account_id: "AccountId",
|
1614
1631
|
# job_id: "JobId", # required
|
1615
1632
|
# })
|
1616
1633
|
#
|
@@ -1655,7 +1672,7 @@ module Aws::S3Control
|
|
1655
1672
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetMultiRegionAccessPoint.html
|
1656
1673
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListMultiRegionAccessPoints.html
|
1657
1674
|
#
|
1658
|
-
# @option params [
|
1675
|
+
# @option params [String] :account_id
|
1659
1676
|
# The Amazon Web Services account ID for the owner of the Multi-Region
|
1660
1677
|
# Access Point.
|
1661
1678
|
#
|
@@ -1677,7 +1694,7 @@ module Aws::S3Control
|
|
1677
1694
|
# @example Request syntax with placeholder values
|
1678
1695
|
#
|
1679
1696
|
# resp = client.delete_multi_region_access_point({
|
1680
|
-
# account_id: "AccountId",
|
1697
|
+
# account_id: "AccountId",
|
1681
1698
|
# client_token: "MultiRegionAccessPointClientToken", # required
|
1682
1699
|
# details: { # required
|
1683
1700
|
# name: "MultiRegionAccessPointName", # required
|
@@ -1713,7 +1730,7 @@ module Aws::S3Control
|
|
1713
1730
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetPublicAccessBlock.html
|
1714
1731
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutPublicAccessBlock.html
|
1715
1732
|
#
|
1716
|
-
# @option params [
|
1733
|
+
# @option params [String] :account_id
|
1717
1734
|
# The account ID for the Amazon Web Services account whose
|
1718
1735
|
# `PublicAccessBlock` configuration you want to remove.
|
1719
1736
|
#
|
@@ -1722,7 +1739,7 @@ module Aws::S3Control
|
|
1722
1739
|
# @example Request syntax with placeholder values
|
1723
1740
|
#
|
1724
1741
|
# resp = client.delete_public_access_block({
|
1725
|
-
# account_id: "AccountId",
|
1742
|
+
# account_id: "AccountId",
|
1726
1743
|
# })
|
1727
1744
|
#
|
1728
1745
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/DeletePublicAccessBlock AWS API Documentation
|
@@ -1753,7 +1770,7 @@ module Aws::S3Control
|
|
1753
1770
|
# @option params [required, String] :config_id
|
1754
1771
|
# The ID of the S3 Storage Lens configuration.
|
1755
1772
|
#
|
1756
|
-
# @option params [
|
1773
|
+
# @option params [String] :account_id
|
1757
1774
|
# The account ID of the requester.
|
1758
1775
|
#
|
1759
1776
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
@@ -1762,7 +1779,7 @@ module Aws::S3Control
|
|
1762
1779
|
#
|
1763
1780
|
# resp = client.delete_storage_lens_configuration({
|
1764
1781
|
# config_id: "ConfigId", # required
|
1765
|
-
# account_id: "AccountId",
|
1782
|
+
# account_id: "AccountId",
|
1766
1783
|
# })
|
1767
1784
|
#
|
1768
1785
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/DeleteStorageLensConfiguration AWS API Documentation
|
@@ -1794,7 +1811,7 @@ module Aws::S3Control
|
|
1794
1811
|
# @option params [required, String] :config_id
|
1795
1812
|
# The ID of the S3 Storage Lens configuration.
|
1796
1813
|
#
|
1797
|
-
# @option params [
|
1814
|
+
# @option params [String] :account_id
|
1798
1815
|
# The account ID of the requester.
|
1799
1816
|
#
|
1800
1817
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
@@ -1803,7 +1820,7 @@ module Aws::S3Control
|
|
1803
1820
|
#
|
1804
1821
|
# resp = client.delete_storage_lens_configuration_tagging({
|
1805
1822
|
# config_id: "ConfigId", # required
|
1806
|
-
# account_id: "AccountId",
|
1823
|
+
# account_id: "AccountId",
|
1807
1824
|
# })
|
1808
1825
|
#
|
1809
1826
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/DeleteStorageLensConfigurationTagging AWS API Documentation
|
@@ -1839,7 +1856,7 @@ module Aws::S3Control
|
|
1839
1856
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobPriority.html
|
1840
1857
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
1841
1858
|
#
|
1842
|
-
# @option params [
|
1859
|
+
# @option params [String] :account_id
|
1843
1860
|
# The Amazon Web Services account ID associated with the S3 Batch
|
1844
1861
|
# Operations job.
|
1845
1862
|
#
|
@@ -1853,7 +1870,7 @@ module Aws::S3Control
|
|
1853
1870
|
# @example Request syntax with placeholder values
|
1854
1871
|
#
|
1855
1872
|
# resp = client.describe_job({
|
1856
|
-
# account_id: "AccountId",
|
1873
|
+
# account_id: "AccountId",
|
1857
1874
|
# job_id: "JobId", # required
|
1858
1875
|
# })
|
1859
1876
|
#
|
@@ -1993,7 +2010,7 @@ module Aws::S3Control
|
|
1993
2010
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetMultiRegionAccessPoint.html
|
1994
2011
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListMultiRegionAccessPoints.html
|
1995
2012
|
#
|
1996
|
-
# @option params [
|
2013
|
+
# @option params [String] :account_id
|
1997
2014
|
# The Amazon Web Services account ID for the owner of the Multi-Region
|
1998
2015
|
# Access Point.
|
1999
2016
|
#
|
@@ -2010,7 +2027,7 @@ module Aws::S3Control
|
|
2010
2027
|
# @example Request syntax with placeholder values
|
2011
2028
|
#
|
2012
2029
|
# resp = client.describe_multi_region_access_point_operation({
|
2013
|
-
# account_id: "AccountId",
|
2030
|
+
# account_id: "AccountId",
|
2014
2031
|
# request_token_arn: "AsyncRequestTokenARN", # required
|
2015
2032
|
# })
|
2016
2033
|
#
|
@@ -2074,7 +2091,7 @@ module Aws::S3Control
|
|
2074
2091
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPoint.html
|
2075
2092
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPoints.html
|
2076
2093
|
#
|
2077
|
-
# @option params [
|
2094
|
+
# @option params [String] :account_id
|
2078
2095
|
# The account ID for the account that owns the specified access point.
|
2079
2096
|
#
|
2080
2097
|
# @option params [required, String] :name
|
@@ -2109,7 +2126,7 @@ module Aws::S3Control
|
|
2109
2126
|
# @example Request syntax with placeholder values
|
2110
2127
|
#
|
2111
2128
|
# resp = client.get_access_point({
|
2112
|
-
# account_id: "AccountId",
|
2129
|
+
# account_id: "AccountId",
|
2113
2130
|
# name: "AccessPointName", # required
|
2114
2131
|
# })
|
2115
2132
|
#
|
@@ -2151,7 +2168,7 @@ module Aws::S3Control
|
|
2151
2168
|
#
|
2152
2169
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutAccessPointConfigurationForObjectLambda.html
|
2153
2170
|
#
|
2154
|
-
# @option params [
|
2171
|
+
# @option params [String] :account_id
|
2155
2172
|
# The account ID for the account that owns the specified Object Lambda
|
2156
2173
|
# Access Point.
|
2157
2174
|
#
|
@@ -2166,7 +2183,7 @@ module Aws::S3Control
|
|
2166
2183
|
# @example Request syntax with placeholder values
|
2167
2184
|
#
|
2168
2185
|
# resp = client.get_access_point_configuration_for_object_lambda({
|
2169
|
-
# account_id: "AccountId",
|
2186
|
+
# account_id: "AccountId",
|
2170
2187
|
# name: "ObjectLambdaAccessPointName", # required
|
2171
2188
|
# })
|
2172
2189
|
#
|
@@ -2208,7 +2225,7 @@ module Aws::S3Control
|
|
2208
2225
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPointForObjectLambda.html
|
2209
2226
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPointsForObjectLambda.html
|
2210
2227
|
#
|
2211
|
-
# @option params [
|
2228
|
+
# @option params [String] :account_id
|
2212
2229
|
# The account ID for the account that owns the specified Object Lambda
|
2213
2230
|
# Access Point.
|
2214
2231
|
#
|
@@ -2224,7 +2241,7 @@ module Aws::S3Control
|
|
2224
2241
|
# @example Request syntax with placeholder values
|
2225
2242
|
#
|
2226
2243
|
# resp = client.get_access_point_for_object_lambda({
|
2227
|
-
# account_id: "AccountId",
|
2244
|
+
# account_id: "AccountId",
|
2228
2245
|
# name: "ObjectLambdaAccessPointName", # required
|
2229
2246
|
# })
|
2230
2247
|
#
|
@@ -2260,7 +2277,7 @@ module Aws::S3Control
|
|
2260
2277
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutAccessPointPolicy.html
|
2261
2278
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPointPolicy.html
|
2262
2279
|
#
|
2263
|
-
# @option params [
|
2280
|
+
# @option params [String] :account_id
|
2264
2281
|
# The account ID for the account that owns the specified access point.
|
2265
2282
|
#
|
2266
2283
|
# @option params [required, String] :name
|
@@ -2286,7 +2303,7 @@ module Aws::S3Control
|
|
2286
2303
|
# @example Request syntax with placeholder values
|
2287
2304
|
#
|
2288
2305
|
# resp = client.get_access_point_policy({
|
2289
|
-
# account_id: "AccountId",
|
2306
|
+
# account_id: "AccountId",
|
2290
2307
|
# name: "AccessPointName", # required
|
2291
2308
|
# })
|
2292
2309
|
#
|
@@ -2317,7 +2334,7 @@ module Aws::S3Control
|
|
2317
2334
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPointPolicyForObjectLambda.html
|
2318
2335
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutAccessPointPolicyForObjectLambda.html
|
2319
2336
|
#
|
2320
|
-
# @option params [
|
2337
|
+
# @option params [String] :account_id
|
2321
2338
|
# The account ID for the account that owns the specified Object Lambda
|
2322
2339
|
# Access Point.
|
2323
2340
|
#
|
@@ -2331,7 +2348,7 @@ module Aws::S3Control
|
|
2331
2348
|
# @example Request syntax with placeholder values
|
2332
2349
|
#
|
2333
2350
|
# resp = client.get_access_point_policy_for_object_lambda({
|
2334
|
-
# account_id: "AccountId",
|
2351
|
+
# account_id: "AccountId",
|
2335
2352
|
# name: "ObjectLambdaAccessPointName", # required
|
2336
2353
|
# })
|
2337
2354
|
#
|
@@ -2357,7 +2374,7 @@ module Aws::S3Control
|
|
2357
2374
|
#
|
2358
2375
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points.html
|
2359
2376
|
#
|
2360
|
-
# @option params [
|
2377
|
+
# @option params [String] :account_id
|
2361
2378
|
# The account ID for the account that owns the specified access point.
|
2362
2379
|
#
|
2363
2380
|
# @option params [required, String] :name
|
@@ -2370,7 +2387,7 @@ module Aws::S3Control
|
|
2370
2387
|
# @example Request syntax with placeholder values
|
2371
2388
|
#
|
2372
2389
|
# resp = client.get_access_point_policy_status({
|
2373
|
-
# account_id: "AccountId",
|
2390
|
+
# account_id: "AccountId",
|
2374
2391
|
# name: "AccessPointName", # required
|
2375
2392
|
# })
|
2376
2393
|
#
|
@@ -2390,7 +2407,7 @@ module Aws::S3Control
|
|
2390
2407
|
# Returns the status of the resource policy associated with an Object
|
2391
2408
|
# Lambda Access Point.
|
2392
2409
|
#
|
2393
|
-
# @option params [
|
2410
|
+
# @option params [String] :account_id
|
2394
2411
|
# The account ID for the account that owns the specified Object Lambda
|
2395
2412
|
# Access Point.
|
2396
2413
|
#
|
@@ -2404,7 +2421,7 @@ module Aws::S3Control
|
|
2404
2421
|
# @example Request syntax with placeholder values
|
2405
2422
|
#
|
2406
2423
|
# resp = client.get_access_point_policy_status_for_object_lambda({
|
2407
|
-
# account_id: "AccountId",
|
2424
|
+
# account_id: "AccountId",
|
2408
2425
|
# name: "ObjectLambdaAccessPointName", # required
|
2409
2426
|
# })
|
2410
2427
|
#
|
@@ -2461,7 +2478,7 @@ module Aws::S3Control
|
|
2461
2478
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateBucket.html
|
2462
2479
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucket.html
|
2463
2480
|
#
|
2464
|
-
# @option params [
|
2481
|
+
# @option params [String] :account_id
|
2465
2482
|
# The Amazon Web Services account ID of the Outposts bucket.
|
2466
2483
|
#
|
2467
2484
|
# @option params [required, String] :bucket
|
@@ -2489,7 +2506,7 @@ module Aws::S3Control
|
|
2489
2506
|
# @example Request syntax with placeholder values
|
2490
2507
|
#
|
2491
2508
|
# resp = client.get_bucket({
|
2492
|
-
# account_id: "AccountId",
|
2509
|
+
# account_id: "AccountId",
|
2493
2510
|
# bucket: "BucketName", # required
|
2494
2511
|
# })
|
2495
2512
|
#
|
@@ -2562,7 +2579,7 @@ module Aws::S3Control
|
|
2562
2579
|
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketLifecycleConfiguration.html
|
2563
2580
|
# [8]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketLifecycleConfiguration.html
|
2564
2581
|
#
|
2565
|
-
# @option params [
|
2582
|
+
# @option params [String] :account_id
|
2566
2583
|
# The Amazon Web Services account ID of the Outposts bucket.
|
2567
2584
|
#
|
2568
2585
|
# @option params [required, String] :bucket
|
@@ -2588,7 +2605,7 @@ module Aws::S3Control
|
|
2588
2605
|
# @example Request syntax with placeholder values
|
2589
2606
|
#
|
2590
2607
|
# resp = client.get_bucket_lifecycle_configuration({
|
2591
|
-
# account_id: "AccountId",
|
2608
|
+
# account_id: "AccountId",
|
2592
2609
|
# bucket: "BucketName", # required
|
2593
2610
|
# })
|
2594
2611
|
#
|
@@ -2606,6 +2623,10 @@ module Aws::S3Control
|
|
2606
2623
|
# resp.rules[0].filter.and.tags #=> Array
|
2607
2624
|
# resp.rules[0].filter.and.tags[0].key #=> String
|
2608
2625
|
# resp.rules[0].filter.and.tags[0].value #=> String
|
2626
|
+
# resp.rules[0].filter.and.object_size_greater_than #=> Integer
|
2627
|
+
# resp.rules[0].filter.and.object_size_less_than #=> Integer
|
2628
|
+
# resp.rules[0].filter.object_size_greater_than #=> Integer
|
2629
|
+
# resp.rules[0].filter.object_size_less_than #=> Integer
|
2609
2630
|
# resp.rules[0].status #=> String, one of "Enabled", "Disabled"
|
2610
2631
|
# resp.rules[0].transitions #=> Array
|
2611
2632
|
# resp.rules[0].transitions[0].date #=> Time
|
@@ -2615,6 +2636,7 @@ module Aws::S3Control
|
|
2615
2636
|
# resp.rules[0].noncurrent_version_transitions[0].noncurrent_days #=> Integer
|
2616
2637
|
# resp.rules[0].noncurrent_version_transitions[0].storage_class #=> String, one of "GLACIER", "STANDARD_IA", "ONEZONE_IA", "INTELLIGENT_TIERING", "DEEP_ARCHIVE"
|
2617
2638
|
# resp.rules[0].noncurrent_version_expiration.noncurrent_days #=> Integer
|
2639
|
+
# resp.rules[0].noncurrent_version_expiration.newer_noncurrent_versions #=> Integer
|
2618
2640
|
# resp.rules[0].abort_incomplete_multipart_upload.days_after_initiation #=> Integer
|
2619
2641
|
#
|
2620
2642
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetBucketLifecycleConfiguration AWS API Documentation
|
@@ -2681,7 +2703,7 @@ module Aws::S3Control
|
|
2681
2703
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketPolicy.html
|
2682
2704
|
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketPolicy.html
|
2683
2705
|
#
|
2684
|
-
# @option params [
|
2706
|
+
# @option params [String] :account_id
|
2685
2707
|
# The Amazon Web Services account ID of the Outposts bucket.
|
2686
2708
|
#
|
2687
2709
|
# @option params [required, String] :bucket
|
@@ -2707,7 +2729,7 @@ module Aws::S3Control
|
|
2707
2729
|
# @example Request syntax with placeholder values
|
2708
2730
|
#
|
2709
2731
|
# resp = client.get_bucket_policy({
|
2710
|
-
# account_id: "AccountId",
|
2732
|
+
# account_id: "AccountId",
|
2711
2733
|
# bucket: "BucketName", # required
|
2712
2734
|
# })
|
2713
2735
|
#
|
@@ -2768,7 +2790,7 @@ module Aws::S3Control
|
|
2768
2790
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketTagging.html
|
2769
2791
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketTagging.html
|
2770
2792
|
#
|
2771
|
-
# @option params [
|
2793
|
+
# @option params [String] :account_id
|
2772
2794
|
# The Amazon Web Services account ID of the Outposts bucket.
|
2773
2795
|
#
|
2774
2796
|
# @option params [required, String] :bucket
|
@@ -2794,7 +2816,7 @@ module Aws::S3Control
|
|
2794
2816
|
# @example Request syntax with placeholder values
|
2795
2817
|
#
|
2796
2818
|
# resp = client.get_bucket_tagging({
|
2797
|
-
# account_id: "AccountId",
|
2819
|
+
# account_id: "AccountId",
|
2798
2820
|
# bucket: "BucketName", # required
|
2799
2821
|
# })
|
2800
2822
|
#
|
@@ -2856,7 +2878,7 @@ module Aws::S3Control
|
|
2856
2878
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketLifecycleConfiguration.html
|
2857
2879
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetBucketLifecycleConfiguration.html
|
2858
2880
|
#
|
2859
|
-
# @option params [
|
2881
|
+
# @option params [String] :account_id
|
2860
2882
|
# The Amazon Web Services account ID of the S3 on Outposts bucket.
|
2861
2883
|
#
|
2862
2884
|
# @option params [required, String] :bucket
|
@@ -2870,7 +2892,7 @@ module Aws::S3Control
|
|
2870
2892
|
# @example Request syntax with placeholder values
|
2871
2893
|
#
|
2872
2894
|
# resp = client.get_bucket_versioning({
|
2873
|
-
# account_id: "AccountId",
|
2895
|
+
# account_id: "AccountId",
|
2874
2896
|
# bucket: "BucketName", # required
|
2875
2897
|
# })
|
2876
2898
|
#
|
@@ -2910,7 +2932,7 @@ module Aws::S3Control
|
|
2910
2932
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutJobTagging.html
|
2911
2933
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteJobTagging.html
|
2912
2934
|
#
|
2913
|
-
# @option params [
|
2935
|
+
# @option params [String] :account_id
|
2914
2936
|
# The Amazon Web Services account ID associated with the S3 Batch
|
2915
2937
|
# Operations job.
|
2916
2938
|
#
|
@@ -2925,7 +2947,7 @@ module Aws::S3Control
|
|
2925
2947
|
# @example Request syntax with placeholder values
|
2926
2948
|
#
|
2927
2949
|
# resp = client.get_job_tagging({
|
2928
|
-
# account_id: "AccountId",
|
2950
|
+
# account_id: "AccountId",
|
2929
2951
|
# job_id: "JobId", # required
|
2930
2952
|
# })
|
2931
2953
|
#
|
@@ -2970,7 +2992,7 @@ module Aws::S3Control
|
|
2970
2992
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DescribeMultiRegionAccessPointOperation.html
|
2971
2993
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListMultiRegionAccessPoints.html
|
2972
2994
|
#
|
2973
|
-
# @option params [
|
2995
|
+
# @option params [String] :account_id
|
2974
2996
|
# The Amazon Web Services account ID for the owner of the Multi-Region
|
2975
2997
|
# Access Point.
|
2976
2998
|
#
|
@@ -2993,7 +3015,7 @@ module Aws::S3Control
|
|
2993
3015
|
# @example Request syntax with placeholder values
|
2994
3016
|
#
|
2995
3017
|
# resp = client.get_multi_region_access_point({
|
2996
|
-
# account_id: "AccountId",
|
3018
|
+
# account_id: "AccountId",
|
2997
3019
|
# name: "MultiRegionAccessPointName", # required
|
2998
3020
|
# })
|
2999
3021
|
#
|
@@ -3041,7 +3063,7 @@ module Aws::S3Control
|
|
3041
3063
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetMultiRegionAccessPointPolicyStatus.html
|
3042
3064
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutMultiRegionAccessPointPolicy.html
|
3043
3065
|
#
|
3044
|
-
# @option params [
|
3066
|
+
# @option params [String] :account_id
|
3045
3067
|
# The Amazon Web Services account ID for the owner of the Multi-Region
|
3046
3068
|
# Access Point.
|
3047
3069
|
#
|
@@ -3063,7 +3085,7 @@ module Aws::S3Control
|
|
3063
3085
|
# @example Request syntax with placeholder values
|
3064
3086
|
#
|
3065
3087
|
# resp = client.get_multi_region_access_point_policy({
|
3066
|
-
# account_id: "AccountId",
|
3088
|
+
# account_id: "AccountId",
|
3067
3089
|
# name: "MultiRegionAccessPointName", # required
|
3068
3090
|
# })
|
3069
3091
|
#
|
@@ -3102,7 +3124,7 @@ module Aws::S3Control
|
|
3102
3124
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetMultiRegionAccessPointPolicy.html
|
3103
3125
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutMultiRegionAccessPointPolicy.html
|
3104
3126
|
#
|
3105
|
-
# @option params [
|
3127
|
+
# @option params [String] :account_id
|
3106
3128
|
# The Amazon Web Services account ID for the owner of the Multi-Region
|
3107
3129
|
# Access Point.
|
3108
3130
|
#
|
@@ -3124,7 +3146,7 @@ module Aws::S3Control
|
|
3124
3146
|
# @example Request syntax with placeholder values
|
3125
3147
|
#
|
3126
3148
|
# resp = client.get_multi_region_access_point_policy_status({
|
3127
|
-
# account_id: "AccountId",
|
3149
|
+
# account_id: "AccountId",
|
3128
3150
|
# name: "MultiRegionAccessPointName", # required
|
3129
3151
|
# })
|
3130
3152
|
#
|
@@ -3157,7 +3179,7 @@ module Aws::S3Control
|
|
3157
3179
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeletePublicAccessBlock.html
|
3158
3180
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutPublicAccessBlock.html
|
3159
3181
|
#
|
3160
|
-
# @option params [
|
3182
|
+
# @option params [String] :account_id
|
3161
3183
|
# The account ID for the Amazon Web Services account whose
|
3162
3184
|
# `PublicAccessBlock` configuration you want to retrieve.
|
3163
3185
|
#
|
@@ -3168,7 +3190,7 @@ module Aws::S3Control
|
|
3168
3190
|
# @example Request syntax with placeholder values
|
3169
3191
|
#
|
3170
3192
|
# resp = client.get_public_access_block({
|
3171
|
-
# account_id: "AccountId",
|
3193
|
+
# account_id: "AccountId",
|
3172
3194
|
# })
|
3173
3195
|
#
|
3174
3196
|
# @example Response structure
|
@@ -3206,7 +3228,7 @@ module Aws::S3Control
|
|
3206
3228
|
# @option params [required, String] :config_id
|
3207
3229
|
# The ID of the Amazon S3 Storage Lens configuration.
|
3208
3230
|
#
|
3209
|
-
# @option params [
|
3231
|
+
# @option params [String] :account_id
|
3210
3232
|
# The account ID of the requester.
|
3211
3233
|
#
|
3212
3234
|
# @return [Types::GetStorageLensConfigurationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -3217,7 +3239,7 @@ module Aws::S3Control
|
|
3217
3239
|
#
|
3218
3240
|
# resp = client.get_storage_lens_configuration({
|
3219
3241
|
# config_id: "ConfigId", # required
|
3220
|
-
# account_id: "AccountId",
|
3242
|
+
# account_id: "AccountId",
|
3221
3243
|
# })
|
3222
3244
|
#
|
3223
3245
|
# @example Response structure
|
@@ -3277,7 +3299,7 @@ module Aws::S3Control
|
|
3277
3299
|
# @option params [required, String] :config_id
|
3278
3300
|
# The ID of the Amazon S3 Storage Lens configuration.
|
3279
3301
|
#
|
3280
|
-
# @option params [
|
3302
|
+
# @option params [String] :account_id
|
3281
3303
|
# The account ID of the requester.
|
3282
3304
|
#
|
3283
3305
|
# @return [Types::GetStorageLensConfigurationTaggingResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -3288,7 +3310,7 @@ module Aws::S3Control
|
|
3288
3310
|
#
|
3289
3311
|
# resp = client.get_storage_lens_configuration_tagging({
|
3290
3312
|
# config_id: "ConfigId", # required
|
3291
|
-
# account_id: "AccountId",
|
3313
|
+
# account_id: "AccountId",
|
3292
3314
|
# })
|
3293
3315
|
#
|
3294
3316
|
# @example Response structure
|
@@ -3338,7 +3360,7 @@ module Aws::S3Control
|
|
3338
3360
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPoint.html
|
3339
3361
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPoint.html
|
3340
3362
|
#
|
3341
|
-
# @option params [
|
3363
|
+
# @option params [String] :account_id
|
3342
3364
|
# The Amazon Web Services account ID for owner of the bucket whose
|
3343
3365
|
# access points you want to list.
|
3344
3366
|
#
|
@@ -3381,7 +3403,7 @@ module Aws::S3Control
|
|
3381
3403
|
# @example Request syntax with placeholder values
|
3382
3404
|
#
|
3383
3405
|
# resp = client.list_access_points({
|
3384
|
-
# account_id: "AccountId",
|
3406
|
+
# account_id: "AccountId",
|
3385
3407
|
# bucket: "BucketName",
|
3386
3408
|
# next_token: "NonEmptyMaxLength1024String",
|
3387
3409
|
# max_results: 1,
|
@@ -3428,7 +3450,7 @@ module Aws::S3Control
|
|
3428
3450
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPointForObjectLambda.html
|
3429
3451
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPointForObjectLambda.html
|
3430
3452
|
#
|
3431
|
-
# @option params [
|
3453
|
+
# @option params [String] :account_id
|
3432
3454
|
# The account ID for the account that owns the specified Object Lambda
|
3433
3455
|
# Access Point.
|
3434
3456
|
#
|
@@ -3455,7 +3477,7 @@ module Aws::S3Control
|
|
3455
3477
|
# @example Request syntax with placeholder values
|
3456
3478
|
#
|
3457
3479
|
# resp = client.list_access_points_for_object_lambda({
|
3458
|
-
# account_id: "AccountId",
|
3480
|
+
# account_id: "AccountId",
|
3459
3481
|
# next_token: "NonEmptyMaxLength1024String",
|
3460
3482
|
# max_results: 1,
|
3461
3483
|
# })
|
@@ -3501,7 +3523,7 @@ module Aws::S3Control
|
|
3501
3523
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobPriority.html
|
3502
3524
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
3503
3525
|
#
|
3504
|
-
# @option params [
|
3526
|
+
# @option params [String] :account_id
|
3505
3527
|
# The Amazon Web Services account ID associated with the S3 Batch
|
3506
3528
|
# Operations job.
|
3507
3529
|
#
|
@@ -3530,7 +3552,7 @@ module Aws::S3Control
|
|
3530
3552
|
# @example Request syntax with placeholder values
|
3531
3553
|
#
|
3532
3554
|
# resp = client.list_jobs({
|
3533
|
-
# account_id: "AccountId",
|
3555
|
+
# account_id: "AccountId",
|
3534
3556
|
# job_statuses: ["Active"], # accepts Active, Cancelled, Cancelling, Complete, Completing, Failed, Failing, New, Paused, Pausing, Preparing, Ready, Suspended
|
3535
3557
|
# next_token: "StringForNextToken",
|
3536
3558
|
# max_results: 1,
|
@@ -3590,7 +3612,7 @@ module Aws::S3Control
|
|
3590
3612
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DescribeMultiRegionAccessPointOperation.html
|
3591
3613
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetMultiRegionAccessPoint.html
|
3592
3614
|
#
|
3593
|
-
# @option params [
|
3615
|
+
# @option params [String] :account_id
|
3594
3616
|
# The Amazon Web Services account ID for the owner of the Multi-Region
|
3595
3617
|
# Access Point.
|
3596
3618
|
#
|
@@ -3610,7 +3632,7 @@ module Aws::S3Control
|
|
3610
3632
|
# @example Request syntax with placeholder values
|
3611
3633
|
#
|
3612
3634
|
# resp = client.list_multi_region_access_points({
|
3613
|
-
# account_id: "AccountId",
|
3635
|
+
# account_id: "AccountId",
|
3614
3636
|
# next_token: "NonEmptyMaxLength1024String",
|
3615
3637
|
# max_results: 1,
|
3616
3638
|
# })
|
@@ -3653,7 +3675,7 @@ module Aws::S3Control
|
|
3653
3675
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
3654
3676
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListRegionalBuckets.html#API_control_ListRegionalBuckets_Examples
|
3655
3677
|
#
|
3656
|
-
# @option params [
|
3678
|
+
# @option params [String] :account_id
|
3657
3679
|
# The Amazon Web Services account ID of the Outposts bucket.
|
3658
3680
|
#
|
3659
3681
|
# @option params [String] :next_token
|
@@ -3677,7 +3699,7 @@ module Aws::S3Control
|
|
3677
3699
|
# @example Request syntax with placeholder values
|
3678
3700
|
#
|
3679
3701
|
# resp = client.list_regional_buckets({
|
3680
|
-
# account_id: "AccountId",
|
3702
|
+
# account_id: "AccountId",
|
3681
3703
|
# next_token: "NonEmptyMaxLength1024String",
|
3682
3704
|
# max_results: 1,
|
3683
3705
|
# outpost_id: "NonEmptyMaxLength64String",
|
@@ -3719,7 +3741,7 @@ module Aws::S3Control
|
|
3719
3741
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
|
3720
3742
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens_iam_permissions.html
|
3721
3743
|
#
|
3722
|
-
# @option params [
|
3744
|
+
# @option params [String] :account_id
|
3723
3745
|
# The account ID of the requester.
|
3724
3746
|
#
|
3725
3747
|
# @option params [String] :next_token
|
@@ -3735,7 +3757,7 @@ module Aws::S3Control
|
|
3735
3757
|
# @example Request syntax with placeholder values
|
3736
3758
|
#
|
3737
3759
|
# resp = client.list_storage_lens_configurations({
|
3738
|
-
# account_id: "AccountId",
|
3760
|
+
# account_id: "AccountId",
|
3739
3761
|
# next_token: "ContinuationToken",
|
3740
3762
|
# })
|
3741
3763
|
#
|
@@ -3770,7 +3792,7 @@ module Aws::S3Control
|
|
3770
3792
|
#
|
3771
3793
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPointConfigurationForObjectLambda.html
|
3772
3794
|
#
|
3773
|
-
# @option params [
|
3795
|
+
# @option params [String] :account_id
|
3774
3796
|
# The account ID for the account that owns the specified Object Lambda
|
3775
3797
|
# Access Point.
|
3776
3798
|
#
|
@@ -3785,7 +3807,7 @@ module Aws::S3Control
|
|
3785
3807
|
# @example Request syntax with placeholder values
|
3786
3808
|
#
|
3787
3809
|
# resp = client.put_access_point_configuration_for_object_lambda({
|
3788
|
-
# account_id: "AccountId",
|
3810
|
+
# account_id: "AccountId",
|
3789
3811
|
# name: "ObjectLambdaAccessPointName", # required
|
3790
3812
|
# configuration: { # required
|
3791
3813
|
# supporting_access_point: "ObjectLambdaSupportingAccessPointArn", # required
|
@@ -3841,7 +3863,7 @@ module Aws::S3Control
|
|
3841
3863
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPointPolicy.html
|
3842
3864
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPointPolicy.html
|
3843
3865
|
#
|
3844
|
-
# @option params [
|
3866
|
+
# @option params [String] :account_id
|
3845
3867
|
# The Amazon Web Services account ID for owner of the bucket associated
|
3846
3868
|
# with the specified access point.
|
3847
3869
|
#
|
@@ -3876,7 +3898,7 @@ module Aws::S3Control
|
|
3876
3898
|
# @example Request syntax with placeholder values
|
3877
3899
|
#
|
3878
3900
|
# resp = client.put_access_point_policy({
|
3879
|
-
# account_id: "AccountId",
|
3901
|
+
# account_id: "AccountId",
|
3880
3902
|
# name: "AccessPointName", # required
|
3881
3903
|
# policy: "Policy", # required
|
3882
3904
|
# })
|
@@ -3907,7 +3929,7 @@ module Aws::S3Control
|
|
3907
3929
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPointPolicyForObjectLambda.html
|
3908
3930
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPointPolicyForObjectLambda.html
|
3909
3931
|
#
|
3910
|
-
# @option params [
|
3932
|
+
# @option params [String] :account_id
|
3911
3933
|
# The account ID for the account that owns the specified Object Lambda
|
3912
3934
|
# Access Point.
|
3913
3935
|
#
|
@@ -3922,7 +3944,7 @@ module Aws::S3Control
|
|
3922
3944
|
# @example Request syntax with placeholder values
|
3923
3945
|
#
|
3924
3946
|
# resp = client.put_access_point_policy_for_object_lambda({
|
3925
|
-
# account_id: "AccountId",
|
3947
|
+
# account_id: "AccountId",
|
3926
3948
|
# name: "ObjectLambdaAccessPointName", # required
|
3927
3949
|
# policy: "ObjectLambdaPolicy", # required
|
3928
3950
|
# })
|
@@ -3971,7 +3993,7 @@ module Aws::S3Control
|
|
3971
3993
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetBucketLifecycleConfiguration.html
|
3972
3994
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketLifecycleConfiguration.html
|
3973
3995
|
#
|
3974
|
-
# @option params [
|
3996
|
+
# @option params [String] :account_id
|
3975
3997
|
# The Amazon Web Services account ID of the Outposts bucket.
|
3976
3998
|
#
|
3977
3999
|
# @option params [required, String] :bucket
|
@@ -3985,7 +4007,7 @@ module Aws::S3Control
|
|
3985
4007
|
# @example Request syntax with placeholder values
|
3986
4008
|
#
|
3987
4009
|
# resp = client.put_bucket_lifecycle_configuration({
|
3988
|
-
# account_id: "AccountId",
|
4010
|
+
# account_id: "AccountId",
|
3989
4011
|
# bucket: "BucketName", # required
|
3990
4012
|
# lifecycle_configuration: {
|
3991
4013
|
# rules: [
|
@@ -4010,7 +4032,11 @@ module Aws::S3Control
|
|
4010
4032
|
# value: "TagValueString", # required
|
4011
4033
|
# },
|
4012
4034
|
# ],
|
4035
|
+
# object_size_greater_than: 1,
|
4036
|
+
# object_size_less_than: 1,
|
4013
4037
|
# },
|
4038
|
+
# object_size_greater_than: 1,
|
4039
|
+
# object_size_less_than: 1,
|
4014
4040
|
# },
|
4015
4041
|
# status: "Enabled", # required, accepts Enabled, Disabled
|
4016
4042
|
# transitions: [
|
@@ -4028,6 +4054,7 @@ module Aws::S3Control
|
|
4028
4054
|
# ],
|
4029
4055
|
# noncurrent_version_expiration: {
|
4030
4056
|
# noncurrent_days: 1,
|
4057
|
+
# newer_noncurrent_versions: 1,
|
4031
4058
|
# },
|
4032
4059
|
# abort_incomplete_multipart_upload: {
|
4033
4060
|
# days_after_initiation: 1,
|
@@ -4098,7 +4125,7 @@ module Aws::S3Control
|
|
4098
4125
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetBucketPolicy.html
|
4099
4126
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketPolicy.html
|
4100
4127
|
#
|
4101
|
-
# @option params [
|
4128
|
+
# @option params [String] :account_id
|
4102
4129
|
# The Amazon Web Services account ID of the Outposts bucket.
|
4103
4130
|
#
|
4104
4131
|
# @option params [required, String] :bucket
|
@@ -4133,7 +4160,7 @@ module Aws::S3Control
|
|
4133
4160
|
# @example Request syntax with placeholder values
|
4134
4161
|
#
|
4135
4162
|
# resp = client.put_bucket_policy({
|
4136
|
-
# account_id: "AccountId",
|
4163
|
+
# account_id: "AccountId",
|
4137
4164
|
# bucket: "BucketName", # required
|
4138
4165
|
# confirm_remove_self_bucket_access: false,
|
4139
4166
|
# policy: "Policy", # required
|
@@ -4240,7 +4267,7 @@ module Aws::S3Control
|
|
4240
4267
|
# [10]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetBucketTagging.html
|
4241
4268
|
# [11]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketTagging.html
|
4242
4269
|
#
|
4243
|
-
# @option params [
|
4270
|
+
# @option params [String] :account_id
|
4244
4271
|
# The Amazon Web Services account ID of the Outposts bucket.
|
4245
4272
|
#
|
4246
4273
|
# @option params [required, String] :bucket
|
@@ -4266,7 +4293,7 @@ module Aws::S3Control
|
|
4266
4293
|
# @example Request syntax with placeholder values
|
4267
4294
|
#
|
4268
4295
|
# resp = client.put_bucket_tagging({
|
4269
|
-
# account_id: "AccountId",
|
4296
|
+
# account_id: "AccountId",
|
4270
4297
|
# bucket: "BucketName", # required
|
4271
4298
|
# tagging: { # required
|
4272
4299
|
# tag_set: [ # required
|
@@ -4351,7 +4378,7 @@ module Aws::S3Control
|
|
4351
4378
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketLifecycleConfiguration.html
|
4352
4379
|
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetBucketLifecycleConfiguration.html
|
4353
4380
|
#
|
4354
|
-
# @option params [
|
4381
|
+
# @option params [String] :account_id
|
4355
4382
|
# The Amazon Web Services account ID of the S3 on Outposts bucket.
|
4356
4383
|
#
|
4357
4384
|
# @option params [required, String] :bucket
|
@@ -4369,7 +4396,7 @@ module Aws::S3Control
|
|
4369
4396
|
# @example Request syntax with placeholder values
|
4370
4397
|
#
|
4371
4398
|
# resp = client.put_bucket_versioning({
|
4372
|
-
# account_id: "AccountId",
|
4399
|
+
# account_id: "AccountId",
|
4373
4400
|
# bucket: "BucketName", # required
|
4374
4401
|
# mfa: "MFA",
|
4375
4402
|
# versioning_configuration: { # required
|
@@ -4450,7 +4477,7 @@ module Aws::S3Control
|
|
4450
4477
|
# [5]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/allocation-tag-restrictions.html
|
4451
4478
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateJob.html
|
4452
4479
|
#
|
4453
|
-
# @option params [
|
4480
|
+
# @option params [String] :account_id
|
4454
4481
|
# The Amazon Web Services account ID associated with the S3 Batch
|
4455
4482
|
# Operations job.
|
4456
4483
|
#
|
@@ -4465,7 +4492,7 @@ module Aws::S3Control
|
|
4465
4492
|
# @example Request syntax with placeholder values
|
4466
4493
|
#
|
4467
4494
|
# resp = client.put_job_tagging({
|
4468
|
-
# account_id: "AccountId",
|
4495
|
+
# account_id: "AccountId",
|
4469
4496
|
# job_id: "JobId", # required
|
4470
4497
|
# tags: [ # required
|
4471
4498
|
# {
|
@@ -4507,7 +4534,7 @@ module Aws::S3Control
|
|
4507
4534
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetMultiRegionAccessPointPolicy.html
|
4508
4535
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetMultiRegionAccessPointPolicyStatus.html
|
4509
4536
|
#
|
4510
|
-
# @option params [
|
4537
|
+
# @option params [String] :account_id
|
4511
4538
|
# The Amazon Web Services account ID for the owner of the Multi-Region
|
4512
4539
|
# Access Point.
|
4513
4540
|
#
|
@@ -4529,7 +4556,7 @@ module Aws::S3Control
|
|
4529
4556
|
# @example Request syntax with placeholder values
|
4530
4557
|
#
|
4531
4558
|
# resp = client.put_multi_region_access_point_policy({
|
4532
|
-
# account_id: "AccountId",
|
4559
|
+
# account_id: "AccountId",
|
4533
4560
|
# client_token: "MultiRegionAccessPointClientToken", # required
|
4534
4561
|
# details: { # required
|
4535
4562
|
# name: "MultiRegionAccessPointName", # required
|
@@ -4571,7 +4598,7 @@ module Aws::S3Control
|
|
4571
4598
|
# The `PublicAccessBlock` configuration that you want to apply to the
|
4572
4599
|
# specified Amazon Web Services account.
|
4573
4600
|
#
|
4574
|
-
# @option params [
|
4601
|
+
# @option params [String] :account_id
|
4575
4602
|
# The account ID for the Amazon Web Services account whose
|
4576
4603
|
# `PublicAccessBlock` configuration you want to set.
|
4577
4604
|
#
|
@@ -4586,7 +4613,7 @@ module Aws::S3Control
|
|
4586
4613
|
# block_public_policy: false,
|
4587
4614
|
# restrict_public_buckets: false,
|
4588
4615
|
# },
|
4589
|
-
# account_id: "AccountId",
|
4616
|
+
# account_id: "AccountId",
|
4590
4617
|
# })
|
4591
4618
|
#
|
4592
4619
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/PutPublicAccessBlock AWS API Documentation
|
@@ -4617,7 +4644,7 @@ module Aws::S3Control
|
|
4617
4644
|
# @option params [required, String] :config_id
|
4618
4645
|
# The ID of the S3 Storage Lens configuration.
|
4619
4646
|
#
|
4620
|
-
# @option params [
|
4647
|
+
# @option params [String] :account_id
|
4621
4648
|
# The account ID of the requester.
|
4622
4649
|
#
|
4623
4650
|
# @option params [required, Types::StorageLensConfiguration] :storage_lens_configuration
|
@@ -4636,7 +4663,7 @@ module Aws::S3Control
|
|
4636
4663
|
#
|
4637
4664
|
# resp = client.put_storage_lens_configuration({
|
4638
4665
|
# config_id: "ConfigId", # required
|
4639
|
-
# account_id: "AccountId",
|
4666
|
+
# account_id: "AccountId",
|
4640
4667
|
# storage_lens_configuration: { # required
|
4641
4668
|
# id: "ConfigId", # required
|
4642
4669
|
# account_level: { # required
|
@@ -4729,7 +4756,7 @@ module Aws::S3Control
|
|
4729
4756
|
# @option params [required, String] :config_id
|
4730
4757
|
# The ID of the S3 Storage Lens configuration.
|
4731
4758
|
#
|
4732
|
-
# @option params [
|
4759
|
+
# @option params [String] :account_id
|
4733
4760
|
# The account ID of the requester.
|
4734
4761
|
#
|
4735
4762
|
# @option params [required, Array<Types::StorageLensTag>] :tags
|
@@ -4745,7 +4772,7 @@ module Aws::S3Control
|
|
4745
4772
|
#
|
4746
4773
|
# resp = client.put_storage_lens_configuration_tagging({
|
4747
4774
|
# config_id: "ConfigId", # required
|
4748
|
-
# account_id: "AccountId",
|
4775
|
+
# account_id: "AccountId",
|
4749
4776
|
# tags: [ # required
|
4750
4777
|
# {
|
4751
4778
|
# key: "TagKeyString", # required
|
@@ -4787,7 +4814,7 @@ module Aws::S3Control
|
|
4787
4814
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DescribeJob.html
|
4788
4815
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
4789
4816
|
#
|
4790
|
-
# @option params [
|
4817
|
+
# @option params [String] :account_id
|
4791
4818
|
# The Amazon Web Services account ID associated with the S3 Batch
|
4792
4819
|
# Operations job.
|
4793
4820
|
#
|
@@ -4805,7 +4832,7 @@ module Aws::S3Control
|
|
4805
4832
|
# @example Request syntax with placeholder values
|
4806
4833
|
#
|
4807
4834
|
# resp = client.update_job_priority({
|
4808
|
-
# account_id: "AccountId",
|
4835
|
+
# account_id: "AccountId",
|
4809
4836
|
# job_id: "JobId", # required
|
4810
4837
|
# priority: 1, # required
|
4811
4838
|
# })
|
@@ -4849,7 +4876,7 @@ module Aws::S3Control
|
|
4849
4876
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DescribeJob.html
|
4850
4877
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
4851
4878
|
#
|
4852
|
-
# @option params [
|
4879
|
+
# @option params [String] :account_id
|
4853
4880
|
# The Amazon Web Services account ID associated with the S3 Batch
|
4854
4881
|
# Operations job.
|
4855
4882
|
#
|
@@ -4872,7 +4899,7 @@ module Aws::S3Control
|
|
4872
4899
|
# @example Request syntax with placeholder values
|
4873
4900
|
#
|
4874
4901
|
# resp = client.update_job_status({
|
4875
|
-
# account_id: "AccountId",
|
4902
|
+
# account_id: "AccountId",
|
4876
4903
|
# job_id: "JobId", # required
|
4877
4904
|
# requested_job_status: "Cancelled", # required, accepts Cancelled, Ready
|
4878
4905
|
# status_update_reason: "JobStatusUpdateReason",
|
@@ -4906,7 +4933,7 @@ module Aws::S3Control
|
|
4906
4933
|
params: params,
|
4907
4934
|
config: config)
|
4908
4935
|
context[:gem_name] = 'aws-sdk-s3control'
|
4909
|
-
context[:gem_version] = '1.
|
4936
|
+
context[:gem_version] = '1.55.0'
|
4910
4937
|
Seahorse::Client::Request.new(handlers, context)
|
4911
4938
|
end
|
4912
4939
|
|