aws-sdk-s3control 1.25.0 → 1.30.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 +172 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-s3control.rb +2 -2
- data/lib/aws-sdk-s3control/arn/outpost_access_point_arn.rb +6 -2
- data/lib/aws-sdk-s3control/arn/outpost_bucket_arn.rb +6 -2
- data/lib/aws-sdk-s3control/client.rb +162 -151
- data/lib/aws-sdk-s3control/client_api.rb +6 -2
- data/lib/aws-sdk-s3control/errors.rb +1 -1
- data/lib/aws-sdk-s3control/plugins/arn.rb +28 -16
- data/lib/aws-sdk-s3control/plugins/dualstack.rb +11 -10
- data/lib/aws-sdk-s3control/plugins/s3_control_signer.rb +6 -2
- data/lib/aws-sdk-s3control/resource.rb +1 -1
- data/lib/aws-sdk-s3control/types.rb +111 -48
- metadata +8 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6a1792b2fcc6fc2f43511b873590f9bddbee5ca299a28d546e346ddabe424cab
|
4
|
+
data.tar.gz: aef74cf4b79b0c32a973e9cad3a61ea02602ec761629e07e2535d24ee765fd46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9daa6622937b4d393bfc874b74defb70ed9ba31940cbd3bf2df5daf7418a80fe4cc7ca8b091cfdee16f4112b873fc59a506e36c103d1213667657ecbca6da631
|
7
|
+
data.tar.gz: ef3e8d9b68c35ae56b5db7ff50b0c6f9e3e1877071fa7988b6497a3686ca1ec89f962337b822607d417dcd9904687088c768950d6984f86ba873d78bac93883b
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,172 @@
|
|
1
|
+
Unreleased Changes
|
2
|
+
------------------
|
3
|
+
|
4
|
+
1.30.0 (2021-03-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.29.0 (2021-03-08)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Documentation updates for Amazon S3
|
13
|
+
|
14
|
+
1.28.0 (2021-02-23)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Documentation updates for s3-control
|
18
|
+
|
19
|
+
1.27.0 (2021-02-02)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Amazon S3 Batch Operations now supports Delete Object Tagging
|
23
|
+
|
24
|
+
* Feature - Support PrivateLink using the client `:endpoint` option. This patch has several minor behavioral changes. 1) Any operation using the `outpost_id` parameter with a client configured with `:use_dualstack_endpoint` will now raise an `ArgumentError` as dualstack is not supported by S3 Outposts. 2) Fix a bug where clients configured with `:use_dualstack_endpoint` resolved to the wrong endpoint by not prefixing the account id to the host. 3) A client constructed using both `:use_dualstack_endpoint` and `:endpoint` will now raise an `ArgumentError`.
|
25
|
+
|
26
|
+
1.26.0 (2021-01-14)
|
27
|
+
------------------
|
28
|
+
|
29
|
+
* Feature - Amazon S3 Batch Operations now supports restoring objects from the S3 Intelligent-Tiering Archive Access and Deep Archive Access tiers.
|
30
|
+
|
31
|
+
1.25.0 (2020-11-18)
|
32
|
+
------------------
|
33
|
+
|
34
|
+
* Feature - AWS S3 Storage Lens provides visibility into your storage usage and activity trends at the organization or account level, with aggregations by Region, storage class, bucket, and prefix.
|
35
|
+
|
36
|
+
1.24.0 (2020-09-30)
|
37
|
+
------------------
|
38
|
+
|
39
|
+
* Feature - Amazon S3 on Outposts expands object storage to on-premises AWS Outposts environments, enabling you to store and retrieve objects using S3 APIs and features.
|
40
|
+
|
41
|
+
* Feature - Support Outpost Access Point and Outpost Bucket ARNs.
|
42
|
+
|
43
|
+
1.23.0 (2020-09-15)
|
44
|
+
------------------
|
45
|
+
|
46
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
47
|
+
|
48
|
+
1.22.0 (2020-08-25)
|
49
|
+
------------------
|
50
|
+
|
51
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
52
|
+
|
53
|
+
1.21.0 (2020-06-23)
|
54
|
+
------------------
|
55
|
+
|
56
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
57
|
+
|
58
|
+
1.20.1 (2020-06-11)
|
59
|
+
------------------
|
60
|
+
|
61
|
+
* Issue - Republish previous version with correct dependency on `aws-sdk-core`.
|
62
|
+
|
63
|
+
1.20.0 (2020-06-10)
|
64
|
+
------------------
|
65
|
+
|
66
|
+
* Issue - This version has been yanked. (#2327).
|
67
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
68
|
+
|
69
|
+
1.19.0 (2020-05-28)
|
70
|
+
------------------
|
71
|
+
|
72
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
73
|
+
|
74
|
+
1.18.0 (2020-05-07)
|
75
|
+
------------------
|
76
|
+
|
77
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
78
|
+
|
79
|
+
1.17.0 (2020-05-04)
|
80
|
+
------------------
|
81
|
+
|
82
|
+
* Feature - Amazon S3 Batch Operations now supports Object Lock.
|
83
|
+
|
84
|
+
1.16.0 (2020-03-16)
|
85
|
+
------------------
|
86
|
+
|
87
|
+
* Feature - Amazon S3 now supports Batch Operations job tagging.
|
88
|
+
|
89
|
+
1.15.0 (2020-03-09)
|
90
|
+
------------------
|
91
|
+
|
92
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
93
|
+
|
94
|
+
1.14.0 (2019-12-03)
|
95
|
+
------------------
|
96
|
+
|
97
|
+
* Feature - Amazon S3 Access Points is a new S3 feature that simplifies managing data access at scale for shared data sets on Amazon S3. Access Points provide a customizable way to access the objects in a bucket, with a unique hostname and access policy that enforces the specific permissions and network controls for any request made through the access point. This represents a new way of provisioning access to shared data sets.
|
98
|
+
|
99
|
+
1.13.0 (2019-10-23)
|
100
|
+
------------------
|
101
|
+
|
102
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
103
|
+
|
104
|
+
1.12.0 (2019-07-25)
|
105
|
+
------------------
|
106
|
+
|
107
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
108
|
+
|
109
|
+
1.11.0 (2019-07-01)
|
110
|
+
------------------
|
111
|
+
|
112
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
113
|
+
|
114
|
+
1.10.0 (2019-06-17)
|
115
|
+
------------------
|
116
|
+
|
117
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
118
|
+
|
119
|
+
1.9.0 (2019-05-29)
|
120
|
+
------------------
|
121
|
+
|
122
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
123
|
+
|
124
|
+
1.8.0 (2019-05-21)
|
125
|
+
------------------
|
126
|
+
|
127
|
+
* Feature - API update.
|
128
|
+
|
129
|
+
1.7.0 (2019-05-15)
|
130
|
+
------------------
|
131
|
+
|
132
|
+
* Feature - API update.
|
133
|
+
|
134
|
+
1.6.0 (2019-05-14)
|
135
|
+
------------------
|
136
|
+
|
137
|
+
* Feature - API update.
|
138
|
+
|
139
|
+
1.5.0 (2019-04-30)
|
140
|
+
------------------
|
141
|
+
|
142
|
+
* Feature - API update.
|
143
|
+
|
144
|
+
1.4.0 (2019-03-21)
|
145
|
+
------------------
|
146
|
+
|
147
|
+
* Feature - API update.
|
148
|
+
|
149
|
+
1.3.0 (2019-03-18)
|
150
|
+
------------------
|
151
|
+
|
152
|
+
* Feature - API update.
|
153
|
+
|
154
|
+
1.2.0 (2019-03-14)
|
155
|
+
------------------
|
156
|
+
|
157
|
+
* Feature - API update.
|
158
|
+
|
159
|
+
1.1.0 (2018-11-20)
|
160
|
+
------------------
|
161
|
+
|
162
|
+
* Feature - Support S3 Control plugin working with endpoint trait.
|
163
|
+
|
164
|
+
1.0.1 (2018-11-16)
|
165
|
+
------------------
|
166
|
+
|
167
|
+
* Issue - Update version dependency on `aws-sdk-core` to support endpoint discovery.
|
168
|
+
|
169
|
+
1.0.0 (2018-11-15)
|
170
|
+
------------------
|
171
|
+
|
172
|
+
* Feature - Initial release of `aws-sdk-s3control`.
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,202 @@
|
|
1
|
+
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
5
|
+
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.30.0
|
data/lib/aws-sdk-s3control.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-s3control/customizations'
|
|
48
48
|
# @!group service
|
49
49
|
module Aws::S3Control
|
50
50
|
|
51
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.30.0'
|
52
52
|
|
53
53
|
end
|
@@ -68,8 +68,12 @@ module Aws
|
|
68
68
|
end
|
69
69
|
|
70
70
|
# Outpost Access Point ARNs currently do not support dualstack
|
71
|
-
def host_url(region, _dualstack = false)
|
72
|
-
|
71
|
+
def host_url(region, _dualstack = false, custom_endpoint = nil)
|
72
|
+
if custom_endpoint
|
73
|
+
custom_endpoint
|
74
|
+
else
|
75
|
+
"s3-outposts.#{region}.amazonaws.com"
|
76
|
+
end
|
73
77
|
end
|
74
78
|
end
|
75
79
|
end
|
@@ -64,8 +64,12 @@ module Aws
|
|
64
64
|
end
|
65
65
|
|
66
66
|
# Outpost Bucket ARNs currently do not support dualstack
|
67
|
-
def host_url(region, _dualstack = false)
|
68
|
-
|
67
|
+
def host_url(region, _dualstack = false, custom_endpoint = nil)
|
68
|
+
if custom_endpoint
|
69
|
+
custom_endpoint
|
70
|
+
else
|
71
|
+
"s3-outposts.#{region}.amazonaws.com"
|
72
|
+
end
|
69
73
|
end
|
70
74
|
end
|
71
75
|
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -345,7 +345,7 @@ module Aws::S3Control
|
|
345
345
|
|
346
346
|
# Creates an access point and associates it with the specified bucket.
|
347
347
|
# For more information, see [Managing Data Access with Amazon S3 Access
|
348
|
-
# Points][1] in the *Amazon Simple Storage Service
|
348
|
+
# Points][1] in the *Amazon Simple Storage Service User Guide*.
|
349
349
|
#
|
350
350
|
#
|
351
351
|
#
|
@@ -362,9 +362,8 @@ module Aws::S3Control
|
|
362
362
|
#
|
363
363
|
# * Does not support object lock for S3 on Outposts buckets.
|
364
364
|
#
|
365
|
-
# For more information, see [Using Amazon S3 on
|
366
|
-
#
|
367
|
-
# Simple Storage Service Developer Guide </i>.
|
365
|
+
# For more information, see [Using Amazon S3 on Outposts][2] in the
|
366
|
+
# <i>Amazon Simple Storage Service User Guide </i>.
|
368
367
|
#
|
369
368
|
# All Amazon S3 on Outposts REST API requests for this action require an
|
370
369
|
# additional parameter of `x-amz-outpost-id` to be passed with the
|
@@ -372,25 +371,26 @@ module Aws::S3Control
|
|
372
371
|
# `s3-control`. For an example of the request syntax for Amazon S3 on
|
373
372
|
# Outposts that uses the S3 on Outposts endpoint hostname prefix and the
|
374
373
|
# `x-amz-outpost-id` derived using the access point ARN, see the
|
375
|
-
# [Examples][
|
374
|
+
# [Examples][3] section.
|
376
375
|
#
|
377
376
|
#
|
378
377
|
#
|
379
378
|
# The following actions are related to `CreateAccessPoint`\:
|
380
379
|
#
|
381
|
-
# * [GetAccessPoint][
|
380
|
+
# * [GetAccessPoint][4]
|
382
381
|
#
|
383
|
-
# * [DeleteAccessPoint][
|
382
|
+
# * [DeleteAccessPoint][5]
|
384
383
|
#
|
385
|
-
# * [ListAccessPoints][
|
384
|
+
# * [ListAccessPoints][6]
|
386
385
|
#
|
387
386
|
#
|
388
387
|
#
|
389
388
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/access-points.html
|
390
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/
|
391
|
-
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
392
|
-
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
393
|
-
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
389
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
390
|
+
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateAccessPoint.html#API_control_CreateAccessPoint_Examples
|
391
|
+
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetAccessPoint.html
|
392
|
+
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteAccessPoint.html
|
393
|
+
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListAccessPoints.html
|
394
394
|
#
|
395
395
|
# @option params [required, String] :account_id
|
396
396
|
# The AWS account ID for the owner of the bucket for which you want to
|
@@ -471,59 +471,58 @@ module Aws::S3Control
|
|
471
471
|
req.send_request(options)
|
472
472
|
end
|
473
473
|
|
474
|
-
# <note markdown="1"> This
|
475
|
-
#
|
476
|
-
#
|
474
|
+
# <note markdown="1"> This action creates an Amazon S3 on Outposts bucket. To create an S3
|
475
|
+
# bucket, see [Create Bucket][1] in the *Amazon Simple Storage Service
|
476
|
+
# API*.
|
477
477
|
#
|
478
478
|
# </note>
|
479
479
|
#
|
480
480
|
# Creates a new Outposts bucket. By creating the bucket, you become the
|
481
481
|
# bucket owner. To create an Outposts bucket, you must have S3 on
|
482
482
|
# Outposts. For more information, see [Using Amazon S3 on Outposts][2]
|
483
|
-
# in *Amazon Simple Storage Service
|
483
|
+
# in *Amazon Simple Storage Service User Guide*.
|
484
484
|
#
|
485
485
|
# Not every string is an acceptable bucket name. For information on
|
486
486
|
# bucket naming restrictions, see [Working with Amazon S3 Buckets][3].
|
487
487
|
#
|
488
|
-
# S3 on Outposts buckets
|
489
|
-
#
|
490
|
-
# * ACLs. Instead, configure access point policies to manage access to
|
491
|
-
# buckets.
|
488
|
+
# S3 on Outposts buckets support:
|
492
489
|
#
|
493
|
-
# *
|
490
|
+
# * Tags
|
494
491
|
#
|
495
|
-
# *
|
492
|
+
# * LifecycleConfigurations for deleting expired objects
|
496
493
|
#
|
497
|
-
#
|
494
|
+
# For a list of Amazon S3 features not supported by Amazon S3 on
|
495
|
+
# Outposts, see [Unsupported Amazon S3 features][4].
|
498
496
|
#
|
499
497
|
# For an example of the request syntax for Amazon S3 on Outposts that
|
500
498
|
# uses the S3 on Outposts endpoint hostname prefix and
|
501
|
-
# `x-amz-outpost-id` in your API request, see the [Examples][
|
499
|
+
# `x-amz-outpost-id` in your API request, see the [Examples][5] section.
|
502
500
|
#
|
503
501
|
# The following actions are related to `CreateBucket` for Amazon S3 on
|
504
502
|
# Outposts:
|
505
503
|
#
|
506
|
-
# * [PutObject][
|
504
|
+
# * [PutObject][6]
|
507
505
|
#
|
508
|
-
# * [GetBucket][
|
506
|
+
# * [GetBucket][7]
|
509
507
|
#
|
510
|
-
# * [DeleteBucket][
|
508
|
+
# * [DeleteBucket][8]
|
511
509
|
#
|
512
|
-
# * [CreateAccessPoint][
|
510
|
+
# * [CreateAccessPoint][9]
|
513
511
|
#
|
514
|
-
# * [PutAccessPointPolicy][
|
512
|
+
# * [PutAccessPointPolicy][10]
|
515
513
|
#
|
516
514
|
#
|
517
515
|
#
|
518
516
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html
|
519
517
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
520
518
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html#bucketnamingrules
|
521
|
-
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/
|
522
|
-
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
523
|
-
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
524
|
-
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
525
|
-
# [8]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
526
|
-
# [9]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
519
|
+
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3OnOutpostsRestrictionsLimitations.html#S3OnOutpostsFeatureLimitations
|
520
|
+
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateBucket.html#API_control_CreateBucket_Examples
|
521
|
+
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html
|
522
|
+
# [7]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetBucket.html
|
523
|
+
# [8]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucket.html
|
524
|
+
# [9]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateAccessPoint.html
|
525
|
+
# [10]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutAccessPointPolicy.html
|
527
526
|
#
|
528
527
|
# @option params [String] :acl
|
529
528
|
# The canned ACL to apply to the bucket.
|
@@ -630,13 +629,13 @@ module Aws::S3Control
|
|
630
629
|
req.send_request(options)
|
631
630
|
end
|
632
631
|
|
633
|
-
# S3 Batch Operations
|
634
|
-
# objects. Batch Operations can run a single
|
632
|
+
# You can use S3 Batch Operations to perform large-scale batch actions
|
633
|
+
# on Amazon S3 objects. Batch Operations can run a single action on
|
635
634
|
# lists of Amazon S3 objects that you specify. For more information, see
|
636
|
-
# [S3 Batch Operations][1] in the *Amazon Simple Storage Service
|
637
|
-
#
|
635
|
+
# [S3 Batch Operations][1] in the *Amazon Simple Storage Service User
|
636
|
+
# Guide*.
|
638
637
|
#
|
639
|
-
# This
|
638
|
+
# This action creates a S3 Batch Operations job.
|
640
639
|
#
|
641
640
|
#
|
642
641
|
#
|
@@ -650,6 +649,8 @@ module Aws::S3Control
|
|
650
649
|
#
|
651
650
|
# * [UpdateJobStatus][5]
|
652
651
|
#
|
652
|
+
# * [JobOperation][6]
|
653
|
+
#
|
653
654
|
#
|
654
655
|
#
|
655
656
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-basics.html
|
@@ -657,6 +658,7 @@ module Aws::S3Control
|
|
657
658
|
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListJobs.html
|
658
659
|
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobPriority.html
|
659
660
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
661
|
+
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_JobOperation.html
|
660
662
|
#
|
661
663
|
# @option params [required, String] :account_id
|
662
664
|
# The AWS account ID that creates the job.
|
@@ -667,14 +669,13 @@ module Aws::S3Control
|
|
667
669
|
# S3 console.
|
668
670
|
#
|
669
671
|
# @option params [required, Types::JobOperation] :operation
|
670
|
-
# The
|
671
|
-
#
|
672
|
-
#
|
673
|
-
# Guide*.
|
672
|
+
# The action that you want this job to perform on every object listed in
|
673
|
+
# the manifest. For more information about the available actions, see
|
674
|
+
# [Operations][1] in the *Amazon Simple Storage Service User Guide*.
|
674
675
|
#
|
675
676
|
#
|
676
677
|
#
|
677
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-
|
678
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-actions.html
|
678
679
|
#
|
679
680
|
# @option params [required, Types::JobReport] :report
|
680
681
|
# Configuration parameters for the optional job-completion report.
|
@@ -701,7 +702,7 @@ module Aws::S3Control
|
|
701
702
|
# @option params [required, String] :role_arn
|
702
703
|
# The Amazon Resource Name (ARN) for the AWS Identity and Access
|
703
704
|
# Management (IAM) role that Batch Operations will use to run this
|
704
|
-
# job's
|
705
|
+
# job's action on every object in the manifest.
|
705
706
|
#
|
706
707
|
# @option params [Array<Types::S3Tag>] :tags
|
707
708
|
# A set of tags to associate with the S3 Batch Operations job. This is
|
@@ -795,6 +796,8 @@ module Aws::S3Control
|
|
795
796
|
# },
|
796
797
|
# ],
|
797
798
|
# },
|
799
|
+
# s3_delete_object_tagging: {
|
800
|
+
# },
|
798
801
|
# s3_initiate_restore_object: {
|
799
802
|
# expiration_in_days: 1,
|
800
803
|
# glacier_job_tier: "BULK", # accepts BULK, STANDARD
|
@@ -976,9 +979,9 @@ module Aws::S3Control
|
|
976
979
|
req.send_request(options)
|
977
980
|
end
|
978
981
|
|
979
|
-
# <note markdown="1"> This
|
980
|
-
#
|
981
|
-
#
|
982
|
+
# <note markdown="1"> This action deletes an Amazon S3 on Outposts bucket. To delete an S3
|
983
|
+
# bucket, see [DeleteBucket][1] in the *Amazon Simple Storage Service
|
984
|
+
# API*.
|
982
985
|
#
|
983
986
|
# </note>
|
984
987
|
#
|
@@ -986,7 +989,7 @@ module Aws::S3Control
|
|
986
989
|
# object versions and delete markers) in the bucket must be deleted
|
987
990
|
# before the bucket itself can be deleted. For more information, see
|
988
991
|
# [Using Amazon S3 on Outposts][2] in *Amazon Simple Storage Service
|
989
|
-
#
|
992
|
+
# User Guide*.
|
990
993
|
#
|
991
994
|
# All Amazon S3 on Outposts REST API requests for this action require an
|
992
995
|
# additional parameter of `x-amz-outpost-id` to be passed with the
|
@@ -1049,7 +1052,7 @@ module Aws::S3Control
|
|
1049
1052
|
req.send_request(options)
|
1050
1053
|
end
|
1051
1054
|
|
1052
|
-
# <note markdown="1"> This
|
1055
|
+
# <note markdown="1"> This action deletes an Amazon S3 on Outposts bucket's lifecycle
|
1053
1056
|
# configuration. To delete an S3 bucket's lifecycle configuration, see
|
1054
1057
|
# [DeleteBucketLifecycle][1] in the *Amazon Simple Storage Service API*.
|
1055
1058
|
#
|
@@ -1061,10 +1064,10 @@ module Aws::S3Control
|
|
1061
1064
|
# objects never expire, and Amazon S3 on Outposts no longer
|
1062
1065
|
# automatically deletes any objects on the basis of rules contained in
|
1063
1066
|
# the deleted lifecycle configuration. For more information, see [Using
|
1064
|
-
# Amazon S3 on Outposts][2] in *Amazon Simple Storage Service
|
1067
|
+
# Amazon S3 on Outposts][2] in *Amazon Simple Storage Service User
|
1065
1068
|
# Guide*.
|
1066
1069
|
#
|
1067
|
-
# To use this
|
1070
|
+
# To use this action, you must have permission to perform the
|
1068
1071
|
# `s3-outposts:DeleteLifecycleConfiguration` action. By default, the
|
1069
1072
|
# bucket owner has this permission and the Outposts bucket owner can
|
1070
1073
|
# grant this permission to others.
|
@@ -1077,7 +1080,7 @@ module Aws::S3Control
|
|
1077
1080
|
# `x-amz-outpost-id` derived using the access point ARN, see the
|
1078
1081
|
# [Examples][3] section.
|
1079
1082
|
#
|
1080
|
-
# For more information about object expiration, see [
|
1083
|
+
# For more information about object expiration, see [Elements to
|
1081
1084
|
# Describe Lifecycle Actions][4].
|
1082
1085
|
#
|
1083
1086
|
# Related actions include:
|
@@ -1131,20 +1134,20 @@ module Aws::S3Control
|
|
1131
1134
|
req.send_request(options)
|
1132
1135
|
end
|
1133
1136
|
|
1134
|
-
# <note markdown="1"> This
|
1135
|
-
#
|
1136
|
-
#
|
1137
|
+
# <note markdown="1"> This action deletes an Amazon S3 on Outposts bucket policy. To delete
|
1138
|
+
# an S3 bucket policy, see [DeleteBucketPolicy][1] in the *Amazon Simple
|
1139
|
+
# Storage Service API*.
|
1137
1140
|
#
|
1138
1141
|
# </note>
|
1139
1142
|
#
|
1140
|
-
# This implementation of the DELETE
|
1141
|
-
#
|
1142
|
-
#
|
1143
|
-
#
|
1143
|
+
# This implementation of the DELETE action uses the policy subresource
|
1144
|
+
# to delete the policy of a specified Amazon S3 on Outposts bucket. If
|
1145
|
+
# you are using an identity other than the root user of the AWS account
|
1146
|
+
# that owns the bucket, the calling identity must have the
|
1144
1147
|
# `s3-outposts:DeleteBucketPolicy` permissions on the specified Outposts
|
1145
|
-
# bucket and belong to the bucket owner's account to use this
|
1146
|
-
#
|
1147
|
-
#
|
1148
|
+
# bucket and belong to the bucket owner's account to use this action.
|
1149
|
+
# For more information, see [Using Amazon S3 on Outposts][2] in *Amazon
|
1150
|
+
# Simple Storage Service User Guide*.
|
1148
1151
|
#
|
1149
1152
|
# If you don't have `DeleteBucketPolicy` permissions, Amazon S3 returns
|
1150
1153
|
# a `403 Access Denied` error. If you have the correct permissions, but
|
@@ -1152,12 +1155,11 @@ module Aws::S3Control
|
|
1152
1155
|
# account, Amazon S3 returns a `405 Method Not Allowed` error.
|
1153
1156
|
#
|
1154
1157
|
# As a security precaution, the root user of the AWS account that owns a
|
1155
|
-
# bucket can always use this
|
1158
|
+
# bucket can always use this action, even if the policy explicitly
|
1156
1159
|
# denies the root user the ability to perform this action.
|
1157
1160
|
#
|
1158
1161
|
# For more information about bucket policies, see [Using Bucket Policies
|
1159
|
-
# and User Policies]
|
1160
|
-
# https://docs.aws.amazon.com/AmazonS3/latest/dev/using-iam-policies.html).
|
1162
|
+
# and User Policies][3].
|
1161
1163
|
#
|
1162
1164
|
# All Amazon S3 on Outposts REST API requests for this action require an
|
1163
1165
|
# additional parameter of `x-amz-outpost-id` to be passed with the
|
@@ -1165,21 +1167,22 @@ module Aws::S3Control
|
|
1165
1167
|
# `s3-control`. For an example of the request syntax for Amazon S3 on
|
1166
1168
|
# Outposts that uses the S3 on Outposts endpoint hostname prefix and the
|
1167
1169
|
# `x-amz-outpost-id` derived using the access point ARN, see the
|
1168
|
-
# [Examples][
|
1170
|
+
# [Examples][4] section.
|
1169
1171
|
#
|
1170
1172
|
# The following actions are related to `DeleteBucketPolicy`\:
|
1171
1173
|
#
|
1172
|
-
# * [GetBucketPolicy][
|
1174
|
+
# * [GetBucketPolicy][5]
|
1173
1175
|
#
|
1174
|
-
# * [PutBucketPolicy][
|
1176
|
+
# * [PutBucketPolicy][6]
|
1175
1177
|
#
|
1176
1178
|
#
|
1177
1179
|
#
|
1178
1180
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketPolicy.html
|
1179
1181
|
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html
|
1180
|
-
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/
|
1181
|
-
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
1182
|
-
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
1182
|
+
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/dev/using-iam-policies.html
|
1183
|
+
# [4]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DeleteBucketPolicy.html#API_control_DeleteBucketPolicy_Examples
|
1184
|
+
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetBucketPolicy.html
|
1185
|
+
# [6]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_PutBucketPolicy.html
|
1183
1186
|
#
|
1184
1187
|
# @option params [required, String] :account_id
|
1185
1188
|
# The account ID of the Outposts bucket.
|
@@ -1217,17 +1220,17 @@ module Aws::S3Control
|
|
1217
1220
|
req.send_request(options)
|
1218
1221
|
end
|
1219
1222
|
|
1220
|
-
# <note markdown="1"> This
|
1221
|
-
#
|
1222
|
-
#
|
1223
|
+
# <note markdown="1"> This action deletes an Amazon S3 on Outposts bucket's tags. To delete
|
1224
|
+
# an S3 bucket tags, see [DeleteBucketTagging][1] in the *Amazon Simple
|
1225
|
+
# Storage Service API*.
|
1223
1226
|
#
|
1224
1227
|
# </note>
|
1225
1228
|
#
|
1226
1229
|
# Deletes the tags from the Outposts bucket. For more information, see
|
1227
1230
|
# [Using Amazon S3 on Outposts][2] in *Amazon Simple Storage Service
|
1228
|
-
#
|
1231
|
+
# User Guide*.
|
1229
1232
|
#
|
1230
|
-
# To use this
|
1233
|
+
# To use this action, you must have permission to perform the
|
1231
1234
|
# `PutBucketTagging` action. By default, the bucket owner has this
|
1232
1235
|
# permission and can grant this permission to others.
|
1233
1236
|
#
|
@@ -1293,7 +1296,7 @@ module Aws::S3Control
|
|
1293
1296
|
# To use this operation, you must have permission to perform the
|
1294
1297
|
# `s3:DeleteJobTagging` action. For more information, see [Controlling
|
1295
1298
|
# access and labeling jobs using tags][1] in the *Amazon Simple Storage
|
1296
|
-
# Service
|
1299
|
+
# Service User Guide*.
|
1297
1300
|
#
|
1298
1301
|
#
|
1299
1302
|
#
|
@@ -1373,20 +1376,21 @@ module Aws::S3Control
|
|
1373
1376
|
end
|
1374
1377
|
|
1375
1378
|
# Deletes the Amazon S3 Storage Lens configuration. For more information
|
1376
|
-
# about S3 Storage Lens, see [
|
1377
|
-
# the *Amazon Simple Storage Service
|
1379
|
+
# about S3 Storage Lens, see [Assessing your storage activity and usage
|
1380
|
+
# with Amazon S3 Storage Lens ][1] in the *Amazon Simple Storage Service
|
1381
|
+
# User Guide*.
|
1378
1382
|
#
|
1379
1383
|
# <note markdown="1"> To use this action, you must have permission to perform the
|
1380
1384
|
# `s3:DeleteStorageLensConfiguration` action. For more information, see
|
1381
1385
|
# [Setting permissions to use Amazon S3 Storage Lens][2] in the *Amazon
|
1382
|
-
# Simple Storage Service
|
1386
|
+
# Simple Storage Service User Guide*.
|
1383
1387
|
#
|
1384
1388
|
# </note>
|
1385
1389
|
#
|
1386
1390
|
#
|
1387
1391
|
#
|
1388
|
-
# [1]: https://docs.aws.amazon.com/
|
1389
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/
|
1392
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
|
1393
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens_iam_permissions.html
|
1390
1394
|
#
|
1391
1395
|
# @option params [required, String] :config_id
|
1392
1396
|
# The ID of the S3 Storage Lens configuration.
|
@@ -1413,20 +1417,21 @@ module Aws::S3Control
|
|
1413
1417
|
end
|
1414
1418
|
|
1415
1419
|
# Deletes the Amazon S3 Storage Lens configuration tags. For more
|
1416
|
-
# information about S3 Storage Lens, see [
|
1417
|
-
# Lens][1] in the *Amazon
|
1420
|
+
# information about S3 Storage Lens, see [Assessing your storage
|
1421
|
+
# activity and usage with Amazon S3 Storage Lens ][1] in the *Amazon
|
1422
|
+
# Simple Storage Service User Guide*.
|
1418
1423
|
#
|
1419
1424
|
# <note markdown="1"> To use this action, you must have permission to perform the
|
1420
1425
|
# `s3:DeleteStorageLensConfigurationTagging` action. For more
|
1421
1426
|
# information, see [Setting permissions to use Amazon S3 Storage
|
1422
|
-
# Lens][2] in the *Amazon Simple Storage Service
|
1427
|
+
# Lens][2] in the *Amazon Simple Storage Service User Guide*.
|
1423
1428
|
#
|
1424
1429
|
# </note>
|
1425
1430
|
#
|
1426
1431
|
#
|
1427
1432
|
#
|
1428
|
-
# [1]: https://docs.aws.amazon.com/
|
1429
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/
|
1433
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
|
1434
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens_iam_permissions.html
|
1430
1435
|
#
|
1431
1436
|
# @option params [required, String] :config_id
|
1432
1437
|
# The ID of the S3 Storage Lens configuration.
|
@@ -1454,7 +1459,7 @@ module Aws::S3Control
|
|
1454
1459
|
|
1455
1460
|
# Retrieves the configuration parameters and status for a Batch
|
1456
1461
|
# Operations job. For more information, see [S3 Batch Operations][1] in
|
1457
|
-
# the *Amazon Simple Storage Service
|
1462
|
+
# the *Amazon Simple Storage Service User Guide*.
|
1458
1463
|
#
|
1459
1464
|
#
|
1460
1465
|
#
|
@@ -1477,6 +1482,7 @@ module Aws::S3Control
|
|
1477
1482
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
1478
1483
|
#
|
1479
1484
|
# @option params [required, String] :account_id
|
1485
|
+
# The AWS account ID associated with the S3 Batch Operations job.
|
1480
1486
|
#
|
1481
1487
|
# @option params [required, String] :job_id
|
1482
1488
|
# The ID for the job whose information you want to retrieve.
|
@@ -1764,14 +1770,14 @@ module Aws::S3Control
|
|
1764
1770
|
|
1765
1771
|
# Gets an Amazon S3 on Outposts bucket. For more information, see [
|
1766
1772
|
# Using Amazon S3 on Outposts][1] in the *Amazon Simple Storage Service
|
1767
|
-
#
|
1773
|
+
# User Guide*.
|
1768
1774
|
#
|
1769
1775
|
# If you are using an identity other than the root user of the AWS
|
1770
1776
|
# account that owns the bucket, the calling identity must have the
|
1771
1777
|
# `s3-outposts:GetBucket` permissions on the specified bucket and belong
|
1772
|
-
# to the bucket owner's account in order to use this
|
1773
|
-
#
|
1774
|
-
#
|
1778
|
+
# to the bucket owner's account in order to use this action. Only users
|
1779
|
+
# from Outposts bucket owner account with the right permissions can
|
1780
|
+
# perform actions on an Outposts bucket.
|
1775
1781
|
#
|
1776
1782
|
# If you don't have `s3-outposts:GetBucket` permissions or you're not
|
1777
1783
|
# using an identity that belongs to the bucket owner's account, Amazon
|
@@ -1848,7 +1854,7 @@ module Aws::S3Control
|
|
1848
1854
|
req.send_request(options)
|
1849
1855
|
end
|
1850
1856
|
|
1851
|
-
# <note markdown="1"> This
|
1857
|
+
# <note markdown="1"> This action gets an Amazon S3 on Outposts bucket's lifecycle
|
1852
1858
|
# configuration. To get an S3 bucket's lifecycle configuration, see
|
1853
1859
|
# [GetBucketLifecycleConfiguration][1] in the *Amazon Simple Storage
|
1854
1860
|
# Service API*.
|
@@ -1858,9 +1864,9 @@ module Aws::S3Control
|
|
1858
1864
|
# Returns the lifecycle configuration information set on the Outposts
|
1859
1865
|
# bucket. For more information, see [Using Amazon S3 on Outposts][2] and
|
1860
1866
|
# for information about lifecycle configuration, see [ Object Lifecycle
|
1861
|
-
# Management][3] in *Amazon Simple Storage Service
|
1867
|
+
# Management][3] in *Amazon Simple Storage Service User Guide*.
|
1862
1868
|
#
|
1863
|
-
# To use this
|
1869
|
+
# To use this action, you must have permission to perform the
|
1864
1870
|
# `s3-outposts:GetLifecycleConfiguration` action. The Outposts bucket
|
1865
1871
|
# owner has this permission, by default. The bucket owner can grant this
|
1866
1872
|
# permission to others. For more information about permissions, see
|
@@ -1974,12 +1980,12 @@ module Aws::S3Control
|
|
1974
1980
|
#
|
1975
1981
|
# Returns the policy of a specified Outposts bucket. For more
|
1976
1982
|
# information, see [Using Amazon S3 on Outposts][2] in the *Amazon
|
1977
|
-
# Simple Storage Service
|
1983
|
+
# Simple Storage Service User Guide*.
|
1978
1984
|
#
|
1979
1985
|
# If you are using an identity other than the root user of the AWS
|
1980
1986
|
# account that owns the bucket, the calling identity must have the
|
1981
1987
|
# `GetBucketPolicy` permissions on the specified bucket and belong to
|
1982
|
-
# the bucket owner's account in order to use this
|
1988
|
+
# the bucket owner's account in order to use this action.
|
1983
1989
|
#
|
1984
1990
|
# Only users from Outposts bucket owner account with the right
|
1985
1991
|
# permissions can perform actions on an Outposts bucket. If you don't
|
@@ -1988,7 +1994,7 @@ module Aws::S3Control
|
|
1988
1994
|
# returns a `403 Access Denied` error.
|
1989
1995
|
#
|
1990
1996
|
# As a security precaution, the root user of the AWS account that owns a
|
1991
|
-
# bucket can always use this
|
1997
|
+
# bucket can always use this action, even if the policy explicitly
|
1992
1998
|
# denies the root user the ability to perform this action.
|
1993
1999
|
#
|
1994
2000
|
# For more information about bucket policies, see [Using Bucket Policies
|
@@ -2062,17 +2068,17 @@ module Aws::S3Control
|
|
2062
2068
|
req.send_request(options)
|
2063
2069
|
end
|
2064
2070
|
|
2065
|
-
# <note markdown="1"> This
|
2066
|
-
#
|
2067
|
-
#
|
2071
|
+
# <note markdown="1"> This action gets an Amazon S3 on Outposts bucket's tags. To get an S3
|
2072
|
+
# bucket tags, see [GetBucketTagging][1] in the *Amazon Simple Storage
|
2073
|
+
# Service API*.
|
2068
2074
|
#
|
2069
2075
|
# </note>
|
2070
2076
|
#
|
2071
2077
|
# Returns the tag set associated with the Outposts bucket. For more
|
2072
2078
|
# information, see [Using Amazon S3 on Outposts][2] in the *Amazon
|
2073
|
-
# Simple Storage Service
|
2079
|
+
# Simple Storage Service User Guide*.
|
2074
2080
|
#
|
2075
|
-
# To use this
|
2081
|
+
# To use this action, you must have permission to perform the
|
2076
2082
|
# `GetBucketTagging` action. By default, the bucket owner has this
|
2077
2083
|
# permission and can grant this permission to others.
|
2078
2084
|
#
|
@@ -2153,7 +2159,7 @@ module Aws::S3Control
|
|
2153
2159
|
# Returns the tags on an S3 Batch Operations job. To use this operation,
|
2154
2160
|
# you must have permission to perform the `s3:GetJobTagging` action. For
|
2155
2161
|
# more information, see [Controlling access and labeling jobs using
|
2156
|
-
# tags][1] in the *Amazon Simple Storage Service
|
2162
|
+
# tags][1] in the *Amazon Simple Storage Service User Guide*.
|
2157
2163
|
#
|
2158
2164
|
#
|
2159
2165
|
#
|
@@ -2251,20 +2257,20 @@ module Aws::S3Control
|
|
2251
2257
|
end
|
2252
2258
|
|
2253
2259
|
# Gets the Amazon S3 Storage Lens configuration. For more information,
|
2254
|
-
# see [
|
2255
|
-
# Storage Service
|
2260
|
+
# see [Assessing your storage activity and usage with Amazon S3 Storage
|
2261
|
+
# Lens ][1] in the *Amazon Simple Storage Service User Guide*.
|
2256
2262
|
#
|
2257
2263
|
# <note markdown="1"> To use this action, you must have permission to perform the
|
2258
2264
|
# `s3:GetStorageLensConfiguration` action. For more information, see
|
2259
2265
|
# [Setting permissions to use Amazon S3 Storage Lens][2] in the *Amazon
|
2260
|
-
# Simple Storage Service
|
2266
|
+
# Simple Storage Service User Guide*.
|
2261
2267
|
#
|
2262
2268
|
# </note>
|
2263
2269
|
#
|
2264
2270
|
#
|
2265
2271
|
#
|
2266
|
-
# [1]: https://docs.aws.amazon.com/
|
2267
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/
|
2272
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
|
2273
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens_iam_permissions.html
|
2268
2274
|
#
|
2269
2275
|
# @option params [required, String] :config_id
|
2270
2276
|
# The ID of the Amazon S3 Storage Lens configuration.
|
@@ -2320,20 +2326,21 @@ module Aws::S3Control
|
|
2320
2326
|
end
|
2321
2327
|
|
2322
2328
|
# Gets the tags of Amazon S3 Storage Lens configuration. For more
|
2323
|
-
# information about S3 Storage Lens, see [
|
2324
|
-
# Lens][1] in the *Amazon
|
2329
|
+
# information about S3 Storage Lens, see [Assessing your storage
|
2330
|
+
# activity and usage with Amazon S3 Storage Lens ][1] in the *Amazon
|
2331
|
+
# Simple Storage Service User Guide*.
|
2325
2332
|
#
|
2326
2333
|
# <note markdown="1"> To use this action, you must have permission to perform the
|
2327
2334
|
# `s3:GetStorageLensConfigurationTagging` action. For more information,
|
2328
2335
|
# see [Setting permissions to use Amazon S3 Storage Lens][2] in the
|
2329
|
-
# *Amazon Simple Storage Service
|
2336
|
+
# *Amazon Simple Storage Service User Guide*.
|
2330
2337
|
#
|
2331
2338
|
# </note>
|
2332
2339
|
#
|
2333
2340
|
#
|
2334
2341
|
#
|
2335
|
-
# [1]: https://docs.aws.amazon.com/
|
2336
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/
|
2342
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
|
2343
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens_iam_permissions.html
|
2337
2344
|
#
|
2338
2345
|
# @option params [required, String] :config_id
|
2339
2346
|
# The ID of the Amazon S3 Storage Lens configuration.
|
@@ -2469,7 +2476,7 @@ module Aws::S3Control
|
|
2469
2476
|
# Lists current S3 Batch Operations jobs and jobs that have ended within
|
2470
2477
|
# the last 30 days for the AWS account making the request. For more
|
2471
2478
|
# information, see [S3 Batch Operations][1] in the *Amazon Simple
|
2472
|
-
# Storage Service
|
2479
|
+
# Storage Service User Guide*.
|
2473
2480
|
#
|
2474
2481
|
# Related actions include:
|
2475
2482
|
#
|
@@ -2492,6 +2499,7 @@ module Aws::S3Control
|
|
2492
2499
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
2493
2500
|
#
|
2494
2501
|
# @option params [required, String] :account_id
|
2502
|
+
# The AWS account ID associated with the S3 Batch Operations job.
|
2495
2503
|
#
|
2496
2504
|
# @option params [Array<String>] :job_statuses
|
2497
2505
|
# The `List Jobs` request returns jobs that match the statuses listed in
|
@@ -2530,7 +2538,7 @@ module Aws::S3Control
|
|
2530
2538
|
# resp.jobs #=> Array
|
2531
2539
|
# resp.jobs[0].job_id #=> String
|
2532
2540
|
# resp.jobs[0].description #=> String
|
2533
|
-
# resp.jobs[0].operation #=> String, one of "LambdaInvoke", "S3PutObjectCopy", "S3PutObjectAcl", "S3PutObjectTagging", "S3InitiateRestoreObject", "S3PutObjectLegalHold", "S3PutObjectRetention"
|
2541
|
+
# resp.jobs[0].operation #=> String, one of "LambdaInvoke", "S3PutObjectCopy", "S3PutObjectAcl", "S3PutObjectTagging", "S3DeleteObjectTagging", "S3InitiateRestoreObject", "S3PutObjectLegalHold", "S3PutObjectRetention"
|
2534
2542
|
# resp.jobs[0].priority #=> Integer
|
2535
2543
|
# resp.jobs[0].status #=> String, one of "Active", "Cancelled", "Cancelling", "Complete", "Completing", "Failed", "Failing", "New", "Paused", "Pausing", "Preparing", "Ready", "Suspended"
|
2536
2544
|
# resp.jobs[0].creation_time #=> Time
|
@@ -2551,7 +2559,7 @@ module Aws::S3Control
|
|
2551
2559
|
# Returns a list of all Outposts buckets in an Outpost that are owned by
|
2552
2560
|
# the authenticated sender of the request. For more information, see
|
2553
2561
|
# [Using Amazon S3 on Outposts][1] in the *Amazon Simple Storage Service
|
2554
|
-
#
|
2562
|
+
# User Guide*.
|
2555
2563
|
#
|
2556
2564
|
# For an example of the request syntax for Amazon S3 on Outposts that
|
2557
2565
|
# uses the S3 on Outposts endpoint hostname prefix and
|
@@ -2612,20 +2620,21 @@ module Aws::S3Control
|
|
2612
2620
|
end
|
2613
2621
|
|
2614
2622
|
# Gets a list of Amazon S3 Storage Lens configurations. For more
|
2615
|
-
# information about S3 Storage Lens, see [
|
2616
|
-
# Lens][1] in the *Amazon
|
2623
|
+
# information about S3 Storage Lens, see [Assessing your storage
|
2624
|
+
# activity and usage with Amazon S3 Storage Lens ][1] in the *Amazon
|
2625
|
+
# Simple Storage Service User Guide*.
|
2617
2626
|
#
|
2618
2627
|
# <note markdown="1"> To use this action, you must have permission to perform the
|
2619
2628
|
# `s3:ListStorageLensConfigurations` action. For more information, see
|
2620
2629
|
# [Setting permissions to use Amazon S3 Storage Lens][2] in the *Amazon
|
2621
|
-
# Simple Storage Service
|
2630
|
+
# Simple Storage Service User Guide*.
|
2622
2631
|
#
|
2623
2632
|
# </note>
|
2624
2633
|
#
|
2625
2634
|
#
|
2626
2635
|
#
|
2627
|
-
# [1]: https://docs.aws.amazon.com/
|
2628
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/
|
2636
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
|
2637
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens_iam_permissions.html
|
2629
2638
|
#
|
2630
2639
|
# @option params [required, String] :account_id
|
2631
2640
|
# The account ID of the requester.
|
@@ -2714,7 +2723,7 @@ module Aws::S3Control
|
|
2714
2723
|
# The policy that you want to apply to the specified access point. For
|
2715
2724
|
# more information about access point policies, see [Managing data
|
2716
2725
|
# access with Amazon S3 Access Points][1] in the *Amazon Simple Storage
|
2717
|
-
# Service
|
2726
|
+
# Service User Guide*.
|
2718
2727
|
#
|
2719
2728
|
#
|
2720
2729
|
#
|
@@ -2861,12 +2870,12 @@ module Aws::S3Control
|
|
2861
2870
|
#
|
2862
2871
|
# Applies an Amazon S3 bucket policy to an Outposts bucket. For more
|
2863
2872
|
# information, see [Using Amazon S3 on Outposts][2] in the *Amazon
|
2864
|
-
# Simple Storage Service
|
2873
|
+
# Simple Storage Service User Guide*.
|
2865
2874
|
#
|
2866
2875
|
# If you are using an identity other than the root user of the AWS
|
2867
2876
|
# account that owns the Outposts bucket, the calling identity must have
|
2868
2877
|
# the `PutBucketPolicy` permissions on the specified Outposts bucket and
|
2869
|
-
# belong to the bucket owner's account in order to use this
|
2878
|
+
# belong to the bucket owner's account in order to use this action.
|
2870
2879
|
#
|
2871
2880
|
# If you don't have `PutBucketPolicy` permissions, Amazon S3 returns a
|
2872
2881
|
# `403 Access Denied` error. If you have the correct permissions, but
|
@@ -2874,7 +2883,7 @@ module Aws::S3Control
|
|
2874
2883
|
# account, Amazon S3 returns a `405 Method Not Allowed` error.
|
2875
2884
|
#
|
2876
2885
|
# As a security precaution, the root user of the AWS account that owns a
|
2877
|
-
# bucket can always use this
|
2886
|
+
# bucket can always use this action, even if the policy explicitly
|
2878
2887
|
# denies the root user the ability to perform this action.
|
2879
2888
|
#
|
2880
2889
|
# For more information about bucket policies, see [Using Bucket Policies
|
@@ -2959,8 +2968,8 @@ module Aws::S3Control
|
|
2959
2968
|
# </note>
|
2960
2969
|
#
|
2961
2970
|
# Sets the tags for an Outposts bucket. For more information, see [Using
|
2962
|
-
# Amazon S3 on Outposts][2] in the *Amazon Simple Storage Service
|
2963
|
-
#
|
2971
|
+
# Amazon S3 on Outposts][2] in the *Amazon Simple Storage Service User
|
2972
|
+
# Guide*.
|
2964
2973
|
#
|
2965
2974
|
# Use tags to organize your AWS bill to reflect your own cost structure.
|
2966
2975
|
# To do this, sign up to get your AWS account bill with tag key values
|
@@ -2973,11 +2982,11 @@ module Aws::S3Control
|
|
2973
2982
|
#
|
2974
2983
|
# <note markdown="1"> Within a bucket, if you add a tag that has the same key as an existing
|
2975
2984
|
# tag, the new value overwrites the old value. For more information, see
|
2976
|
-
# [Using Cost Allocation in Amazon S3 Bucket Tags][4].
|
2985
|
+
# [ Using Cost Allocation in Amazon S3 Bucket Tags][4].
|
2977
2986
|
#
|
2978
2987
|
# </note>
|
2979
2988
|
#
|
2980
|
-
# To use this
|
2989
|
+
# To use this action, you must have permissions to perform the
|
2981
2990
|
# `s3-outposts:PutBucketTagging` action. The Outposts bucket owner has
|
2982
2991
|
# this permission by default and can grant this permission to others.
|
2983
2992
|
# For more information about permissions, see [ Permissions Related to
|
@@ -3003,7 +3012,7 @@ module Aws::S3Control
|
|
3003
3012
|
#
|
3004
3013
|
# * Error code: `OperationAbortedError `
|
3005
3014
|
#
|
3006
|
-
# * Description: A conflicting conditional
|
3015
|
+
# * Description: A conflicting conditional action is currently in
|
3007
3016
|
# progress against this resource. Try again.
|
3008
3017
|
#
|
3009
3018
|
# ^
|
@@ -3099,7 +3108,7 @@ module Aws::S3Control
|
|
3099
3108
|
# [GetJobTagging][1], modify that tag set, and use this action to
|
3100
3109
|
# replace the tag set with the one you modified. For more information,
|
3101
3110
|
# see [Controlling access and labeling jobs using tags][2] in the
|
3102
|
-
# *Amazon Simple Storage Service
|
3111
|
+
# *Amazon Simple Storage Service User Guide*.
|
3103
3112
|
#
|
3104
3113
|
#
|
3105
3114
|
#
|
@@ -3132,7 +3141,7 @@ module Aws::S3Control
|
|
3132
3141
|
#
|
3133
3142
|
#
|
3134
3143
|
#
|
3135
|
-
# To use this
|
3144
|
+
# To use this action, you must have permission to perform the
|
3136
3145
|
# `s3:PutJobTagging` action.
|
3137
3146
|
#
|
3138
3147
|
# Related actions include:
|
@@ -3234,19 +3243,19 @@ module Aws::S3Control
|
|
3234
3243
|
|
3235
3244
|
# Puts an Amazon S3 Storage Lens configuration. For more information
|
3236
3245
|
# about S3 Storage Lens, see [Working with Amazon S3 Storage Lens][1] in
|
3237
|
-
# the *Amazon Simple Storage Service
|
3246
|
+
# the *Amazon Simple Storage Service User Guide*.
|
3238
3247
|
#
|
3239
3248
|
# <note markdown="1"> To use this action, you must have permission to perform the
|
3240
3249
|
# `s3:PutStorageLensConfiguration` action. For more information, see
|
3241
3250
|
# [Setting permissions to use Amazon S3 Storage Lens][2] in the *Amazon
|
3242
|
-
# Simple Storage Service
|
3251
|
+
# Simple Storage Service User Guide*.
|
3243
3252
|
#
|
3244
3253
|
# </note>
|
3245
3254
|
#
|
3246
3255
|
#
|
3247
3256
|
#
|
3248
|
-
# [1]: https://docs.aws.amazon.com/
|
3249
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/
|
3257
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
|
3258
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens_iam_permissions.html
|
3250
3259
|
#
|
3251
3260
|
# @option params [required, String] :config_id
|
3252
3261
|
# The ID of the S3 Storage Lens configuration.
|
@@ -3342,20 +3351,20 @@ module Aws::S3Control
|
|
3342
3351
|
|
3343
3352
|
# Put or replace tags on an existing Amazon S3 Storage Lens
|
3344
3353
|
# configuration. For more information about S3 Storage Lens, see
|
3345
|
-
# [
|
3346
|
-
# Service
|
3354
|
+
# [Assessing your storage activity and usage with Amazon S3 Storage Lens
|
3355
|
+
# ][1] in the *Amazon Simple Storage Service User Guide*.
|
3347
3356
|
#
|
3348
3357
|
# <note markdown="1"> To use this action, you must have permission to perform the
|
3349
3358
|
# `s3:PutStorageLensConfigurationTagging` action. For more information,
|
3350
3359
|
# see [Setting permissions to use Amazon S3 Storage Lens][2] in the
|
3351
|
-
# *Amazon Simple Storage Service
|
3360
|
+
# *Amazon Simple Storage Service User Guide*.
|
3352
3361
|
#
|
3353
3362
|
# </note>
|
3354
3363
|
#
|
3355
3364
|
#
|
3356
3365
|
#
|
3357
|
-
# [1]: https://docs.aws.amazon.com/
|
3358
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/
|
3366
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens.html
|
3367
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/dev/storage_lens_iam_permissions.html
|
3359
3368
|
#
|
3360
3369
|
# @option params [required, String] :config_id
|
3361
3370
|
# The ID of the S3 Storage Lens configuration.
|
@@ -3396,7 +3405,7 @@ module Aws::S3Control
|
|
3396
3405
|
|
3397
3406
|
# Updates an existing S3 Batch Operations job's priority. For more
|
3398
3407
|
# information, see [S3 Batch Operations][1] in the *Amazon Simple
|
3399
|
-
# Storage Service
|
3408
|
+
# Storage Service User Guide*.
|
3400
3409
|
#
|
3401
3410
|
#
|
3402
3411
|
#
|
@@ -3419,6 +3428,7 @@ module Aws::S3Control
|
|
3419
3428
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
3420
3429
|
#
|
3421
3430
|
# @option params [required, String] :account_id
|
3431
|
+
# The AWS account ID associated with the S3 Batch Operations job.
|
3422
3432
|
#
|
3423
3433
|
# @option params [required, String] :job_id
|
3424
3434
|
# The ID for the job whose priority you want to update.
|
@@ -3453,10 +3463,10 @@ module Aws::S3Control
|
|
3453
3463
|
req.send_request(options)
|
3454
3464
|
end
|
3455
3465
|
|
3456
|
-
# Updates the status for the specified job. Use this
|
3457
|
-
#
|
3458
|
-
#
|
3459
|
-
# Storage Service
|
3466
|
+
# Updates the status for the specified job. Use this action to confirm
|
3467
|
+
# that you want to run a job or to cancel an existing job. For more
|
3468
|
+
# information, see [S3 Batch Operations][1] in the *Amazon Simple
|
3469
|
+
# Storage Service User Guide*.
|
3460
3470
|
#
|
3461
3471
|
#
|
3462
3472
|
#
|
@@ -3479,6 +3489,7 @@ module Aws::S3Control
|
|
3479
3489
|
# [5]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_UpdateJobStatus.html
|
3480
3490
|
#
|
3481
3491
|
# @option params [required, String] :account_id
|
3492
|
+
# The AWS account ID associated with the S3 Batch Operations job.
|
3482
3493
|
#
|
3483
3494
|
# @option params [required, String] :job_id
|
3484
3495
|
# The ID of the job whose status you want to update.
|
@@ -3533,7 +3544,7 @@ module Aws::S3Control
|
|
3533
3544
|
params: params,
|
3534
3545
|
config: config)
|
3535
3546
|
context[:gem_name] = 'aws-sdk-s3control'
|
3536
|
-
context[:gem_version] = '1.
|
3547
|
+
context[:gem_version] = '1.30.0'
|
3537
3548
|
Seahorse::Client::Request.new(handlers, context)
|
3538
3549
|
end
|
3539
3550
|
|