aws-sdk 2.1396.0 → 2.1398.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.
Files changed (51) hide show
  1. package/CHANGELOG.md +18 -1
  2. package/README.md +1 -1
  3. package/apis/auditmanager-2017-07-25.min.json +128 -88
  4. package/apis/cloudtrail-2013-11-01.min.json +33 -33
  5. package/apis/codeguru-security-2018-05-10.examples.json +5 -0
  6. package/apis/codeguru-security-2018-05-10.min.json +703 -0
  7. package/apis/codeguru-security-2018-05-10.paginators.json +22 -0
  8. package/apis/drs-2020-02-26.min.json +392 -97
  9. package/apis/drs-2020-02-26.paginators.json +6 -0
  10. package/apis/ec2-2016-11-15.min.json +1178 -1013
  11. package/apis/ec2-2016-11-15.paginators.json +6 -0
  12. package/apis/lightsail-2016-11-28.min.json +4 -2
  13. package/apis/location-2020-11-19.min.json +56 -8
  14. package/apis/metadata.json +7 -0
  15. package/apis/s3-2006-03-01.examples.json +121 -121
  16. package/apis/securityhub-2018-10-26.examples.json +276 -0
  17. package/apis/securityhub-2018-10-26.min.json +957 -559
  18. package/apis/verifiedpermissions-2021-12-01.examples.json +5 -0
  19. package/apis/verifiedpermissions-2021-12-01.min.json +1215 -0
  20. package/apis/verifiedpermissions-2021-12-01.paginators.json +28 -0
  21. package/apis/verifiedpermissions-2021-12-01.waiters2.json +5 -0
  22. package/apis/wafv2-2019-07-29.min.json +241 -169
  23. package/apis/wellarchitected-2020-03-31.min.json +655 -75
  24. package/apis/wellarchitected-2020-03-31.paginators.json +15 -0
  25. package/clients/all.d.ts +2 -0
  26. package/clients/all.js +3 -1
  27. package/clients/auditmanager.d.ts +105 -52
  28. package/clients/cloudtrail.d.ts +28 -13
  29. package/clients/codegurusecurity.d.ts +761 -0
  30. package/clients/codegurusecurity.js +18 -0
  31. package/clients/drs.d.ts +354 -3
  32. package/clients/ec2.d.ts +225 -48
  33. package/clients/efs.d.ts +5 -5
  34. package/clients/guardduty.d.ts +11 -11
  35. package/clients/imagebuilder.d.ts +1 -1
  36. package/clients/lightsail.d.ts +12 -4
  37. package/clients/location.d.ts +60 -7
  38. package/clients/s3.d.ts +1 -1
  39. package/clients/securityhub.d.ts +470 -0
  40. package/clients/simspaceweaver.d.ts +2 -2
  41. package/clients/verifiedpermissions.d.ts +1392 -0
  42. package/clients/verifiedpermissions.js +19 -0
  43. package/clients/wafv2.d.ts +105 -27
  44. package/clients/wellarchitected.d.ts +533 -7
  45. package/dist/aws-sdk-core-react-native.js +2 -2
  46. package/dist/aws-sdk-react-native.js +97 -16
  47. package/dist/aws-sdk.js +1283 -1057
  48. package/dist/aws-sdk.min.js +80 -80
  49. package/lib/config_service_placeholders.d.ts +4 -0
  50. package/lib/core.js +1 -1
  51. package/package.json +1 -1
