Socket
Socket
Sign inDemoInstall

@aws-sdk/client-s3

Package Overview
Dependencies
Maintainers
5
Versions
433
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/client-s3 - npm Package Compare versions

Comparing version 3.608.0 to 3.609.0

8

dist-types/commands/CopyObjectCommand.d.ts

@@ -124,6 +124,6 @@ import { Command as $Command } from "@smithy/smithy-client";

* <dd>
* <p>When the request is an HTTP 1.1 request, the response is chunk encoded.
* When the request is not an HTTP 1.1 request, the response would not contain the <code>Content-Length</code>.
* You always need to read the entire response body to check if the copy succeeds.
* to keep the connection alive while we copy the data. </p>
* <p>When the request is an HTTP 1.1 request, the response is chunk encoded. When
* the request is not an HTTP 1.1 request, the response would not contain the
* <code>Content-Length</code>. You always need to read the entire response body
* to check if the copy succeeds. </p>
* <ul>

@@ -130,0 +130,0 @@ * <li>

@@ -219,7 +219,10 @@ import { Command as $Command } from "@smithy/smithy-client";

* @public
* @example To create a bucket
* @example To create a bucket in a specific region
* ```javascript
* // The following example creates a bucket.
* // The following example creates a bucket. The request specifies an AWS region where to create the bucket.
* const input = {
* "Bucket": "examplebucket"
* "Bucket": "examplebucket",
* "CreateBucketConfiguration": {
* "LocationConstraint": "eu-west-1"
* }
* };

@@ -230,16 +233,13 @@ * const command = new CreateBucketCommand(input);

* {
* "Location": "/examplebucket"
* "Location": "http://examplebucket.<Region>.s3.amazonaws.com/"
* }
* *\/
* // example id: to-create-a-bucket--1472851826060
* // example id: to-create-a-bucket-in-a-specific-region-1483399072992
* ```
*
* @example To create a bucket in a specific region
* @example To create a bucket
* ```javascript
* // The following example creates a bucket. The request specifies an AWS region where to create the bucket.
* // The following example creates a bucket.
* const input = {
* "Bucket": "examplebucket",
* "CreateBucketConfiguration": {
* "LocationConstraint": "eu-west-1"
* }
* "Bucket": "examplebucket"
* };

@@ -250,6 +250,6 @@ * const command = new CreateBucketCommand(input);

* {
* "Location": "http://examplebucket.<Region>.s3.amazonaws.com/"
* "Location": "/examplebucket"
* }
* *\/
* // example id: to-create-a-bucket-in-a-specific-region-1483399072992
* // example id: to-create-a-bucket--1472851826060
* ```

@@ -256,0 +256,0 @@ *

@@ -164,24 +164,24 @@ import { Command as $Command } from "@smithy/smithy-client";

* @public
* @example To delete an object (from a non-versioned bucket)
* @example To delete an object
* ```javascript
* // The following example deletes an object from a non-versioned bucket.
* // The following example deletes an object from an S3 bucket.
* const input = {
* "Bucket": "ExampleBucket",
* "Key": "HappyFace.jpg"
* "Bucket": "examplebucket",
* "Key": "objectkey.jpg"
* };
* const command = new DeleteObjectCommand(input);
* await client.send(command);
* // example id: to-delete-an-object-from-a-non-versioned-bucket-1481588533089
* // example id: to-delete-an-object-1472850136595
* ```
*
* @example To delete an object
* @example To delete an object (from a non-versioned bucket)
* ```javascript
* // The following example deletes an object from an S3 bucket.
* // The following example deletes an object from a non-versioned bucket.
* const input = {
* "Bucket": "examplebucket",
* "Key": "objectkey.jpg"
* "Bucket": "ExampleBucket",
* "Key": "HappyFace.jpg"
* };
* const command = new DeleteObjectCommand(input);
* await client.send(command);
* // example id: to-delete-an-object-1472850136595
* // example id: to-delete-an-object-from-a-non-versioned-bucket-1481588533089
* ```

