File tree Expand file tree Collapse file tree 1 file changed +28
-11
lines changed
_tuning-your-cluster/availability-and-recovery/snapshots Expand file tree Collapse file tree 1 file changed +28
-11
lines changed Original file line number Diff line number Diff line change @@ -190,17 +190,34 @@ You will most likely not need to specify any parameters except for `location`. F
190
190
191
191
``` json
192
192
{
193
- "Version" : " 2012-10-17" ,
194
- "Statement" : [{
195
- "Action" : [
196
- " s3:*"
197
- ],
198
- "Effect" : " Allow" ,
199
- "Resource" : [
200
- " arn:aws:s3:::your-bucket" ,
201
- " arn:aws:s3:::your-bucket/*"
202
- ]
203
- }]
193
+ "Version" : " 2012-10-17" ,
194
+ "Statement" : [
195
+ {
196
+ "Action" : [
197
+ " s3:GetBucketLocation" ,
198
+ " s3:ListBucket" ,
199
+ " s3:ListBucketMultipartUploads" ,
200
+ " s3:ListBucketVersions"
201
+ ],
202
+ "Effect" : " Allow" ,
203
+ "Resource" : [
204
+ " arn:aws:s3:::your-bucket"
205
+ ]
206
+ },
207
+ {
208
+ "Action" : [
209
+ " s3:AbortMultipartUpload" ,
210
+ " s3:DeleteObject" ,
211
+ " s3:GetObject" ,
212
+ " s3:ListMultipartUploadParts" ,
213
+ " s3:PutObject"
214
+ ],
215
+ "Effect" : " Allow" ,
216
+ "Resource" : [
217
+ " arn:aws:s3:::your-bucket/*"
218
+ ]
219
+ }
220
+ ]
204
221
}
205
222
```
206
223
You can’t perform that action at this time.
0 commit comments