@@ -84,10 +84,13 @@
84
84
  "CreateBucket": [
85
85
  {
86
86
  "input": {
87
- "Bucket": "examplebucket"
87
+ "Bucket": "examplebucket",
88
+ "CreateBucketConfiguration": {
89
+ "LocationConstraint": "eu-west-1"
90
+ }
88
91
  },
89
92
  "output": {
90
- "Location": "/examplebucket"
93
+ "Location": "http://examplebucket.<Region>.s3.amazonaws.com/"
91
94
  },
92
95
  "comments": {
93
96
  "input": {
@@ -95,19 +98,16 @@
95
98
  "output": {
96
99
  }
97
100
  },
98
- "description": "The following example creates a bucket.",
99
- "id": "to-create-a-bucket--1472851826060",
100
- "title": "To create a bucket "
101
+ "description": "The following example creates a bucket. The request specifies an AWS region where to create the bucket.",
102
+ "id": "to-create-a-bucket-in-a-specific-region-1483399072992",
103
+ "title": "To create a bucket in a specific region"
101
104
  },
102
105
  {
103
106
  "input": {
104
- "Bucket": "examplebucket",
105
- "CreateBucketConfiguration": {
106
- "LocationConstraint": "eu-west-1"
107
- }
107
+ "Bucket": "examplebucket"
108
108
  },
109
109
  "output": {
110
- "Location": "http://examplebucket.<Region>.s3.amazonaws.com/"
110
+ "Location": "/examplebucket"
111
111
  },
112
112
  "comments": {
113
113
  "input": {
@@ -115,9 +115,9 @@
115
115
  "output": {
116
116
  }
117
117
  },
118
- "description": "The following example creates a bucket. The request specifies an AWS region where to create the bucket.",
119
- "id": "to-create-a-bucket-in-a-specific-region-1483399072992",
120
- "title": "To create a bucket in a specific region"
118
+ "description": "The following example creates a bucket.",
119
+ "id": "to-create-a-bucket--1472851826060",
120
+ "title": "To create a bucket "
121
121
  }
122
122
  ],
123
123
  "CreateMultipartUpload": [
@@ -292,11 +292,10 @@
292
292
  {
293
293
  "input": {
294
294
  "Bucket": "examplebucket",
295
- "Key": "HappyFace.jpg",
296
- "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
295
+ "Key": "HappyFace.jpg"
297
296
  },
298
297
  "output": {
299
- "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
298
+ "VersionId": "null"
300
299
  },
301
300
  "comments": {
302
301
  "input": {
@@ -304,17 +303,18 @@
304
303
  "output": {
305
304
  }
306
305
  },
307
- "description": "The following example removes tag set associated with the specified object version. The request specifies both the object key and object version.",
308
- "id": "to-remove-tag-set-from-an-object-version-1483145285913",
309
- "title": "To remove tag set from an object version"
306
+ "description": "The following example removes tag set associated with the specified object. If the bucket is versioning enabled, the operation removes tag set from the latest object version.",
307
+ "id": "to-remove-tag-set-from-an-object-1483145342862",
308
+ "title": "To remove tag set from an object"
310
309
  },
311
310
  {
312
311
  "input": {
313
312
  "Bucket": "examplebucket",
314
- "Key": "HappyFace.jpg"
313
+ "Key": "HappyFace.jpg",
314
+ "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
315
315
  },
316
316
  "output": {
317
- "VersionId": "null"
317
+ "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
318
318
  },
319
319
  "comments": {
320
320
  "input": {
@@ -322,9 +322,9 @@
322
322
  "output": {
323
323
  }
324
324
  },
325
- "description": "The following example removes tag set associated with the specified object. If the bucket is versioning enabled, the operation removes tag set from the latest object version.",
326
- "id": "to-remove-tag-set-from-an-object-1483145342862",
327
- "title": "To remove tag set from an object"
325
+ "description": "The following example removes tag set associated with the specified object version. The request specifies both the object key and object version.",
326
+ "id": "to-remove-tag-set-from-an-object-version-1483145285913",
327
+ "title": "To remove tag set from an object version"
328
328
  }
329
329
  ],
330
330
  "DeleteObjects": [
@@ -334,12 +334,10 @@
334
334
  "Delete": {
335
335
  "Objects": [
336
336
  {
337
- "Key": "HappyFace.jpg",
338
- "VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b"
337
+ "Key": "objectkey1"
339
338
  },
340
339
  {
341
- "Key": "HappyFace.jpg",
342
- "VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd"
340
+ "Key": "objectkey2"
343
341
  }
344
342
  ],
345
343
  "Quiet": false
@@ -348,12 +346,14 @@
348
346
  "output": {
349
347
  "Deleted": [
350
348
  {
351
- "Key": "HappyFace.jpg",
352
- "VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd"
349
+ "DeleteMarker": "true",
350
+ "DeleteMarkerVersionId": "A._w1z6EFiCF5uhtQMDal9JDkID9tQ7F",
351
+ "Key": "objectkey1"
353
352
  },
354
353
  {
355
- "Key": "HappyFace.jpg",
356
- "VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b"
354
+ "DeleteMarker": "true",
355
+ "DeleteMarkerVersionId": "iOd_ORxhkKe_e8G8_oSGxt2PjsCZKlkt",
356
+ "Key": "objectkey2"
357
357
  }
358
358
  ]
359
359
  },
@@ -363,9 +363,9 @@
363
363
  "output": {
364
364
  }
365
365
  },
366
- "description": "The following example deletes objects from a bucket. The request specifies object versions. S3 deletes specific object versions and returns the key and versions of deleted objects in the response.",
367
- "id": "to-delete-multiple-object-versions-from-a-versioned-bucket-1483147087737",
368
- "title": "To delete multiple object versions from a versioned bucket"
366
+ "description": "The following example deletes objects from a bucket. The bucket is versioned, and the request does not specify the object version to delete. In this case, all versions remain in the bucket and S3 adds a delete marker.",
367
+ "id": "to-delete-multiple-objects-from-a-versioned-bucket-1483146248805",
368
+ "title": "To delete multiple objects from a versioned bucket"
369
369
  },
370
370
  {
371
371
  "input": {
@@ -373,10 +373,12 @@
373
373
  "Delete": {
374
374
  "Objects": [
375
375
  {
376
- "Key": "objectkey1"
376
+ "Key": "HappyFace.jpg",
377
+ "VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b"
377
378
  },
378
379
  {
379
- "Key": "objectkey2"
380
+ "Key": "HappyFace.jpg",
381
+ "VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd"
380
382
  }
381
383
  ],
382
384
  "Quiet": false
@@ -385,14 +387,12 @@
385
387
  "output": {
386
388
  "Deleted": [
387
389
  {
388
- "DeleteMarker": "true",
389
- "DeleteMarkerVersionId": "A._w1z6EFiCF5uhtQMDal9JDkID9tQ7F",
390
- "Key": "objectkey1"
390
+ "Key": "HappyFace.jpg",
391
+ "VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd"
391
392
  },
392
393
  {
393
- "DeleteMarker": "true",
394
- "DeleteMarkerVersionId": "iOd_ORxhkKe_e8G8_oSGxt2PjsCZKlkt",
395
- "Key": "objectkey2"
394
+ "Key": "HappyFace.jpg",
395
+ "VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b"
396
396
  }
397
397
  ]
398
398
  },
@@ -402,9 +402,9 @@
402
402
  "output": {
403
403
  }
404
404
  },
405
- "description": "The following example deletes objects from a bucket. The bucket is versioned, and the request does not specify the object version to delete. In this case, all versions remain in the bucket and S3 adds a delete marker.",
406
- "id": "to-delete-multiple-objects-from-a-versioned-bucket-1483146248805",
407
- "title": "To delete multiple objects from a versioned bucket"
405
+ "description": "The following example deletes objects from a bucket. The request specifies object versions. S3 deletes specific object versions and returns the key and versions of deleted objects in the response.",
406
+ "id": "to-delete-multiple-object-versions-from-a-versioned-bucket-1483147087737",
407
+ "title": "To delete multiple object versions from a versioned bucket"
408
408
  }
409
409
  ],
410
410
  "GetBucketCors": [
@@ -728,17 +728,18 @@
728
728
  {
729
729
  "input": {
730
730
  "Bucket": "examplebucket",
731
- "Key": "HappyFace.jpg"
731
+ "Key": "SampleFile.txt",
732
+ "Range": "bytes=0-9"
732
733
  },
733
734
  "output": {
734
735
  "AcceptRanges": "bytes",
735
- "ContentLength": "3191",
736
- "ContentType": "image/jpeg",
737
- "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
738
- "LastModified": "Thu, 15 Dec 2016 01:19:41 GMT",
736
+ "ContentLength": "10",
737
+ "ContentRange": "bytes 0-9/43",
738
+ "ContentType": "text/plain",
739
+ "ETag": "\"0d94420ffd0bc68cd3d152506b97a9cc\"",
740
+ "LastModified": "Thu, 09 Oct 2014 22:57:28 GMT",
739
741
  "Metadata": {
740
742
  },
741
- "TagCount": 2,
742
743
  "VersionId": "null"
743
744
  },
744
745
  "comments": {
@@ -747,25 +748,24 @@
747
748
  "output": {
748
749
  }
749
750
  },
750
- "description": "The following example retrieves an object for an S3 bucket.",
751
- "id": "to-retrieve-an-object-1481827837012",
752
- "title": "To retrieve an object"
751
+ "description": "The following example retrieves an object for an S3 bucket. The request specifies the range header to retrieve a specific byte range.",
752
+ "id": "to-retrieve-a-byte-range-of-an-object--1481832674603",
753
+ "title": "To retrieve a byte range of an object "
753
754
  },
754
755
  {
755
756
  "input": {
756
757
  "Bucket": "examplebucket",
757
- "Key": "SampleFile.txt",
758
- "Range": "bytes=0-9"
758
+ "Key": "HappyFace.jpg"
759
759
  },
760
760
  "output": {
761
761
  "AcceptRanges": "bytes",
762
- "ContentLength": "10",
763
- "ContentRange": "bytes 0-9/43",
764
- "ContentType": "text/plain",
765
- "ETag": "\"0d94420ffd0bc68cd3d152506b97a9cc\"",
766
- "LastModified": "Thu, 09 Oct 2014 22:57:28 GMT",
762
+ "ContentLength": "3191",
763
+ "ContentType": "image/jpeg",
764
+ "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
765
+ "LastModified": "Thu, 15 Dec 2016 01:19:41 GMT",
767
766
  "Metadata": {
768
767
  },
768
+ "TagCount": 2,
769
769
  "VersionId": "null"
770
770
  },
771
771
  "comments": {
@@ -774,9 +774,9 @@
774
774
  "output": {
775
775
  }
776
776
  },
777
- "description": "The following example retrieves an object for an S3 bucket. The request specifies the range header to retrieve a specific byte range.",
778
- "id": "to-retrieve-a-byte-range-of-an-object--1481832674603",
779
- "title": "To retrieve a byte range of an object "
777
+ "description": "The following example retrieves an object for an S3 bucket.",
778
+ "id": "to-retrieve-an-object-1481827837012",
779
+ "title": "To retrieve an object"
780
780
  }
781
781
  ],
782
782
  "GetObjectAcl": [
@@ -1567,14 +1567,13 @@
1567
1567
  "PutObject": [
1568
1568
  {
1569
1569
  "input": {
1570
- "Body": "c:\\HappyFace.jpg",
1570
+ "Body": "HappyFace.jpg",
1571
1571
  "Bucket": "examplebucket",
1572
- "Key": "HappyFace.jpg",
1573
- "Tagging": "key1=value1&key2=value2"
1572
+ "Key": "HappyFace.jpg"
1574
1573
  },
1575
1574
  "output": {
1576
1575
  "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
1577
- "VersionId": "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a"
1576
+ "VersionId": "tpf3zF08nBplQK1XLOefGskR7mGDwcDk"
1578
1577
  },
1579
1578
  "comments": {
1580
1579
  "input": {
@@ -1582,20 +1581,23 @@
1582
1581
  "output": {
1583
1582
  }
1584
1583
  },
1585
- "description": "The following example uploads an object. The request specifies optional object tags. The bucket is versioned, therefore S3 returns version ID of the newly created object.",
1586
- "id": "to-upload-an-object-and-specify-optional-tags-1481762310955",
1587
- "title": "To upload an object and specify optional tags"
1584
+ "description": "The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file syntax. S3 returns VersionId of the newly created object.",
1585
+ "id": "to-upload-an-object-1481760101010",
1586
+ "title": "To upload an object"
1588
1587
  },
1589
1588
  {
1590
1589
  "input": {
1591
- "ACL": "authenticated-read",
1592
1590
  "Body": "filetoupload",
1593
1591
  "Bucket": "examplebucket",
1594
- "Key": "exampleobject"
1592
+ "Key": "exampleobject",
1593
+ "Metadata": {
1594
+ "metadata1": "value1",
1595
+ "metadata2": "value2"
1596
+ }
1595
1597
  },
1596
1598
  "output": {
1597
1599
  "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
1598
- "VersionId": "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr"
1600
+ "VersionId": "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0"
1599
1601
  },
1600
1602
  "comments": {
1601
1603
  "input": {
@@ -1603,22 +1605,22 @@
1603
1605
  "output": {
1604
1606
  }
1605
1607
  },
1606
- "description": "The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response.",
1607
- "id": "to-upload-an-object-and-specify-canned-acl-1483397779571",
1608
- "title": "To upload an object and specify canned ACL."
1608
+ "description": "The following example creates an object. The request also specifies optional metadata. If the bucket is versioning enabled, S3 returns version ID in response.",
1609
+ "id": "to-upload-object-and-specify-user-defined-metadata-1483396974757",
1610
+ "title": "To upload object and specify user-defined metadata"
1609
1611
  },
1610
1612
  {
1611
1613
  "input": {
1612
- "Body": "filetoupload",
1614
+ "Body": "HappyFace.jpg",
1613
1615
  "Bucket": "examplebucket",
1614
- "Key": "exampleobject",
1616
+ "Key": "HappyFace.jpg",
1615
1617
  "ServerSideEncryption": "AES256",
1616
- "Tagging": "key1=value1&key2=value2"
1618
+ "StorageClass": "STANDARD_IA"
1617
1619
  },
1618
1620
  "output": {
1619
1621
  "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
1620
1622
  "ServerSideEncryption": "AES256",
1621
- "VersionId": "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt"
1623
+ "VersionId": "CG612hodqujkf8FaaNfp8U..FIhLROcp"
1622
1624
  },
1623
1625
  "comments": {
1624
1626
  "input": {
@@ -1626,9 +1628,9 @@
1626
1628
  "output": {
1627
1629
  }
1628
1630
  },
1629
- "description": "The following example uploads an object. The request specifies the optional server-side encryption option. The request also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response.",
1630
- "id": "to-upload-an-object-and-specify-server-side-encryption-and-object-tags-1483398331831",
1631
- "title": "To upload an object and specify server-side encryption and object tags"
1631
+ "description": "The following example uploads an object. The request specifies optional request headers to directs S3 to use specific storage class and use server-side encryption.",
1632
+ "id": "to-upload-an-object-(specify-optional-headers)",
1633
+ "title": "To upload an object (specify optional headers)"
1632
1634
  },
1633
1635
  {
1634
1636
  "input": {
@@ -1652,13 +1654,16 @@
1652
1654
  },
1653
1655
  {
1654
1656
  "input": {
1655
- "Body": "HappyFace.jpg",
1657
+ "Body": "filetoupload",
1656
1658
  "Bucket": "examplebucket",
1657
- "Key": "HappyFace.jpg"
1659
+ "Key": "exampleobject",
1660
+ "ServerSideEncryption": "AES256",
1661
+ "Tagging": "key1=value1&key2=value2"
1658
1662
  },
1659
1663
  "output": {
1660
1664
  "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
1661
- "VersionId": "tpf3zF08nBplQK1XLOefGskR7mGDwcDk"
1665
+ "ServerSideEncryption": "AES256",
1666
+ "VersionId": "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt"
1662
1667
  },
1663
1668
  "comments": {
1664
1669
  "input": {
@@ -1666,22 +1671,20 @@
1666
1671
  "output": {
1667
1672
  }
1668
1673
  },
1669
- "description": "The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file syntax. S3 returns VersionId of the newly created object.",
1670
- "id": "to-upload-an-object-1481760101010",
1671
- "title": "To upload an object"
1674
+ "description": "The following example uploads an object. The request specifies the optional server-side encryption option. The request also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response.",
1675
+ "id": "to-upload-an-object-and-specify-server-side-encryption-and-object-tags-1483398331831",
1676
+ "title": "To upload an object and specify server-side encryption and object tags"
1672
1677
  },
1673
1678
  {
1674
1679
  "input": {
1675
- "Body": "HappyFace.jpg",
1680
+ "Body": "c:\\HappyFace.jpg",
1676
1681
  "Bucket": "examplebucket",
1677
1682
  "Key": "HappyFace.jpg",
1678
- "ServerSideEncryption": "AES256",
1679
- "StorageClass": "STANDARD_IA"
1683
+ "Tagging": "key1=value1&key2=value2"
1680
1684
  },
1681
1685
  "output": {
1682
1686
  "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
1683
- "ServerSideEncryption": "AES256",
1684
- "VersionId": "CG612hodqujkf8FaaNfp8U..FIhLROcp"
1687
+ "VersionId": "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a"
1685
1688
  },
1686
1689
  "comments": {
1687
1690
  "input": {
@@ -1689,23 +1692,20 @@
1689
1692
  "output": {
1690
1693
  }
1691
1694
  },
1692
- "description": "The following example uploads an object. The request specifies optional request headers to directs S3 to use specific storage class and use server-side encryption.",
1693
- "id": "to-upload-an-object-(specify-optional-headers)",
1694
- "title": "To upload an object (specify optional headers)"
1695
+ "description": "The following example uploads an object. The request specifies optional object tags. The bucket is versioned, therefore S3 returns version ID of the newly created object.",
1696
+ "id": "to-upload-an-object-and-specify-optional-tags-1481762310955",
1697
+ "title": "To upload an object and specify optional tags"
1695
1698
  },
1696
1699
  {
1697
1700
  "input": {
1701
+ "ACL": "authenticated-read",
1698
1702
  "Body": "filetoupload",
1699
1703
  "Bucket": "examplebucket",
1700
- "Key": "exampleobject",
1701
- "Metadata": {
1702
- "metadata1": "value1",
1703
- "metadata2": "value2"
1704
- }
1704
+ "Key": "exampleobject"
1705
1705
  },
1706
1706
  "output": {
1707
1707
  "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
1708
- "VersionId": "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0"
1708
+ "VersionId": "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr"
1709
1709
  },
1710
1710
  "comments": {
1711
1711
  "input": {
@@ -1713,9 +1713,9 @@
1713
1713
  "output": {
1714
1714
  }
1715
1715
  },
1716
- "description": "The following example creates an object. The request also specifies optional metadata. If the bucket is versioning enabled, S3 returns version ID in response.",
1717
- "id": "to-upload-object-and-specify-user-defined-metadata-1483396974757",
1718
- "title": "To upload object and specify user-defined metadata"
1716
+ "description": "The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response.",
1717
+ "id": "to-upload-an-object-and-specify-canned-acl-1483397779571",
1718
+ "title": "To upload an object and specify canned ACL."
1719
1719
  }
1720
1720
  ],
1721
1721
  "PutObjectAcl": [
@@ -1826,14 +1826,15 @@
1826
1826
  "input": {
1827
1827
  "Bucket": "examplebucket",
1828
1828
  "CopySource": "/bucketname/sourceobjectkey",
1829
+ "CopySourceRange": "bytes=1-100000",
1829
1830
  "Key": "examplelargeobject",
1830
- "PartNumber": "1",
1831
+ "PartNumber": "2",
1831
1832
  "UploadId": "exampleuoh_10OhKhT7YukE9bjzTPRiuaCotmZM_pFngJFir9OZNrSr5cWa3cq3LZSUsfjI4FI7PkP91We7Nrw--"
1832
1833
  },
1833
1834
  "output": {
1834
1835
  "CopyPartResult": {
1835
- "ETag": "\"b0c6f0e7e054ab8fa2536a2677f8734d\"",
1836
- "LastModified": "2016-12-29T21:24:43.000Z"
1836
+ "ETag": "\"65d16d19e65a7508a51f043180edcc36\"",
1837
+ "LastModified": "2016-12-29T21:44:28.000Z"
1837
1838
  }
1838
1839
  },
1839
1840
  "comments": {
@@ -1842,23 +1843,22 @@
1842
1843
  "output": {
1843
1844
  }
1844
1845
  },
1845
- "description": "The following example uploads a part of a multipart upload by copying data from an existing object as data source.",
1846
- "id": "to-upload-a-part-by-copying-data-from-an-existing-object-as-data-source-1483046746348",
1847
- "title": "To upload a part by copying data from an existing object as data source"
1846
+ "description": "The following example uploads a part of a multipart upload by copying a specified byte range from an existing object as data source.",
1847
+ "id": "to-upload-a-part-by-copying-byte-range-from-an-existing-object-as-data-source-1483048068594",
1848
+ "title": "To upload a part by copying byte range from an existing object as data source"
1848
1849
  },
1849
1850
  {
1850
1851
  "input": {
1851
1852
  "Bucket": "examplebucket",
1852
1853
  "CopySource": "/bucketname/sourceobjectkey",
1853
- "CopySourceRange": "bytes=1-100000",
1854
1854
  "Key": "examplelargeobject",
1855
- "PartNumber": "2",
1855
+ "PartNumber": "1",
1856
1856
  "UploadId": "exampleuoh_10OhKhT7YukE9bjzTPRiuaCotmZM_pFngJFir9OZNrSr5cWa3cq3LZSUsfjI4FI7PkP91We7Nrw--"
1857
1857
  },
1858
1858
  "output": {
1859
1859
  "CopyPartResult": {
1860
- "ETag": "\"65d16d19e65a7508a51f043180edcc36\"",
1861
- "LastModified": "2016-12-29T21:44:28.000Z"
1860
+ "ETag": "\"b0c6f0e7e054ab8fa2536a2677f8734d\"",
1861
+ "LastModified": "2016-12-29T21:24:43.000Z"
1862
1862
  }
1863
1863
  },
1864
1864
  "comments": {
@@ -1867,9 +1867,9 @@
1867
1867
  "output": {
1868
1868
  }
1869
1869
  },
1870
- "description": "The following example uploads a part of a multipart upload by copying a specified byte range from an existing object as data source.",
1871
- "id": "to-upload-a-part-by-copying-byte-range-from-an-existing-object-as-data-source-1483048068594",
1872
- "title": "To upload a part by copying byte range from an existing object as data source"
1870
+ "description": "The following example uploads a part of a multipart upload by copying data from an existing object as data source.",
1871
+ "id": "to-upload-a-part-by-copying-data-from-an-existing-object-as-data-source-1483046746348",
1872
+ "title": "To upload a part by copying data from an existing object as data source"
1873
1873
  }
1874
1874
  ]
1875
1875
  }