@@ -188,0 +188,0 @@ *

@@ -89,3 +89,3 @@ import { Command as $Command } from "@smithy/smithy-client";

* <code>s3:DeleteObjectVersion</code>
* </b> - To delete a specific version of an object from a versiong-enabled bucket, you must specify the <code>s3:DeleteObjectVersion</code> permission.</p>
* </b> - To delete a specific version of an object from a versioning-enabled bucket, you must specify the <code>s3:DeleteObjectVersion</code> permission.</p>
* </li>

@@ -92,0 +92,0 @@ * </ul>

@@ -83,9 +83,8 @@ import { Command as $Command } from "@smithy/smithy-client";

* @public
* @example To remove tag set from an object version
* @example To remove tag set from an object
* ```javascript
* // The following example removes tag set associated with the specified object version. The request specifies both the object key and object version.
* // 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.
* const input = {
* "Bucket": "examplebucket",
* "Key": "HappyFace.jpg",
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
* "Key": "HappyFace.jpg"
* };

@@ -96,14 +95,15 @@ * const command = new DeleteObjectTaggingCommand(input);

* {
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
* "VersionId": "null"
* }
* *\/
* // example id: to-remove-tag-set-from-an-object-version-1483145285913
* // example id: to-remove-tag-set-from-an-object-1483145342862
* ```
*
* @example To remove tag set from an object
* @example To remove tag set from an object version
* ```javascript
* // 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.
* // The following example removes tag set associated with the specified object version. The request specifies both the object key and object version.
* const input = {
* "Bucket": "examplebucket",
* "Key": "HappyFace.jpg"
* "Key": "HappyFace.jpg",
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
* };

@@ -114,6 +114,6 @@ * const command = new DeleteObjectTaggingCommand(input);

* {
* "VersionId": "null"
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
* }
* *\/
* // example id: to-remove-tag-set-from-an-object-1483145342862
* // example id: to-remove-tag-set-from-an-object-version-1483145285913
* ```

@@ -120,0 +120,0 @@ *

@@ -279,9 +279,8 @@ import { Command as $Command } from "@smithy/smithy-client";

* @public
* @example To retrieve a byte range of an object
* @example To retrieve an object
* ```javascript
* // The following example retrieves an object for an S3 bucket. The request specifies the range header to retrieve a specific byte range.
* // The following example retrieves an object for an S3 bucket.
* const input = {
* "Bucket": "examplebucket",
* "Key": "SampleFile.txt",
* "Range": "bytes=0-9"
* "Key": "HappyFace.jpg"
* };

@@ -293,20 +292,21 @@ * const command = new GetObjectCommand(input);

* "AcceptRanges": "bytes",
* "ContentLength": "10",
* "ContentRange": "bytes 0-9/43",
* "ContentType": "text/plain",
* "ETag": "\"0d94420ffd0bc68cd3d152506b97a9cc\"",
* "LastModified": "Thu, 09 Oct 2014 22:57:28 GMT",
* "ContentLength": "3191",
* "ContentType": "image/jpeg",
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
* "LastModified": "Thu, 15 Dec 2016 01:19:41 GMT",
* "Metadata": {},
* "TagCount": 2,
* "VersionId": "null"
* }
* *\/
* // example id: to-retrieve-a-byte-range-of-an-object--1481832674603
* // example id: to-retrieve-an-object-1481827837012
* ```
*
* @example To retrieve an object
* @example To retrieve a byte range of an object
* ```javascript
* // The following example retrieves an object for an S3 bucket.
* // The following example retrieves an object for an S3 bucket. The request specifies the range header to retrieve a specific byte range.
* const input = {
* "Bucket": "examplebucket",
* "Key": "HappyFace.jpg"
* "Key": "SampleFile.txt",
* "Range": "bytes=0-9"
* };

@@ -318,12 +318,12 @@ * const command = new GetObjectCommand(input);

* "AcceptRanges": "bytes",
* "ContentLength": "3191",
* "ContentType": "image/jpeg",
* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
* "LastModified": "Thu, 15 Dec 2016 01:19:41 GMT",
* "ContentLength": "10",
* "ContentRange": "bytes 0-9/43",
* "ContentType": "text/plain",
* "ETag": "\"0d94420ffd0bc68cd3d152506b97a9cc\"",
* "LastModified": "Thu, 09 Oct 2014 22:57:28 GMT",
* "Metadata": {},
* "TagCount": 2,
* "VersionId": "null"
* }
* *\/
* // example id: to-retrieve-an-object-1481827837012
* // example id: to-retrieve-a-byte-range-of-an-object--1481832674603
* ```

