forked from aws/aws-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths3-2006-03-01.normal.json
7239 lines (7239 loc) · 237 KB
/
s3-2006-03-01.normal.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": "2.0",
"metadata": {
"apiVersion": "2006-03-01",
"checksumFormat": "md5",
"endpointPrefix": "s3",
"globalEndpoint": "s3.amazonaws.com",
"protocol": "rest-xml",
"serviceAbbreviation": "Amazon S3",
"serviceFullName": "Amazon Simple Storage Service",
"signatureVersion": "s3",
"timestampFormat": "rfc822",
"uid": "s3-2006-03-01"
},
"operations": {
"AbortMultipartUpload": {
"name": "AbortMultipartUpload",
"http": {
"method": "DELETE",
"requestUri": "/{Bucket}/{Key+}"
},
"input": {
"shape": "AbortMultipartUploadRequest"
},
"output": {
"shape": "AbortMultipartUploadOutput"
},
"errors": [
{
"shape": "NoSuchUpload"
}
],
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadAbort.html",
"documentation": "<p>Aborts a multipart upload.</p><p>To verify that all parts have been removed, so you don't get charged for the part storage, you should call the List Parts operation and ensure the parts list is empty.</p>"
},
"CompleteMultipartUpload": {
"name": "CompleteMultipartUpload",
"http": {
"method": "POST",
"requestUri": "/{Bucket}/{Key+}"
},
"input": {
"shape": "CompleteMultipartUploadRequest"
},
"output": {
"shape": "CompleteMultipartUploadOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadComplete.html",
"documentation": "Completes a multipart upload by assembling previously uploaded parts."
},
"CopyObject": {
"name": "CopyObject",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}/{Key+}"
},
"input": {
"shape": "CopyObjectRequest"
},
"output": {
"shape": "CopyObjectOutput"
},
"errors": [
{
"shape": "ObjectNotInActiveTierError"
}
],
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectCOPY.html",
"documentation": "Creates a copy of an object that is already stored in Amazon S3.",
"alias": "PutObjectCopy"
},
"CreateBucket": {
"name": "CreateBucket",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}"
},
"input": {
"shape": "CreateBucketRequest"
},
"output": {
"shape": "CreateBucketOutput"
},
"errors": [
{
"shape": "BucketAlreadyExists"
},
{
"shape": "BucketAlreadyOwnedByYou"
}
],
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUT.html",
"documentation": "Creates a new bucket.",
"alias": "PutBucket"
},
"CreateMultipartUpload": {
"name": "CreateMultipartUpload",
"http": {
"method": "POST",
"requestUri": "/{Bucket}/{Key+}?uploads"
},
"input": {
"shape": "CreateMultipartUploadRequest"
},
"output": {
"shape": "CreateMultipartUploadOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadInitiate.html",
"documentation": "<p>Initiates a multipart upload and returns an upload ID.</p><p><b>Note:</b> After you initiate multipart upload and upload one or more parts, you must either complete or abort multipart upload in order to stop getting charged for storage of the uploaded parts. Only after you either complete or abort multipart upload, Amazon S3 frees up the parts storage and stops charging you for the parts storage.</p>",
"alias": "InitiateMultipartUpload"
},
"DeleteBucket": {
"name": "DeleteBucket",
"http": {
"method": "DELETE",
"requestUri": "/{Bucket}"
},
"input": {
"shape": "DeleteBucketRequest"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETE.html",
"documentation": "Deletes the bucket. All objects (including all object versions and Delete Markers) in the bucket must be deleted before the bucket itself can be deleted."
},
"DeleteBucketAnalyticsConfiguration": {
"name": "DeleteBucketAnalyticsConfiguration",
"http": {
"method": "DELETE",
"requestUri": "/{Bucket}?analytics"
},
"input": {
"shape": "DeleteBucketAnalyticsConfigurationRequest"
},
"documentation": "Deletes an analytics configuration for the bucket (specified by the analytics configuration ID)."
},
"DeleteBucketCors": {
"name": "DeleteBucketCors",
"http": {
"method": "DELETE",
"requestUri": "/{Bucket}?cors"
},
"input": {
"shape": "DeleteBucketCorsRequest"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEcors.html",
"documentation": "Deletes the cors configuration information set for the bucket."
},
"DeleteBucketInventoryConfiguration": {
"name": "DeleteBucketInventoryConfiguration",
"http": {
"method": "DELETE",
"requestUri": "/{Bucket}?inventory"
},
"input": {
"shape": "DeleteBucketInventoryConfigurationRequest"
},
"documentation": "Deletes an inventory configuration (identified by the inventory ID) from the bucket."
},
"DeleteBucketLifecycle": {
"name": "DeleteBucketLifecycle",
"http": {
"method": "DELETE",
"requestUri": "/{Bucket}?lifecycle"
},
"input": {
"shape": "DeleteBucketLifecycleRequest"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETElifecycle.html",
"documentation": "Deletes the lifecycle configuration from the bucket."
},
"DeleteBucketMetricsConfiguration": {
"name": "DeleteBucketMetricsConfiguration",
"http": {
"method": "DELETE",
"requestUri": "/{Bucket}?metrics"
},
"input": {
"shape": "DeleteBucketMetricsConfigurationRequest"
},
"documentation": "Deletes a metrics configuration (specified by the metrics configuration ID) from the bucket."
},
"DeleteBucketPolicy": {
"name": "DeleteBucketPolicy",
"http": {
"method": "DELETE",
"requestUri": "/{Bucket}?policy"
},
"input": {
"shape": "DeleteBucketPolicyRequest"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEpolicy.html",
"documentation": "Deletes the policy from the bucket."
},
"DeleteBucketReplication": {
"name": "DeleteBucketReplication",
"http": {
"method": "DELETE",
"requestUri": "/{Bucket}?replication"
},
"input": {
"shape": "DeleteBucketReplicationRequest"
},
"documentation": "Deletes the replication configuration from the bucket."
},
"DeleteBucketTagging": {
"name": "DeleteBucketTagging",
"http": {
"method": "DELETE",
"requestUri": "/{Bucket}?tagging"
},
"input": {
"shape": "DeleteBucketTaggingRequest"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEtagging.html",
"documentation": "Deletes the tags from the bucket."
},
"DeleteBucketWebsite": {
"name": "DeleteBucketWebsite",
"http": {
"method": "DELETE",
"requestUri": "/{Bucket}?website"
},
"input": {
"shape": "DeleteBucketWebsiteRequest"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEwebsite.html",
"documentation": "This operation removes the website configuration from the bucket."
},
"DeleteObject": {
"name": "DeleteObject",
"http": {
"method": "DELETE",
"requestUri": "/{Bucket}/{Key+}"
},
"input": {
"shape": "DeleteObjectRequest"
},
"output": {
"shape": "DeleteObjectOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectDELETE.html",
"documentation": "Removes the null version (if there is one) of an object and inserts a delete marker, which becomes the latest version of the object. If there isn't a null version, Amazon S3 does not remove any objects."
},
"DeleteObjectTagging": {
"name": "DeleteObjectTagging",
"http": {
"method": "DELETE",
"requestUri": "/{Bucket}/{Key+}?tagging"
},
"input": {
"shape": "DeleteObjectTaggingRequest"
},
"output": {
"shape": "DeleteObjectTaggingOutput"
},
"documentation": "Removes the tag-set from an existing object."
},
"DeleteObjects": {
"name": "DeleteObjects",
"http": {
"method": "POST",
"requestUri": "/{Bucket}?delete"
},
"input": {
"shape": "DeleteObjectsRequest"
},
"output": {
"shape": "DeleteObjectsOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/multiobjectdeleteapi.html",
"documentation": "This operation enables you to delete multiple objects from a bucket using a single HTTP request. You may specify up to 1000 keys.",
"alias": "DeleteMultipleObjects"
},
"GetBucketAccelerateConfiguration": {
"name": "GetBucketAccelerateConfiguration",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?accelerate"
},
"input": {
"shape": "GetBucketAccelerateConfigurationRequest"
},
"output": {
"shape": "GetBucketAccelerateConfigurationOutput"
},
"documentation": "Returns the accelerate configuration of a bucket."
},
"GetBucketAcl": {
"name": "GetBucketAcl",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?acl"
},
"input": {
"shape": "GetBucketAclRequest"
},
"output": {
"shape": "GetBucketAclOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETacl.html",
"documentation": "Gets the access control policy for the bucket."
},
"GetBucketAnalyticsConfiguration": {
"name": "GetBucketAnalyticsConfiguration",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?analytics"
},
"input": {
"shape": "GetBucketAnalyticsConfigurationRequest"
},
"output": {
"shape": "GetBucketAnalyticsConfigurationOutput"
},
"documentation": "Gets an analytics configuration for the bucket (specified by the analytics configuration ID)."
},
"GetBucketCors": {
"name": "GetBucketCors",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?cors"
},
"input": {
"shape": "GetBucketCorsRequest"
},
"output": {
"shape": "GetBucketCorsOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETcors.html",
"documentation": "Returns the cors configuration for the bucket."
},
"GetBucketInventoryConfiguration": {
"name": "GetBucketInventoryConfiguration",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?inventory"
},
"input": {
"shape": "GetBucketInventoryConfigurationRequest"
},
"output": {
"shape": "GetBucketInventoryConfigurationOutput"
},
"documentation": "Returns an inventory configuration (identified by the inventory ID) from the bucket."
},
"GetBucketLifecycle": {
"name": "GetBucketLifecycle",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?lifecycle"
},
"input": {
"shape": "GetBucketLifecycleRequest"
},
"output": {
"shape": "GetBucketLifecycleOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETlifecycle.html",
"documentation": "Deprecated, see the GetBucketLifecycleConfiguration operation.",
"deprecated": true
},
"GetBucketLifecycleConfiguration": {
"name": "GetBucketLifecycleConfiguration",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?lifecycle"
},
"input": {
"shape": "GetBucketLifecycleConfigurationRequest"
},
"output": {
"shape": "GetBucketLifecycleConfigurationOutput"
},
"documentation": "Returns the lifecycle configuration information set on the bucket."
},
"GetBucketLocation": {
"name": "GetBucketLocation",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?location"
},
"input": {
"shape": "GetBucketLocationRequest"
},
"output": {
"shape": "GetBucketLocationOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETlocation.html",
"documentation": "Returns the region the bucket resides in."
},
"GetBucketLogging": {
"name": "GetBucketLogging",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?logging"
},
"input": {
"shape": "GetBucketLoggingRequest"
},
"output": {
"shape": "GetBucketLoggingOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETlogging.html",
"documentation": "Returns the logging status of a bucket and the permissions users have to view and modify that status. To use GET, you must be the bucket owner."
},
"GetBucketMetricsConfiguration": {
"name": "GetBucketMetricsConfiguration",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?metrics"
},
"input": {
"shape": "GetBucketMetricsConfigurationRequest"
},
"output": {
"shape": "GetBucketMetricsConfigurationOutput"
},
"documentation": "Gets a metrics configuration (specified by the metrics configuration ID) from the bucket."
},
"GetBucketNotification": {
"name": "GetBucketNotification",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?notification"
},
"input": {
"shape": "GetBucketNotificationConfigurationRequest"
},
"output": {
"shape": "NotificationConfigurationDeprecated"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETnotification.html",
"documentation": "Deprecated, see the GetBucketNotificationConfiguration operation.",
"deprecated": true
},
"GetBucketNotificationConfiguration": {
"name": "GetBucketNotificationConfiguration",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?notification"
},
"input": {
"shape": "GetBucketNotificationConfigurationRequest"
},
"output": {
"shape": "NotificationConfiguration"
},
"documentation": "Returns the notification configuration of a bucket."
},
"GetBucketPolicy": {
"name": "GetBucketPolicy",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?policy"
},
"input": {
"shape": "GetBucketPolicyRequest"
},
"output": {
"shape": "GetBucketPolicyOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETpolicy.html",
"documentation": "Returns the policy of a specified bucket."
},
"GetBucketReplication": {
"name": "GetBucketReplication",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?replication"
},
"input": {
"shape": "GetBucketReplicationRequest"
},
"output": {
"shape": "GetBucketReplicationOutput"
},
"documentation": "Returns the replication configuration of a bucket."
},
"GetBucketRequestPayment": {
"name": "GetBucketRequestPayment",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?requestPayment"
},
"input": {
"shape": "GetBucketRequestPaymentRequest"
},
"output": {
"shape": "GetBucketRequestPaymentOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTrequestPaymentGET.html",
"documentation": "Returns the request payment configuration of a bucket."
},
"GetBucketTagging": {
"name": "GetBucketTagging",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?tagging"
},
"input": {
"shape": "GetBucketTaggingRequest"
},
"output": {
"shape": "GetBucketTaggingOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETtagging.html",
"documentation": "Returns the tag set associated with the bucket."
},
"GetBucketVersioning": {
"name": "GetBucketVersioning",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?versioning"
},
"input": {
"shape": "GetBucketVersioningRequest"
},
"output": {
"shape": "GetBucketVersioningOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETversioningStatus.html",
"documentation": "Returns the versioning state of a bucket."
},
"GetBucketWebsite": {
"name": "GetBucketWebsite",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?website"
},
"input": {
"shape": "GetBucketWebsiteRequest"
},
"output": {
"shape": "GetBucketWebsiteOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETwebsite.html",
"documentation": "Returns the website configuration for a bucket."
},
"GetObject": {
"name": "GetObject",
"http": {
"method": "GET",
"requestUri": "/{Bucket}/{Key+}"
},
"input": {
"shape": "GetObjectRequest"
},
"output": {
"shape": "GetObjectOutput"
},
"errors": [
{
"shape": "NoSuchKey"
}
],
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectGET.html",
"documentation": "Retrieves objects from Amazon S3."
},
"GetObjectAcl": {
"name": "GetObjectAcl",
"http": {
"method": "GET",
"requestUri": "/{Bucket}/{Key+}?acl"
},
"input": {
"shape": "GetObjectAclRequest"
},
"output": {
"shape": "GetObjectAclOutput"
},
"errors": [
{
"shape": "NoSuchKey"
}
],
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectGETacl.html",
"documentation": "Returns the access control list (ACL) of an object."
},
"GetObjectTagging": {
"name": "GetObjectTagging",
"http": {
"method": "GET",
"requestUri": "/{Bucket}/{Key+}?tagging"
},
"input": {
"shape": "GetObjectTaggingRequest"
},
"output": {
"shape": "GetObjectTaggingOutput"
},
"documentation": "Returns the tag-set of an object."
},
"GetObjectTorrent": {
"name": "GetObjectTorrent",
"http": {
"method": "GET",
"requestUri": "/{Bucket}/{Key+}?torrent"
},
"input": {
"shape": "GetObjectTorrentRequest"
},
"output": {
"shape": "GetObjectTorrentOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectGETtorrent.html",
"documentation": "Return torrent files from a bucket."
},
"HeadBucket": {
"name": "HeadBucket",
"http": {
"method": "HEAD",
"requestUri": "/{Bucket}"
},
"input": {
"shape": "HeadBucketRequest"
},
"errors": [
{
"shape": "NoSuchBucket"
}
],
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketHEAD.html",
"documentation": "This operation is useful to determine if a bucket exists and you have permission to access it."
},
"HeadObject": {
"name": "HeadObject",
"http": {
"method": "HEAD",
"requestUri": "/{Bucket}/{Key+}"
},
"input": {
"shape": "HeadObjectRequest"
},
"output": {
"shape": "HeadObjectOutput"
},
"errors": [
{
"shape": "NoSuchKey"
}
],
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectHEAD.html",
"documentation": "The HEAD operation retrieves metadata from an object without returning the object itself. This operation is useful if you're only interested in an object's metadata. To use HEAD, you must have READ access to the object."
},
"ListBucketAnalyticsConfigurations": {
"name": "ListBucketAnalyticsConfigurations",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?analytics"
},
"input": {
"shape": "ListBucketAnalyticsConfigurationsRequest"
},
"output": {
"shape": "ListBucketAnalyticsConfigurationsOutput"
},
"documentation": "Lists the analytics configurations for the bucket."
},
"ListBucketInventoryConfigurations": {
"name": "ListBucketInventoryConfigurations",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?inventory"
},
"input": {
"shape": "ListBucketInventoryConfigurationsRequest"
},
"output": {
"shape": "ListBucketInventoryConfigurationsOutput"
},
"documentation": "Returns a list of inventory configurations for the bucket."
},
"ListBucketMetricsConfigurations": {
"name": "ListBucketMetricsConfigurations",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?metrics"
},
"input": {
"shape": "ListBucketMetricsConfigurationsRequest"
},
"output": {
"shape": "ListBucketMetricsConfigurationsOutput"
},
"documentation": "Lists the metrics configurations for the bucket."
},
"ListBuckets": {
"name": "ListBuckets",
"http": {
"method": "GET",
"requestUri": "/"
},
"output": {
"shape": "ListBucketsOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTServiceGET.html",
"documentation": "Returns a list of all buckets owned by the authenticated sender of the request.",
"alias": "GetService"
},
"ListMultipartUploads": {
"name": "ListMultipartUploads",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?uploads"
},
"input": {
"shape": "ListMultipartUploadsRequest"
},
"output": {
"shape": "ListMultipartUploadsOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadListMPUpload.html",
"documentation": "This operation lists in-progress multipart uploads."
},
"ListObjectVersions": {
"name": "ListObjectVersions",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?versions"
},
"input": {
"shape": "ListObjectVersionsRequest"
},
"output": {
"shape": "ListObjectVersionsOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETVersion.html",
"documentation": "Returns metadata about all of the versions of objects in a bucket.",
"alias": "GetBucketObjectVersions"
},
"ListObjects": {
"name": "ListObjects",
"http": {
"method": "GET",
"requestUri": "/{Bucket}"
},
"input": {
"shape": "ListObjectsRequest"
},
"output": {
"shape": "ListObjectsOutput"
},
"errors": [
{
"shape": "NoSuchBucket"
}
],
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGET.html",
"documentation": "Returns some or all (up to 1000) of the objects in a bucket. You can use the request parameters as selection criteria to return a subset of the objects in a bucket.",
"alias": "GetBucket"
},
"ListObjectsV2": {
"name": "ListObjectsV2",
"http": {
"method": "GET",
"requestUri": "/{Bucket}?list-type=2"
},
"input": {
"shape": "ListObjectsV2Request"
},
"output": {
"shape": "ListObjectsV2Output"
},
"errors": [
{
"shape": "NoSuchBucket"
}
],
"documentation": "Returns some or all (up to 1000) of the objects in a bucket. You can use the request parameters as selection criteria to return a subset of the objects in a bucket. Note: ListObjectsV2 is the revised List Objects API and we recommend you use this revised API for new application development."
},
"ListParts": {
"name": "ListParts",
"http": {
"method": "GET",
"requestUri": "/{Bucket}/{Key+}"
},
"input": {
"shape": "ListPartsRequest"
},
"output": {
"shape": "ListPartsOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadListParts.html",
"documentation": "Lists the parts that have been uploaded for a specific multipart upload."
},
"PutBucketAccelerateConfiguration": {
"name": "PutBucketAccelerateConfiguration",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?accelerate"
},
"input": {
"shape": "PutBucketAccelerateConfigurationRequest"
},
"documentation": "Sets the accelerate configuration of an existing bucket."
},
"PutBucketAcl": {
"name": "PutBucketAcl",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?acl"
},
"input": {
"shape": "PutBucketAclRequest"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTacl.html",
"documentation": "Sets the permissions on a bucket using access control lists (ACL)."
},
"PutBucketAnalyticsConfiguration": {
"name": "PutBucketAnalyticsConfiguration",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?analytics"
},
"input": {
"shape": "PutBucketAnalyticsConfigurationRequest"
},
"documentation": "Sets an analytics configuration for the bucket (specified by the analytics configuration ID)."
},
"PutBucketCors": {
"name": "PutBucketCors",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?cors"
},
"input": {
"shape": "PutBucketCorsRequest"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTcors.html",
"documentation": "Sets the cors configuration for a bucket."
},
"PutBucketInventoryConfiguration": {
"name": "PutBucketInventoryConfiguration",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?inventory"
},
"input": {
"shape": "PutBucketInventoryConfigurationRequest"
},
"documentation": "Adds an inventory configuration (identified by the inventory ID) from the bucket."
},
"PutBucketLifecycle": {
"name": "PutBucketLifecycle",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?lifecycle"
},
"input": {
"shape": "PutBucketLifecycleRequest"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTlifecycle.html",
"documentation": "Deprecated, see the PutBucketLifecycleConfiguration operation.",
"deprecated": true
},
"PutBucketLifecycleConfiguration": {
"name": "PutBucketLifecycleConfiguration",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?lifecycle"
},
"input": {
"shape": "PutBucketLifecycleConfigurationRequest"
},
"documentation": "Sets lifecycle configuration for your bucket. If a lifecycle configuration exists, it replaces it."
},
"PutBucketLogging": {
"name": "PutBucketLogging",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?logging"
},
"input": {
"shape": "PutBucketLoggingRequest"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTlogging.html",
"documentation": "Set the logging parameters for a bucket and to specify permissions for who can view and modify the logging parameters. To set the logging status of a bucket, you must be the bucket owner."
},
"PutBucketMetricsConfiguration": {
"name": "PutBucketMetricsConfiguration",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?metrics"
},
"input": {
"shape": "PutBucketMetricsConfigurationRequest"
},
"documentation": "Sets a metrics configuration (specified by the metrics configuration ID) for the bucket."
},
"PutBucketNotification": {
"name": "PutBucketNotification",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?notification"
},
"input": {
"shape": "PutBucketNotificationRequest"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTnotification.html",
"documentation": "Deprecated, see the PutBucketNotificationConfiguraiton operation.",
"deprecated": true
},
"PutBucketNotificationConfiguration": {
"name": "PutBucketNotificationConfiguration",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?notification"
},
"input": {
"shape": "PutBucketNotificationConfigurationRequest"
},
"documentation": "Enables notifications of specified events for a bucket."
},
"PutBucketPolicy": {
"name": "PutBucketPolicy",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?policy"
},
"input": {
"shape": "PutBucketPolicyRequest"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTpolicy.html",
"documentation": "Replaces a policy on a bucket. If the bucket already has a policy, the one in this request completely replaces it."
},
"PutBucketReplication": {
"name": "PutBucketReplication",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?replication"
},
"input": {
"shape": "PutBucketReplicationRequest"
},
"documentation": "Creates a new replication configuration (or replaces an existing one, if present)."
},
"PutBucketRequestPayment": {
"name": "PutBucketRequestPayment",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?requestPayment"
},
"input": {
"shape": "PutBucketRequestPaymentRequest"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTrequestPaymentPUT.html",
"documentation": "Sets the request payment configuration for a bucket. By default, the bucket owner pays for downloads from the bucket. This configuration parameter enables the bucket owner (only) to specify that the person requesting the download will be charged for the download. Documentation on requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html"
},
"PutBucketTagging": {
"name": "PutBucketTagging",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?tagging"
},
"input": {
"shape": "PutBucketTaggingRequest"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTtagging.html",
"documentation": "Sets the tags for a bucket."
},
"PutBucketVersioning": {
"name": "PutBucketVersioning",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?versioning"
},
"input": {
"shape": "PutBucketVersioningRequest"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTVersioningStatus.html",
"documentation": "Sets the versioning state of an existing bucket. To set the versioning state, you must be the bucket owner."
},
"PutBucketWebsite": {
"name": "PutBucketWebsite",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}?website"
},
"input": {
"shape": "PutBucketWebsiteRequest"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTwebsite.html",
"documentation": "Set the website configuration for a bucket."
},
"PutObject": {
"name": "PutObject",
"http": {
"method": "PUT",
"requestUri": "/{Bucket}/{Key+}"
},
"input": {
"shape": "PutObjectRequest"
},
"output": {
"shape": "PutObjectOutput"
},
"documentationUrl": "http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectPUT.html",
"documentation": "Adds an object to a bucket."
},
"PutObjectAcl": {
"name": "PutObjectAcl",