aws-sdk-s3control 1.53.0 → 1.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3control/client.rb +136 -119
- data/lib/aws-sdk-s3control/client_api.rb +58 -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 +58 -58
- 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
|
#
|
@@ -2681,7 +2698,7 @@ module Aws::S3Control
|
|
2681
2698
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketPolicy.html
|
2682
2699
|
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketPolicy.html
|
2683
2700
|
#
|
2684
|
-
# @option params [
|
2701
|
+
# @option params [String] :account_id
|
2685
2702
|
# The Amazon Web Services account ID of the Outposts bucket.
|
2686
2703
|
#
|
2687
2704
|
# @option params [required, String] :bucket
|
@@ -2707,7 +2724,7 @@ module Aws::S3Control
|
|
2707
2724
|
# @example Request syntax with placeholder values
|
2708
2725
|
#
|
2709
2726
|
# resp = client.get_bucket_policy({
|
2710
|
-
# account_id: "AccountId",
|
2727
|
+
# account_id: "AccountId",
|
2711
2728
|
# bucket: "BucketName", # required
|
2712
2729
|
# })
|
2713
2730
|
#
|
@@ -2768,7 +2785,7 @@ module Aws::S3Control
|
|
2768
2785
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketTagging.html
|
2769
2786
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketTagging.html
|
2770
2787
|
#
|
2771
|
-
# @option params [
|
2788
|
+
# @option params [String] :account_id
|
2772
2789
|
# The Amazon Web Services account ID of the Outposts bucket.
|
2773
2790
|
#
|
2774
2791
|
# @option params [required, String] :bucket
|
@@ -2794,7 +2811,7 @@ module Aws::S3Control
|
|
2794
2811
|
# @example Request syntax with placeholder values
|
2795
2812
|
#
|
2796
2813
|
# resp = client.get_bucket_tagging({
|
2797
|
-
# account_id: "AccountId",
|
2814
|
+
# account_id: "AccountId",
|
2798
2815
|
# bucket: "BucketName", # required
|
2799
2816
|
# })
|
2800
2817
|
#
|
@@ -2856,7 +2873,7 @@ module Aws::S3Control
|
|
2856
2873
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketLifecycleConfiguration.html
|
2857
2874
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetBucketLifecycleConfiguration.html
|
2858
2875
|
#
|
2859
|
-
# @option params [
|
2876
|
+
# @option params [String] :account_id
|
2860
2877
|
# The Amazon Web Services account ID of the S3 on Outposts bucket.
|
2861
2878
|
#
|
2862
2879
|
# @option params [required, String] :bucket
|
@@ -2870,7 +2887,7 @@ module Aws::S3Control
|
|
2870
2887
|
# @example Request syntax with placeholder values
|
2871
2888
|
#
|
2872
2889
|
# resp = client.get_bucket_versioning({
|
2873
|
-
# account_id: "AccountId",
|
2890
|
+
# account_id: "AccountId",
|
2874
2891
|
# bucket: "BucketName", # required
|
2875
2892
|
# })
|
2876
2893
|
#
|
@@ -2910,7 +2927,7 @@ module Aws::S3Control
|
|
2910
2927
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutJobTagging.html
|
2911
2928
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteJobTagging.html
|
2912
2929
|
#
|
2913
|
-
# @option params [
|
2930
|
+
# @option params [String] :account_id
|
2914
2931
|
# The Amazon Web Services account ID associated with the S3 Batch
|
2915
2932
|
# Operations job.
|
2916
2933
|
#
|
@@ -2925,7 +2942,7 @@ module Aws::S3Control
|
|
2925
2942
|
# @example Request syntax with placeholder values
|
2926
2943
|
#
|
2927
2944
|
# resp = client.get_job_tagging({
|
2928
|
-
# account_id: "AccountId",
|
2945
|
+
# account_id: "AccountId",
|
2929
2946
|
# job_id: "JobId", # required
|
2930
2947
|
# })
|
2931
2948
|
#
|
@@ -2970,7 +2987,7 @@ module Aws::S3Control
|
|
2970
2987
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DescribeMultiRegionAccessPointOperation.html
|
2971
2988
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListMultiRegionAccessPoints.html
|
2972
2989
|
#
|
2973
|
-
# @option params [
|
2990
|
+
# @option params [String] :account_id
|
2974
2991
|
# The Amazon Web Services account ID for the owner of the Multi-Region
|
2975
2992
|
# Access Point.
|
2976
2993
|
#
|
@@ -2993,7 +3010,7 @@ module Aws::S3Control
|
|
2993
3010
|
# @example Request syntax with placeholder values
|
2994
3011
|
#
|
2995
3012
|
# resp = client.get_multi_region_access_point({
|
2996
|
-
# account_id: "AccountId",
|
3013
|
+
# account_id: "AccountId",
|
2997
3014
|
# name: "MultiRegionAccessPointName", # required
|
2998
3015
|
# })
|
2999
3016
|
#
|
@@ -3041,7 +3058,7 @@ module Aws::S3Control
|
|
3041
3058
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetMultiRegionAccessPointPolicyStatus.html
|
3042
3059
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutMultiRegionAccessPointPolicy.html
|
3043
3060
|
#
|
3044
|
-
# @option params [
|
3061
|
+
# @option params [String] :account_id
|
3045
3062
|
# The Amazon Web Services account ID for the owner of the Multi-Region
|
3046
3063
|
# Access Point.
|
3047
3064
|
#
|
@@ -3063,7 +3080,7 @@ module Aws::S3Control
|
|
3063
3080
|
# @example Request syntax with placeholder values
|
3064
3081
|
#
|
3065
3082
|
# resp = client.get_multi_region_access_point_policy({
|
3066
|
-
# account_id: "AccountId",
|
3083
|
+
# account_id: "AccountId",
|
3067
3084
|
# name: "MultiRegionAccessPointName", # required
|
3068
3085
|
# })
|
3069
3086
|
#
|
@@ -3102,7 +3119,7 @@ module Aws::S3Control
|
|
3102
3119
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetMultiRegionAccessPointPolicy.html
|
3103
3120
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutMultiRegionAccessPointPolicy.html
|
3104
3121
|
#
|
3105
|
-
# @option params [
|
3122
|
+
# @option params [String] :account_id
|
3106
3123
|
# The Amazon Web Services account ID for the owner of the Multi-Region
|
3107
3124
|
# Access Point.
|
3108
3125
|
#
|
@@ -3124,7 +3141,7 @@ module Aws::S3Control
|
|
3124
3141
|
# @example Request syntax with placeholder values
|
3125
3142
|
#
|
3126
3143
|
# resp = client.get_multi_region_access_point_policy_status({
|
3127
|
-
# account_id: "AccountId",
|
3144
|
+
# account_id: "AccountId",
|
3128
3145
|
# name: "MultiRegionAccessPointName", # required
|
3129
3146
|
# })
|
3130
3147
|
#
|
@@ -3157,7 +3174,7 @@ module Aws::S3Control
|
|
3157
3174
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeletePublicAccessBlock.html
|
3158
3175
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutPublicAccessBlock.html
|
3159
3176
|
#
|
3160
|
-
# @option params [
|
3177
|
+
# @option params [String] :account_id
|
3161
3178
|
# The account ID for the Amazon Web Services account whose
|
3162
3179
|
# `PublicAccessBlock` configuration you want to retrieve.
|
3163
3180
|
#
|
@@ -3168,7 +3185,7 @@ module Aws::S3Control
|
|
3168
3185
|
# @example Request syntax with placeholder values
|
3169
3186
|
#
|
3170
3187
|
# resp = client.get_public_access_block({
|
3171
|
-
# account_id: "AccountId",
|
3188
|
+
# account_id: "AccountId",
|
3172
3189
|
# })
|
3173
3190
|
#
|
3174
3191
|
# @example Response structure
|
@@ -3206,7 +3223,7 @@ module Aws::S3Control
|
|
3206
3223
|
# @option params [required, String] :config_id
|
3207
3224
|
# The ID of the Amazon S3 Storage Lens configuration.
|
3208
3225
|
#
|
3209
|
-
# @option params [
|
3226
|
+
# @option params [String] :account_id
|
3210
3227
|
# The account ID of the requester.
|
3211
3228
|
#
|
3212
3229
|
# @return [Types::GetStorageLensConfigurationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -3217,7 +3234,7 @@ module Aws::S3Control
|
|
3217
3234
|
#
|
3218
3235
|
# resp = client.get_storage_lens_configuration({
|
3219
3236
|
# config_id: "ConfigId", # required
|
3220
|
-
# account_id: "AccountId",
|
3237
|
+
# account_id: "AccountId",
|
3221
3238
|
# })
|
3222
3239
|
#
|
3223
3240
|
# @example Response structure
|
@@ -3277,7 +3294,7 @@ module Aws::S3Control
|
|
3277
3294
|
# @option params [required, String] :config_id
|
3278
3295
|
# The ID of the Amazon S3 Storage Lens configuration.
|
3279
3296
|
#
|
3280
|
-
# @option params [
|
3297
|
+
# @option params [String] :account_id
|
3281
3298
|
# The account ID of the requester.
|
3282
3299
|
#
|
3283
3300
|
# @return [Types::GetStorageLensConfigurationTaggingResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -3288,7 +3305,7 @@ module Aws::S3Control
|
|
3288
3305
|
#
|
3289
3306
|
# resp = client.get_storage_lens_configuration_tagging({
|
3290
3307
|
# config_id: "ConfigId", # required
|
3291
|
-
# account_id: "AccountId",
|
3308
|
+
# account_id: "AccountId",
|
3292
3309
|
# })
|
3293
3310
|
#
|
3294
3311
|
# @example Response structure
|
@@ -3338,7 +3355,7 @@ module Aws::S3Control
|
|
3338
3355
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPoint.html
|
3339
3356
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPoint.html
|
3340
3357
|
#
|
3341
|
-
# @option params [
|
3358
|
+
# @option params [String] :account_id
|
3342
3359
|
# The Amazon Web Services account ID for owner of the bucket whose
|
3343
3360
|
# access points you want to list.
|
3344
3361
|
#
|
@@ -3381,7 +3398,7 @@ module Aws::S3Control
|
|
3381
3398
|
# @example Request syntax with placeholder values
|
3382
3399
|
#
|
3383
3400
|
# resp = client.list_access_points({
|
3384
|
-
# account_id: "AccountId",
|
3401
|
+
# account_id: "AccountId",
|
3385
3402
|
# bucket: "BucketName",
|
3386
3403
|
# next_token: "NonEmptyMaxLength1024String",
|
3387
3404
|
# max_results: 1,
|
@@ -3428,7 +3445,7 @@ module Aws::S3Control
|
|
3428
3445
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPointForObjectLambda.html
|
3429
3446
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPointForObjectLambda.html
|
3430
3447
|
#
|
3431
|
-
# @option params [
|
3448
|
+
# @option params [String] :account_id
|
3432
3449
|
# The account ID for the account that owns the specified Object Lambda
|
3433
3450
|
# Access Point.
|
3434
3451
|
#
|
@@ -3455,7 +3472,7 @@ module Aws::S3Control
|
|
3455
3472
|
# @example Request syntax with placeholder values
|
3456
3473
|
#
|
3457
3474
|
# resp = client.list_access_points_for_object_lambda({
|
3458
|
-
# account_id: "AccountId",
|
3475
|
+
# account_id: "AccountId",
|
3459
3476
|
# next_token: "NonEmptyMaxLength1024String",
|
3460
3477
|
# max_results: 1,
|
3461
3478
|
# })
|
@@ -3501,7 +3518,7 @@ module Aws::S3Control
|
|
3501
3518
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobPriority.html
|
3502
3519
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
3503
3520
|
#
|
3504
|
-
# @option params [
|
3521
|
+
# @option params [String] :account_id
|
3505
3522
|
# The Amazon Web Services account ID associated with the S3 Batch
|
3506
3523
|
# Operations job.
|
3507
3524
|
#
|
@@ -3530,7 +3547,7 @@ module Aws::S3Control
|
|
3530
3547
|
# @example Request syntax with placeholder values
|
3531
3548
|
#
|
3532
3549
|
# resp = client.list_jobs({
|
3533
|
-
# account_id: "AccountId",
|
3550
|
+
# account_id: "AccountId",
|
3534
3551
|
# job_statuses: ["Active"], # accepts Active, Cancelled, Cancelling, Complete, Completing, Failed, Failing, New, Paused, Pausing, Preparing, Ready, Suspended
|
3535
3552
|
# next_token: "StringForNextToken",
|
3536
3553
|
# max_results: 1,
|
@@ -3590,7 +3607,7 @@ module Aws::S3Control
|
|
3590
3607
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DescribeMultiRegionAccessPointOperation.html
|
3591
3608
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetMultiRegionAccessPoint.html
|
3592
3609
|
#
|
3593
|
-
# @option params [
|
3610
|
+
# @option params [String] :account_id
|
3594
3611
|
# The Amazon Web Services account ID for the owner of the Multi-Region
|
3595
3612
|
# Access Point.
|
3596
3613
|
#
|
@@ -3610,7 +3627,7 @@ module Aws::S3Control
|
|
3610
3627
|
# @example Request syntax with placeholder values
|
3611
3628
|
#
|
3612
3629
|
# resp = client.list_multi_region_access_points({
|
3613
|
-
# account_id: "AccountId",
|
3630
|
+
# account_id: "AccountId",
|
3614
3631
|
# next_token: "NonEmptyMaxLength1024String",
|
3615
3632
|
# max_results: 1,
|
3616
3633
|
# })
|
@@ -3653,7 +3670,7 @@ module Aws::S3Control
|
|
3653
3670
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html
|
3654
3671
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListRegionalBuckets.html#API_control_ListRegionalBuckets_Examples
|
3655
3672
|
#
|
3656
|
-
# @option params [
|
3673
|
+
# @option params [String] :account_id
|
3657
3674
|
# The Amazon Web Services account ID of the Outposts bucket.
|
3658
3675
|
#
|
3659
3676
|
# @option params [String] :next_token
|
@@ -3677,7 +3694,7 @@ module Aws::S3Control
|
|
3677
3694
|
# @example Request syntax with placeholder values
|
3678
3695
|
#
|
3679
3696
|
# resp = client.list_regional_buckets({
|
3680
|
-
# account_id: "AccountId",
|
3697
|
+
# account_id: "AccountId",
|
3681
3698
|
# next_token: "NonEmptyMaxLength1024String",
|
3682
3699
|
# max_results: 1,
|
3683
3700
|
# outpost_id: "NonEmptyMaxLength64String",
|
@@ -3719,7 +3736,7 @@ module Aws::S3Control
|
|
3719
3736
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
|
3720
3737
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens_iam_permissions.html
|
3721
3738
|
#
|
3722
|
-
# @option params [
|
3739
|
+
# @option params [String] :account_id
|
3723
3740
|
# The account ID of the requester.
|
3724
3741
|
#
|
3725
3742
|
# @option params [String] :next_token
|
@@ -3735,7 +3752,7 @@ module Aws::S3Control
|
|
3735
3752
|
# @example Request syntax with placeholder values
|
3736
3753
|
#
|
3737
3754
|
# resp = client.list_storage_lens_configurations({
|
3738
|
-
# account_id: "AccountId",
|
3755
|
+
# account_id: "AccountId",
|
3739
3756
|
# next_token: "ContinuationToken",
|
3740
3757
|
# })
|
3741
3758
|
#
|
@@ -3770,7 +3787,7 @@ module Aws::S3Control
|
|
3770
3787
|
#
|
3771
3788
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPointConfigurationForObjectLambda.html
|
3772
3789
|
#
|
3773
|
-
# @option params [
|
3790
|
+
# @option params [String] :account_id
|
3774
3791
|
# The account ID for the account that owns the specified Object Lambda
|
3775
3792
|
# Access Point.
|
3776
3793
|
#
|
@@ -3785,7 +3802,7 @@ module Aws::S3Control
|
|
3785
3802
|
# @example Request syntax with placeholder values
|
3786
3803
|
#
|
3787
3804
|
# resp = client.put_access_point_configuration_for_object_lambda({
|
3788
|
-
# account_id: "AccountId",
|
3805
|
+
# account_id: "AccountId",
|
3789
3806
|
# name: "ObjectLambdaAccessPointName", # required
|
3790
3807
|
# configuration: { # required
|
3791
3808
|
# supporting_access_point: "ObjectLambdaSupportingAccessPointArn", # required
|
@@ -3841,7 +3858,7 @@ module Aws::S3Control
|
|
3841
3858
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPointPolicy.html
|
3842
3859
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPointPolicy.html
|
3843
3860
|
#
|
3844
|
-
# @option params [
|
3861
|
+
# @option params [String] :account_id
|
3845
3862
|
# The Amazon Web Services account ID for owner of the bucket associated
|
3846
3863
|
# with the specified access point.
|
3847
3864
|
#
|
@@ -3876,7 +3893,7 @@ module Aws::S3Control
|
|
3876
3893
|
# @example Request syntax with placeholder values
|
3877
3894
|
#
|
3878
3895
|
# resp = client.put_access_point_policy({
|
3879
|
-
# account_id: "AccountId",
|
3896
|
+
# account_id: "AccountId",
|
3880
3897
|
# name: "AccessPointName", # required
|
3881
3898
|
# policy: "Policy", # required
|
3882
3899
|
# })
|
@@ -3907,7 +3924,7 @@ module Aws::S3Control
|
|
3907
3924
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPointPolicyForObjectLambda.html
|
3908
3925
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPointPolicyForObjectLambda.html
|
3909
3926
|
#
|
3910
|
-
# @option params [
|
3927
|
+
# @option params [String] :account_id
|
3911
3928
|
# The account ID for the account that owns the specified Object Lambda
|
3912
3929
|
# Access Point.
|
3913
3930
|
#
|
@@ -3922,7 +3939,7 @@ module Aws::S3Control
|
|
3922
3939
|
# @example Request syntax with placeholder values
|
3923
3940
|
#
|
3924
3941
|
# resp = client.put_access_point_policy_for_object_lambda({
|
3925
|
-
# account_id: "AccountId",
|
3942
|
+
# account_id: "AccountId",
|
3926
3943
|
# name: "ObjectLambdaAccessPointName", # required
|
3927
3944
|
# policy: "ObjectLambdaPolicy", # required
|
3928
3945
|
# })
|
@@ -3971,7 +3988,7 @@ module Aws::S3Control
|
|
3971
3988
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetBucketLifecycleConfiguration.html
|
3972
3989
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketLifecycleConfiguration.html
|
3973
3990
|
#
|
3974
|
-
# @option params [
|
3991
|
+
# @option params [String] :account_id
|
3975
3992
|
# The Amazon Web Services account ID of the Outposts bucket.
|
3976
3993
|
#
|
3977
3994
|
# @option params [required, String] :bucket
|
@@ -3985,7 +4002,7 @@ module Aws::S3Control
|
|
3985
4002
|
# @example Request syntax with placeholder values
|
3986
4003
|
#
|
3987
4004
|
# resp = client.put_bucket_lifecycle_configuration({
|
3988
|
-
# account_id: "AccountId",
|
4005
|
+
# account_id: "AccountId",
|
3989
4006
|
# bucket: "BucketName", # required
|
3990
4007
|
# lifecycle_configuration: {
|
3991
4008
|
# rules: [
|
@@ -4098,7 +4115,7 @@ module Aws::S3Control
|
|
4098
4115
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetBucketPolicy.html
|
4099
4116
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketPolicy.html
|
4100
4117
|
#
|
4101
|
-
# @option params [
|
4118
|
+
# @option params [String] :account_id
|
4102
4119
|
# The Amazon Web Services account ID of the Outposts bucket.
|
4103
4120
|
#
|
4104
4121
|
# @option params [required, String] :bucket
|
@@ -4133,7 +4150,7 @@ module Aws::S3Control
|
|
4133
4150
|
# @example Request syntax with placeholder values
|
4134
4151
|
#
|
4135
4152
|
# resp = client.put_bucket_policy({
|
4136
|
-
# account_id: "AccountId",
|
4153
|
+
# account_id: "AccountId",
|
4137
4154
|
# bucket: "BucketName", # required
|
4138
4155
|
# confirm_remove_self_bucket_access: false,
|
4139
4156
|
# policy: "Policy", # required
|
@@ -4240,7 +4257,7 @@ module Aws::S3Control
|
|
4240
4257
|
# [10]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetBucketTagging.html
|
4241
4258
|
# [11]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketTagging.html
|
4242
4259
|
#
|
4243
|
-
# @option params [
|
4260
|
+
# @option params [String] :account_id
|
4244
4261
|
# The Amazon Web Services account ID of the Outposts bucket.
|
4245
4262
|
#
|
4246
4263
|
# @option params [required, String] :bucket
|
@@ -4266,7 +4283,7 @@ module Aws::S3Control
|
|
4266
4283
|
# @example Request syntax with placeholder values
|
4267
4284
|
#
|
4268
4285
|
# resp = client.put_bucket_tagging({
|
4269
|
-
# account_id: "AccountId",
|
4286
|
+
# account_id: "AccountId",
|
4270
4287
|
# bucket: "BucketName", # required
|
4271
4288
|
# tagging: { # required
|
4272
4289
|
# tag_set: [ # required
|
@@ -4351,7 +4368,7 @@ module Aws::S3Control
|
|
4351
4368
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketLifecycleConfiguration.html
|
4352
4369
|
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetBucketLifecycleConfiguration.html
|
4353
4370
|
#
|
4354
|
-
# @option params [
|
4371
|
+
# @option params [String] :account_id
|
4355
4372
|
# The Amazon Web Services account ID of the S3 on Outposts bucket.
|
4356
4373
|
#
|
4357
4374
|
# @option params [required, String] :bucket
|
@@ -4369,7 +4386,7 @@ module Aws::S3Control
|
|
4369
4386
|
# @example Request syntax with placeholder values
|
4370
4387
|
#
|
4371
4388
|
# resp = client.put_bucket_versioning({
|
4372
|
-
# account_id: "AccountId",
|
4389
|
+
# account_id: "AccountId",
|
4373
4390
|
# bucket: "BucketName", # required
|
4374
4391
|
# mfa: "MFA",
|
4375
4392
|
# versioning_configuration: { # required
|
@@ -4450,7 +4467,7 @@ module Aws::S3Control
|
|
4450
4467
|
# [5]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/allocation-tag-restrictions.html
|
4451
4468
|
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateJob.html
|
4452
4469
|
#
|
4453
|
-
# @option params [
|
4470
|
+
# @option params [String] :account_id
|
4454
4471
|
# The Amazon Web Services account ID associated with the S3 Batch
|
4455
4472
|
# Operations job.
|
4456
4473
|
#
|
@@ -4465,7 +4482,7 @@ module Aws::S3Control
|
|
4465
4482
|
# @example Request syntax with placeholder values
|
4466
4483
|
#
|
4467
4484
|
# resp = client.put_job_tagging({
|
4468
|
-
# account_id: "AccountId",
|
4485
|
+
# account_id: "AccountId",
|
4469
4486
|
# job_id: "JobId", # required
|
4470
4487
|
# tags: [ # required
|
4471
4488
|
# {
|
@@ -4507,7 +4524,7 @@ module Aws::S3Control
|
|
4507
4524
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetMultiRegionAccessPointPolicy.html
|
4508
4525
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetMultiRegionAccessPointPolicyStatus.html
|
4509
4526
|
#
|
4510
|
-
# @option params [
|
4527
|
+
# @option params [String] :account_id
|
4511
4528
|
# The Amazon Web Services account ID for the owner of the Multi-Region
|
4512
4529
|
# Access Point.
|
4513
4530
|
#
|
@@ -4529,7 +4546,7 @@ module Aws::S3Control
|
|
4529
4546
|
# @example Request syntax with placeholder values
|
4530
4547
|
#
|
4531
4548
|
# resp = client.put_multi_region_access_point_policy({
|
4532
|
-
# account_id: "AccountId",
|
4549
|
+
# account_id: "AccountId",
|
4533
4550
|
# client_token: "MultiRegionAccessPointClientToken", # required
|
4534
4551
|
# details: { # required
|
4535
4552
|
# name: "MultiRegionAccessPointName", # required
|
@@ -4571,7 +4588,7 @@ module Aws::S3Control
|
|
4571
4588
|
# The `PublicAccessBlock` configuration that you want to apply to the
|
4572
4589
|
# specified Amazon Web Services account.
|
4573
4590
|
#
|
4574
|
-
# @option params [
|
4591
|
+
# @option params [String] :account_id
|
4575
4592
|
# The account ID for the Amazon Web Services account whose
|
4576
4593
|
# `PublicAccessBlock` configuration you want to set.
|
4577
4594
|
#
|
@@ -4586,7 +4603,7 @@ module Aws::S3Control
|
|
4586
4603
|
# block_public_policy: false,
|
4587
4604
|
# restrict_public_buckets: false,
|
4588
4605
|
# },
|
4589
|
-
# account_id: "AccountId",
|
4606
|
+
# account_id: "AccountId",
|
4590
4607
|
# })
|
4591
4608
|
#
|
4592
4609
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/PutPublicAccessBlock AWS API Documentation
|
@@ -4617,7 +4634,7 @@ module Aws::S3Control
|
|
4617
4634
|
# @option params [required, String] :config_id
|
4618
4635
|
# The ID of the S3 Storage Lens configuration.
|
4619
4636
|
#
|
4620
|
-
# @option params [
|
4637
|
+
# @option params [String] :account_id
|
4621
4638
|
# The account ID of the requester.
|
4622
4639
|
#
|
4623
4640
|
# @option params [required, Types::StorageLensConfiguration] :storage_lens_configuration
|
@@ -4636,7 +4653,7 @@ module Aws::S3Control
|
|
4636
4653
|
#
|
4637
4654
|
# resp = client.put_storage_lens_configuration({
|
4638
4655
|
# config_id: "ConfigId", # required
|
4639
|
-
# account_id: "AccountId",
|
4656
|
+
# account_id: "AccountId",
|
4640
4657
|
# storage_lens_configuration: { # required
|
4641
4658
|
# id: "ConfigId", # required
|
4642
4659
|
# account_level: { # required
|
@@ -4729,7 +4746,7 @@ module Aws::S3Control
|
|
4729
4746
|
# @option params [required, String] :config_id
|
4730
4747
|
# The ID of the S3 Storage Lens configuration.
|
4731
4748
|
#
|
4732
|
-
# @option params [
|
4749
|
+
# @option params [String] :account_id
|
4733
4750
|
# The account ID of the requester.
|
4734
4751
|
#
|
4735
4752
|
# @option params [required, Array<Types::StorageLensTag>] :tags
|
@@ -4745,7 +4762,7 @@ module Aws::S3Control
|
|
4745
4762
|
#
|
4746
4763
|
# resp = client.put_storage_lens_configuration_tagging({
|
4747
4764
|
# config_id: "ConfigId", # required
|
4748
|
-
# account_id: "AccountId",
|
4765
|
+
# account_id: "AccountId",
|
4749
4766
|
# tags: [ # required
|
4750
4767
|
# {
|
4751
4768
|
# key: "TagKeyString", # required
|
@@ -4787,7 +4804,7 @@ module Aws::S3Control
|
|
4787
4804
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DescribeJob.html
|
4788
4805
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
4789
4806
|
#
|
4790
|
-
# @option params [
|
4807
|
+
# @option params [String] :account_id
|
4791
4808
|
# The Amazon Web Services account ID associated with the S3 Batch
|
4792
4809
|
# Operations job.
|
4793
4810
|
#
|
@@ -4805,7 +4822,7 @@ module Aws::S3Control
|
|
4805
4822
|
# @example Request syntax with placeholder values
|
4806
4823
|
#
|
4807
4824
|
# resp = client.update_job_priority({
|
4808
|
-
# account_id: "AccountId",
|
4825
|
+
# account_id: "AccountId",
|
4809
4826
|
# job_id: "JobId", # required
|
4810
4827
|
# priority: 1, # required
|
4811
4828
|
# })
|
@@ -4849,7 +4866,7 @@ module Aws::S3Control
|
|
4849
4866
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DescribeJob.html
|
4850
4867
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
4851
4868
|
#
|
4852
|
-
# @option params [
|
4869
|
+
# @option params [String] :account_id
|
4853
4870
|
# The Amazon Web Services account ID associated with the S3 Batch
|
4854
4871
|
# Operations job.
|
4855
4872
|
#
|
@@ -4872,7 +4889,7 @@ module Aws::S3Control
|
|
4872
4889
|
# @example Request syntax with placeholder values
|
4873
4890
|
#
|
4874
4891
|
# resp = client.update_job_status({
|
4875
|
-
# account_id: "AccountId",
|
4892
|
+
# account_id: "AccountId",
|
4876
4893
|
# job_id: "JobId", # required
|
4877
4894
|
# requested_job_status: "Cancelled", # required, accepts Cancelled, Ready
|
4878
4895
|
# status_update_reason: "JobStatusUpdateReason",
|
@@ -4906,7 +4923,7 @@ module Aws::S3Control
|
|
4906
4923
|
params: params,
|
4907
4924
|
config: config)
|
4908
4925
|
context[:gem_name] = 'aws-sdk-s3control'
|
4909
|
-
context[:gem_version] = '1.
|
4926
|
+
context[:gem_version] = '1.54.0'
|
4910
4927
|
Seahorse::Client::Request.new(handlers, context)
|
4911
4928
|
end
|
4912
4929
|
|