@@ -330,0 +330,0 @@ *

@@ -99,8 +99,9 @@ import { Command as $Command } from "@smithy/smithy-client";

* @public
* @example To retrieve tag set of an object
* @example To retrieve tag set of a specific object version
* ```javascript
* // The following example retrieves tag set of an object.
* // The following example retrieves tag set of an object. The request specifies object version.
* const input = {
* "Bucket": "examplebucket",
* "Key": "HappyFace.jpg"
* "Key": "exampleobject",
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
* };

@@ -113,23 +114,18 @@ * const command = new GetObjectTaggingCommand(input);

* {
* "Key": "Key4",
* "Value": "Value4"
* },
* {
* "Key": "Key3",
* "Value": "Value3"
* "Key": "Key1",
* "Value": "Value1"
* }
* ],
* "VersionId": "null"
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
* }
* *\/
* // example id: to-retrieve-tag-set-of-an-object-1481833847896
* // example id: to-retrieve-tag-set-of-a-specific-object-version-1483400283663
* ```
*
* @example To retrieve tag set of a specific object version
* @example To retrieve tag set of an object
* ```javascript
* // The following example retrieves tag set of an object. The request specifies object version.
* // The following example retrieves tag set of an object.
* const input = {
* "Bucket": "examplebucket",
* "Key": "exampleobject",
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
* "Key": "HappyFace.jpg"
* };

@@ -142,10 +138,14 @@ * const command = new GetObjectTaggingCommand(input);

* {
* "Key": "Key1",
* "Value": "Value1"
* "Key": "Key4",
* "Value": "Value4"
* },
* {
* "Key": "Key3",
* "Value": "Value3"
* }
* ],
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
* "VersionId": "null"
* }
* *\/
* // example id: to-retrieve-tag-set-of-a-specific-object-version-1483400283663
* // example id: to-retrieve-tag-set-of-an-object-1481833847896
* ```

@@ -152,0 +152,0 @@ *

@@ -179,2 +179,8 @@ import { Command as $Command } from "@smithy/smithy-client";

* Range: "STRING_VALUE",
* ResponseCacheControl: "STRING_VALUE",
* ResponseContentDisposition: "STRING_VALUE",
* ResponseContentEncoding: "STRING_VALUE",
* ResponseContentLanguage: "STRING_VALUE",
* ResponseContentType: "STRING_VALUE",
* ResponseExpires: new Date("TIMESTAMP"),
* VersionId: "STRING_VALUE",

@@ -181,0 +187,0 @@ * SSECustomerAlgorithm: "STRING_VALUE",

@@ -237,11 +237,10 @@ import { Command as $Command } from "@smithy/smithy-client";

* @public
* @example To upload an object and specify server-side encryption and object tags
* @example To upload an object and specify canned ACL.
* ```javascript
* // 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.
* // 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.
* const input = {
* "ACL": "authenticated-read",
* "Body": "filetoupload",
* "Bucket": "examplebucket",
* "Key": "exampleobject",
* "ServerSideEncryption": "AES256",
* "Tagging": "key1=value1&key2=value2"
* "Key": "exampleobject"
* };

@@ -253,16 +252,16 @@ * const command = new PutObjectCommand(input);

* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
* "ServerSideEncryption": "AES256",
* "VersionId": "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt"
* "VersionId": "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr"
* }
* *\/
* // example id: to-upload-an-object-and-specify-server-side-encryption-and-object-tags-1483398331831
* // example id: to-upload-an-object-and-specify-canned-acl-1483397779571
* ```
*
* @example To create an object.
* @example To upload an object and specify optional tags
* ```javascript
* // The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response.
* // 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.
* const input = {
* "Body": "filetoupload",
* "Body": "c:\\HappyFace.jpg",
* "Bucket": "examplebucket",
* "Key": "objectkey"
* "Key": "HappyFace.jpg",
* "Tagging": "key1=value1&key2=value2"
* };

@@ -274,17 +273,17 @@ * const command = new PutObjectCommand(input);

* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
* "VersionId": "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ"
* "VersionId": "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a"
* }
* *\/
* // example id: to-create-an-object-1483147613675
* // example id: to-upload-an-object-and-specify-optional-tags-1481762310955
* ```
*
* @example To upload an object (specify optional headers)
* @example To upload an object and specify server-side encryption and object tags
* ```javascript
* // 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.
* // 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.
* const input = {
* "Body": "HappyFace.jpg",
* "Body": "filetoupload",
* "Bucket": "examplebucket",
* "Key": "HappyFace.jpg",
* "Key": "exampleobject",
* "ServerSideEncryption": "AES256",
* "StorageClass": "STANDARD_IA"
* "Tagging": "key1=value1&key2=value2"
* };

@@ -297,16 +296,15 @@ * const command = new PutObjectCommand(input);

* "ServerSideEncryption": "AES256",
* "VersionId": "CG612hodqujkf8FaaNfp8U..FIhLROcp"
* "VersionId": "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt"
* }
* *\/
* // example id: to-upload-an-object-(specify-optional-headers)
* // example id: to-upload-an-object-and-specify-server-side-encryption-and-object-tags-1483398331831
* ```
*
* @example To upload an object and specify optional tags
* @example To upload an object
* ```javascript
* // 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.
* // 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.
* const input = {
* "Body": "c:\\HappyFace.jpg",
* "Body": "HappyFace.jpg",
* "Bucket": "examplebucket",
* "Key": "HappyFace.jpg",
* "Tagging": "key1=value1&key2=value2"
* "Key": "HappyFace.jpg"
* };

@@ -318,19 +316,15 @@ * const command = new PutObjectCommand(input);

* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
* "VersionId": "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a"
* "VersionId": "tpf3zF08nBplQK1XLOefGskR7mGDwcDk"
* }
* *\/
* // example id: to-upload-an-object-and-specify-optional-tags-1481762310955
* // example id: to-upload-an-object-1481760101010
* ```
*
* @example To upload object and specify user-defined metadata
* @example To create an object.
* ```javascript
* // The following example creates an object. The request also specifies optional metadata. If the bucket is versioning enabled, S3 returns version ID in response.
* // The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response.
* const input = {
* "Body": "filetoupload",
* "Bucket": "examplebucket",
* "Key": "exampleobject",
* "Metadata": {
* "metadata1": "value1",
* "metadata2": "value2"
* }
* "Key": "objectkey"
* };

@@ -342,16 +336,17 @@ * const command = new PutObjectCommand(input);

* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
* "VersionId": "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0"
* "VersionId": "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ"
* }
* *\/
* // example id: to-upload-object-and-specify-user-defined-metadata-1483396974757
* // example id: to-create-an-object-1483147613675
* ```
*
* @example To upload an object and specify canned ACL.
* @example To upload an object (specify optional headers)
* ```javascript
* // 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.
* // 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.
* const input = {
* "ACL": "authenticated-read",
* "Body": "filetoupload",
* "Body": "HappyFace.jpg",
* "Bucket": "examplebucket",
* "Key": "exampleobject"
* "Key": "HappyFace.jpg",
* "ServerSideEncryption": "AES256",
* "StorageClass": "STANDARD_IA"
* };

@@ -363,15 +358,20 @@ * const command = new PutObjectCommand(input);

* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
* "VersionId": "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr"
* "ServerSideEncryption": "AES256",
* "VersionId": "CG612hodqujkf8FaaNfp8U..FIhLROcp"
* }
* *\/
* // example id: to-upload-an-object-and-specify-canned-acl-1483397779571
* // example id: to-upload-an-object-(specify-optional-headers)
* ```
*
* @example To upload an object
* @example To upload object and specify user-defined metadata
* ```javascript
* // 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.
* // The following example creates an object. The request also specifies optional metadata. If the bucket is versioning enabled, S3 returns version ID in response.
* const input = {
* "Body": "HappyFace.jpg",
* "Body": "filetoupload",
* "Bucket": "examplebucket",
* "Key": "HappyFace.jpg"
* "Key": "exampleobject",
* "Metadata": {
* "metadata1": "value1",
* "metadata2": "value2"
* }
* };

@@ -383,6 +383,6 @@ * const command = new PutObjectCommand(input);

* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
* "VersionId": "tpf3zF08nBplQK1XLOefGskR7mGDwcDk"
* "VersionId": "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0"
* }
* *\/
* // example id: to-upload-an-object-1481760101010
* // example id: to-upload-object-and-specify-user-defined-metadata-1483396974757
* ```

@@ -389,0 +389,0 @@ *

@@ -86,3 +86,3 @@ import { Command as $Command } from "@smithy/smithy-client";

* <p>For information about permissions required to use the multipart upload API, see
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuAndPermissions.html">Multipart Upload and Permissions</a> in the
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/mpuoverview.html#mpuAndPermissions">Multipart upload API and permissions</a> in the
* <i>Amazon S3 User Guide</i>.</p>

@@ -101,5 +101,7 @@ * </li>

* </b> permission in
* the <code>Action</code> element of a policy to read the object
* .
* By default, the session is in the <code>ReadWrite</code> mode. If you want to restrict the access, you can explicitly set the <code>s3express:SessionMode</code> condition key to <code>ReadOnly</code> on the copy source bucket.</p>
* the <code>Action</code> element of a policy to read the object. By
* default, the session is in the <code>ReadWrite</code> mode. If you
* want to restrict the access, you can explicitly set the
* <code>s3express:SessionMode</code> condition key to
* <code>ReadOnly</code> on the copy source bucket.</p>
* </li>

@@ -269,10 +271,11 @@ * <li>

* @public
* @example To upload a part by copying data from an existing object as data source
* @example To upload a part by copying byte range from an existing object as data source
* ```javascript
* // The following example uploads a part of a multipart upload by copying data from an existing object as data source.
* // The following example uploads a part of a multipart upload by copying a specified byte range from an existing object as data source.
* const input = {
* "Bucket": "examplebucket",
* "CopySource": "/bucketname/sourceobjectkey",
* "CopySourceRange": "bytes=1-100000",
* "Key": "examplelargeobject",
* "PartNumber": "1",
* "PartNumber": "2",
* "UploadId": "exampleuoh_10OhKhT7YukE9bjzTPRiuaCotmZM_pFngJFir9OZNrSr5cWa3cq3LZSUsfjI4FI7PkP91We7Nrw--"

@@ -285,19 +288,18 @@ * };

* "CopyPartResult": {
* "ETag": "\"b0c6f0e7e054ab8fa2536a2677f8734d\"",
* "LastModified": "2016-12-29T21:24:43.000Z"
* "ETag": "\"65d16d19e65a7508a51f043180edcc36\"",
* "LastModified": "2016-12-29T21:44:28.000Z"
* }
* }
* *\/
* // example id: to-upload-a-part-by-copying-data-from-an-existing-object-as-data-source-1483046746348
* // example id: to-upload-a-part-by-copying-byte-range-from-an-existing-object-as-data-source-1483048068594
* ```
*
* @example To upload a part by copying byte range from an existing object as data source
* @example To upload a part by copying data from an existing object as data source
* ```javascript
* // The following example uploads a part of a multipart upload by copying a specified byte range from an existing object as data source.
* // The following example uploads a part of a multipart upload by copying data from an existing object as data source.
* const input = {
* "Bucket": "examplebucket",
* "CopySource": "/bucketname/sourceobjectkey",
* "CopySourceRange": "bytes=1-100000",
* "Key": "examplelargeobject",
* "PartNumber": "2",
* "PartNumber": "1",
* "UploadId": "exampleuoh_10OhKhT7YukE9bjzTPRiuaCotmZM_pFngJFir9OZNrSr5cWa3cq3LZSUsfjI4FI7PkP91We7Nrw--"

@@ -310,8 +312,8 @@ * };

* "CopyPartResult": {
* "ETag": "\"65d16d19e65a7508a51f043180edcc36\"",
* "LastModified": "2016-12-29T21:44:28.000Z"
* "ETag": "\"b0c6f0e7e054ab8fa2536a2677f8734d\"",
* "LastModified": "2016-12-29T21:24:43.000Z"
* }
* }
* *\/
* // example id: to-upload-a-part-by-copying-byte-range-from-an-existing-object-as-data-source-1483048068594
* // example id: to-upload-a-part-by-copying-data-from-an-existing-object-as-data-source-1483046746348
* ```

@@ -318,0 +320,0 @@ *

{
"name": "@aws-sdk/client-s3",
"description": "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
"version": "3.608.0",
"version": "3.609.0",
"scripts": {

@@ -29,60 +29,60 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",

"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/client-sso-oidc": "3.606.0",
"@aws-sdk/client-sts": "3.606.0",
"@aws-sdk/core": "3.598.0",
"@aws-sdk/credential-provider-node": "3.600.0",
"@aws-sdk/middleware-bucket-endpoint": "3.598.0",
"@aws-sdk/middleware-expect-continue": "3.598.0",
"@aws-sdk/middleware-flexible-checksums": "3.598.0",
"@aws-sdk/middleware-host-header": "3.598.0",
"@aws-sdk/middleware-location-constraint": "3.598.0",
"@aws-sdk/middleware-logger": "3.598.0",
"@aws-sdk/middleware-recursion-detection": "3.598.0",
"@aws-sdk/middleware-sdk-s3": "3.598.0",
"@aws-sdk/middleware-signing": "3.598.0",
"@aws-sdk/middleware-ssec": "3.598.0",
"@aws-sdk/middleware-user-agent": "3.598.0",
"@aws-sdk/region-config-resolver": "3.598.0",
"@aws-sdk/signature-v4-multi-region": "3.598.0",
"@aws-sdk/types": "3.598.0",
"@aws-sdk/util-endpoints": "3.598.0",
"@aws-sdk/util-user-agent-browser": "3.598.0",
"@aws-sdk/util-user-agent-node": "3.598.0",
"@aws-sdk/xml-builder": "3.598.0",
"@smithy/config-resolver": "^3.0.2",
"@smithy/core": "^2.2.1",
"@smithy/eventstream-serde-browser": "^3.0.2",
"@smithy/eventstream-serde-config-resolver": "^3.0.1",
"@smithy/eventstream-serde-node": "^3.0.2",
"@smithy/fetch-http-handler": "^3.0.2",
"@smithy/hash-blob-browser": "^3.1.0",
"@smithy/hash-node": "^3.0.1",
"@smithy/hash-stream-node": "^3.1.0",
"@smithy/invalid-dependency": "^3.0.1",
"@smithy/md5-js": "^3.0.1",
"@smithy/middleware-content-length": "^3.0.1",
"@smithy/middleware-endpoint": "^3.0.2",
"@smithy/middleware-retry": "^3.0.4",
"@smithy/middleware-serde": "^3.0.1",
"@smithy/middleware-stack": "^3.0.1",
"@smithy/node-config-provider": "^3.1.1",
"@smithy/node-http-handler": "^3.0.1",
"@smithy/protocol-http": "^4.0.1",
"@smithy/smithy-client": "^3.1.2",
"@smithy/types": "^3.1.0",
"@smithy/url-parser": "^3.0.1",
"@aws-sdk/client-sso-oidc": "3.609.0",
"@aws-sdk/client-sts": "3.609.0",
"@aws-sdk/core": "3.609.0",
"@aws-sdk/credential-provider-node": "3.609.0",
"@aws-sdk/middleware-bucket-endpoint": "3.609.0",
"@aws-sdk/middleware-expect-continue": "3.609.0",
"@aws-sdk/middleware-flexible-checksums": "3.609.0",
"@aws-sdk/middleware-host-header": "3.609.0",
"@aws-sdk/middleware-location-constraint": "3.609.0",
"@aws-sdk/middleware-logger": "3.609.0",
"@aws-sdk/middleware-recursion-detection": "3.609.0",
"@aws-sdk/middleware-sdk-s3": "3.609.0",
"@aws-sdk/middleware-signing": "3.609.0",
"@aws-sdk/middleware-ssec": "3.609.0",
"@aws-sdk/middleware-user-agent": "3.609.0",
"@aws-sdk/region-config-resolver": "3.609.0",
"@aws-sdk/signature-v4-multi-region": "3.609.0",
"@aws-sdk/types": "3.609.0",
"@aws-sdk/util-endpoints": "3.609.0",
"@aws-sdk/util-user-agent-browser": "3.609.0",
"@aws-sdk/util-user-agent-node": "3.609.0",
"@aws-sdk/xml-builder": "3.609.0",
"@smithy/config-resolver": "^3.0.4",
"@smithy/core": "^2.2.4",
"@smithy/eventstream-serde-browser": "^3.0.4",
"@smithy/eventstream-serde-config-resolver": "^3.0.3",
"@smithy/eventstream-serde-node": "^3.0.4",
"@smithy/fetch-http-handler": "^3.2.0",
"@smithy/hash-blob-browser": "^3.1.2",
"@smithy/hash-node": "^3.0.3",
"@smithy/hash-stream-node": "^3.1.2",
"@smithy/invalid-dependency": "^3.0.3",
"@smithy/md5-js": "^3.0.3",
"@smithy/middleware-content-length": "^3.0.3",
"@smithy/middleware-endpoint": "^3.0.4",
"@smithy/middleware-retry": "^3.0.7",
"@smithy/middleware-serde": "^3.0.3",
"@smithy/middleware-stack": "^3.0.3",
"@smithy/node-config-provider": "^3.1.3",
"@smithy/node-http-handler": "^3.1.1",
"@smithy/protocol-http": "^4.0.3",
"@smithy/smithy-client": "^3.1.5",
"@smithy/types": "^3.3.0",
"@smithy/url-parser": "^3.0.3",
"@smithy/util-base64": "^3.0.0",
"@smithy/util-body-length-browser": "^3.0.0",
"@smithy/util-body-length-node": "^3.0.0",
"@smithy/util-defaults-mode-browser": "^3.0.4",
"@smithy/util-defaults-mode-node": "^3.0.4",
"@smithy/util-endpoints": "^2.0.2",
"@smithy/util-retry": "^3.0.1",
"@smithy/util-stream": "^3.0.2",
"@smithy/util-defaults-mode-browser": "^3.0.7",
"@smithy/util-defaults-mode-node": "^3.0.7",
"@smithy/util-endpoints": "^2.0.4",
"@smithy/util-retry": "^3.0.3",
"@smithy/util-stream": "^3.0.5",
"@smithy/util-utf8": "^3.0.0",
"@smithy/util-waiter": "^3.0.1",
"@smithy/util-waiter": "^3.1.2",
"tslib": "^2.6.2"
},
"devDependencies": {
"@aws-sdk/signature-v4-crt": "3.598.0",
"@aws-sdk/signature-v4-crt": "3.609.0",
"@tsconfig/node16": "16.1.3",

@@ -89,0 +89,0 @@ "@types/chai": "^4.2.11",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc