@aws-lite/s3-types 0.2.4 → 0.2.6
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.
- package/index.d.ts +87 -87
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -97,518 +97,518 @@ declare interface AwsLiteS3 {
|
|
|
97
97
|
/**
|
|
98
98
|
* @description
|
|
99
99
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_AbortMultipartUpload.html S3: AbortMultipartUpload}
|
|
100
|
-
* - aws-lite docs: {@link https://github.com/
|
|
100
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#AbortMultipartUpload S3: AbortMultipartUpload}
|
|
101
101
|
*/
|
|
102
102
|
AbortMultipartUpload: (input: { Bucket: string, Key: string, UploadId: string, ExpectedBucketOwner?: string, RequestPayer?: string }) => Promise<AbortMultipartUploadResponse>
|
|
103
103
|
/**
|
|
104
104
|
* @description
|
|
105
105
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_CompleteMultipartUpload.html S3: CompleteMultipartUpload}
|
|
106
|
-
* - aws-lite docs: {@link https://github.com/
|
|
106
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#CompleteMultipartUpload S3: CompleteMultipartUpload}
|
|
107
107
|
*/
|
|
108
108
|
CompleteMultipartUpload: (input: { Bucket: string, Key: string, UploadId: string, MultipartUpload?: Record<string, any>, ChecksumCRC32?: string, ChecksumCRC32C?: string, ChecksumSHA1?: string, ChecksumSHA256?: string, RequestPayer?: string, ExpectedBucketOwner?: string, SSECustomerAlgorithm?: string, SSECustomerKey?: string, SSECustomerKeyMD5?: string }) => Promise<CompleteMultipartUploadResponse>
|
|
109
109
|
/**
|
|
110
110
|
* @description
|
|
111
111
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_CopyObject.html S3: CopyObject}
|
|
112
|
-
* - aws-lite docs: {@link https://github.com/
|
|
112
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#CopyObject S3: CopyObject}
|
|
113
113
|
*/
|
|
114
114
|
CopyObject: (input: { Bucket: string, Key: string, ACL?: string, CacheControl?: string, ChecksumAlgorithm?: string, ContentDisposition?: string, ContentEncoding?: string, ContentLanguage?: string, ContentType?: string, CopySource?: string, CopySourceIfMatch?: string, CopySourceIfModifiedSince?: string, CopySourceIfNoneMatch?: string, CopySourceIfUnmodifiedSince?: string, Expires?: string, GrantFullControl?: string, GrantRead?: string, GrantReadACP?: string, GrantWriteACP?: string, MetadataDirective?: string, TaggingDirective?: string, ServerSideEncryption?: string, StorageClass?: string, WebsiteRedirectLocation?: string, SSECustomerAlgorithm?: string, SSECustomerKey?: string, SSECustomerKeyMD5?: string, SSEKMSKeyId?: string, SSEKMSEncryptionContext?: string, BucketKeyEnabled?: string, CopySourceSSECustomerAlgorithm?: string, CopySourceSSECustomerKey?: string, CopySourceSSECustomerKeyMD5?: string, RequestPayer?: string, Tagging?: string, ObjectLockMode?: string, ObjectLockRetainUntilDate?: string, ObjectLockLegalHoldStatus?: string, ExpectedBucketOwner?: string, ExpectedSourceBucketOwner?: string }) => Promise<CopyObjectResponse>
|
|
115
115
|
/**
|
|
116
116
|
* @description
|
|
117
117
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html S3: CreateBucket}
|
|
118
|
-
* - aws-lite docs: {@link https://github.com/
|
|
118
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#CreateBucket S3: CreateBucket}
|
|
119
119
|
*/
|
|
120
120
|
CreateBucket: (input: { Bucket: string, CreateBucketConfiguration?: Record<string, any>, ACL?: string, GrantFullControl?: string, GrantRead?: string, GrantReadACP?: string, GrantWrite?: string, GrantWriteACP?: string, ObjectLockEnabledForBucket?: string, ObjectOwnership?: string }) => Promise<CreateBucketResponse>
|
|
121
121
|
/**
|
|
122
122
|
* @description
|
|
123
123
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html S3: CreateMultipartUpload}
|
|
124
|
-
* - aws-lite docs: {@link https://github.com/
|
|
124
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#CreateMultipartUpload S3: CreateMultipartUpload}
|
|
125
125
|
*/
|
|
126
126
|
CreateMultipartUpload: (input: { Bucket: string, Key: string, ACL?: string, CacheControl?: string, ContentDisposition?: string, ContentEncoding?: string, ContentLanguage?: string, ContentType?: string, Expires?: string, GrantFullControl?: string, GrantRead?: string, GrantReadACP?: string, GrantWriteACP?: string, ServerSideEncryption?: string, StorageClass?: string, WebsiteRedirectLocation?: string, SSECustomerAlgorithm?: string, SSECustomerKeyMD5?: string, SSEKMSKeyId?: string, SSEKMSEncryptionContext?: string, BucketKeyEnabled?: string, RequestPayer?: string, Tagging?: string, ObjectLockMode?: string, ObjectLockRetainUntilDate?: string, ObjectLockLegalHoldStatus?: string, ExpectedBucketOwner?: string, ChecksumAlgorithm?: string }) => Promise<CreateMultipartUploadResponse>
|
|
127
127
|
/**
|
|
128
128
|
* @description
|
|
129
129
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucket.html S3: DeleteBucket}
|
|
130
|
-
* - aws-lite docs: {@link https://github.com/
|
|
130
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeleteBucket S3: DeleteBucket}
|
|
131
131
|
*/
|
|
132
132
|
DeleteBucket: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<DeleteBucketResponse>
|
|
133
133
|
/**
|
|
134
134
|
* @description
|
|
135
135
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketAnalyticsConfiguration.html S3: DeleteBucketAnalyticsConfiguration}
|
|
136
|
-
* - aws-lite docs: {@link https://github.com/
|
|
136
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeleteBucketAnalyticsConfiguration S3: DeleteBucketAnalyticsConfiguration}
|
|
137
137
|
*/
|
|
138
138
|
DeleteBucketAnalyticsConfiguration: (input: { Bucket: string, Id: string, ExpectedBucketOwner?: string }) => Promise<DeleteBucketAnalyticsConfigurationResponse>
|
|
139
139
|
/**
|
|
140
140
|
* @description
|
|
141
141
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketCors.html S3: DeleteBucketCors}
|
|
142
|
-
* - aws-lite docs: {@link https://github.com/
|
|
142
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeleteBucketCors S3: DeleteBucketCors}
|
|
143
143
|
*/
|
|
144
144
|
DeleteBucketCors: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<DeleteBucketCorsResponse>
|
|
145
145
|
/**
|
|
146
146
|
* @description
|
|
147
147
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketEncryption.html S3: DeleteBucketEncryption}
|
|
148
|
-
* - aws-lite docs: {@link https://github.com/
|
|
148
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeleteBucketEncryption S3: DeleteBucketEncryption}
|
|
149
149
|
*/
|
|
150
150
|
DeleteBucketEncryption: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<DeleteBucketEncryptionResponse>
|
|
151
151
|
/**
|
|
152
152
|
* @description
|
|
153
153
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketIntelligentTieringConfiguration.html S3: DeleteBucketIntelligentTieringConfiguration}
|
|
154
|
-
* - aws-lite docs: {@link https://github.com/
|
|
154
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeleteBucketIntelligentTieringConfiguration S3: DeleteBucketIntelligentTieringConfiguration}
|
|
155
155
|
*/
|
|
156
156
|
DeleteBucketIntelligentTieringConfiguration: (input: { Bucket: string, Id: string }) => Promise<DeleteBucketIntelligentTieringConfigurationResponse>
|
|
157
157
|
/**
|
|
158
158
|
* @description
|
|
159
159
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketInventoryConfiguration.html S3: DeleteBucketInventoryConfiguration}
|
|
160
|
-
* - aws-lite docs: {@link https://github.com/
|
|
160
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeleteBucketInventoryConfiguration S3: DeleteBucketInventoryConfiguration}
|
|
161
161
|
*/
|
|
162
162
|
DeleteBucketInventoryConfiguration: (input: { Bucket: string, Id: string, ExpectedBucketOwner?: string }) => Promise<DeleteBucketInventoryConfigurationResponse>
|
|
163
163
|
/**
|
|
164
164
|
* @description
|
|
165
165
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketLifecycle.html S3: DeleteBucketLifecycle}
|
|
166
|
-
* - aws-lite docs: {@link https://github.com/
|
|
166
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeleteBucketLifecycle S3: DeleteBucketLifecycle}
|
|
167
167
|
*/
|
|
168
168
|
DeleteBucketLifecycle: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<DeleteBucketLifecycleResponse>
|
|
169
169
|
/**
|
|
170
170
|
* @description
|
|
171
171
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketMetricsConfiguration.html S3: DeleteBucketMetricsConfiguration}
|
|
172
|
-
* - aws-lite docs: {@link https://github.com/
|
|
172
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeleteBucketMetricsConfiguration S3: DeleteBucketMetricsConfiguration}
|
|
173
173
|
*/
|
|
174
174
|
DeleteBucketMetricsConfiguration: (input: { Bucket: string, Id: string, ExpectedBucketOwner?: string }) => Promise<DeleteBucketMetricsConfigurationResponse>
|
|
175
175
|
/**
|
|
176
176
|
* @description
|
|
177
177
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketOwnershipControls.html S3: DeleteBucketOwnershipControls}
|
|
178
|
-
* - aws-lite docs: {@link https://github.com/
|
|
178
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeleteBucketOwnershipControls S3: DeleteBucketOwnershipControls}
|
|
179
179
|
*/
|
|
180
180
|
DeleteBucketOwnershipControls: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<DeleteBucketOwnershipControlsResponse>
|
|
181
181
|
/**
|
|
182
182
|
* @description
|
|
183
183
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketPolicy.html S3: DeleteBucketPolicy}
|
|
184
|
-
* - aws-lite docs: {@link https://github.com/
|
|
184
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeleteBucketPolicy S3: DeleteBucketPolicy}
|
|
185
185
|
*/
|
|
186
186
|
DeleteBucketPolicy: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<DeleteBucketPolicyResponse>
|
|
187
187
|
/**
|
|
188
188
|
* @description
|
|
189
189
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketReplication.html S3: DeleteBucketReplication}
|
|
190
|
-
* - aws-lite docs: {@link https://github.com/
|
|
190
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeleteBucketReplication S3: DeleteBucketReplication}
|
|
191
191
|
*/
|
|
192
192
|
DeleteBucketReplication: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<DeleteBucketReplicationResponse>
|
|
193
193
|
/**
|
|
194
194
|
* @description
|
|
195
195
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketTagging.html S3: DeleteBucketTagging}
|
|
196
|
-
* - aws-lite docs: {@link https://github.com/
|
|
196
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeleteBucketTagging S3: DeleteBucketTagging}
|
|
197
197
|
*/
|
|
198
198
|
DeleteBucketTagging: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<DeleteBucketTaggingResponse>
|
|
199
199
|
/**
|
|
200
200
|
* @description
|
|
201
201
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketWebsite.html S3: DeleteBucketWebsite}
|
|
202
|
-
* - aws-lite docs: {@link https://github.com/
|
|
202
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeleteBucketWebsite S3: DeleteBucketWebsite}
|
|
203
203
|
*/
|
|
204
204
|
DeleteBucketWebsite: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<DeleteBucketWebsiteResponse>
|
|
205
205
|
/**
|
|
206
206
|
* @description
|
|
207
207
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObject.html S3: DeleteObject}
|
|
208
|
-
* - aws-lite docs: {@link https://github.com/
|
|
208
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeleteObject S3: DeleteObject}
|
|
209
209
|
*/
|
|
210
210
|
DeleteObject: (input: { Bucket: string, Key: string, VersionId?: string, MFA?: string, RequestPayer?: string, BypassGovernanceRetention?: string, ExpectedBucketOwner?: string }) => Promise<DeleteObjectResponse>
|
|
211
211
|
/**
|
|
212
212
|
* @description
|
|
213
213
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObjects.html S3: DeleteObjects}
|
|
214
|
-
* - aws-lite docs: {@link https://github.com/
|
|
214
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeleteObjects S3: DeleteObjects}
|
|
215
215
|
*/
|
|
216
216
|
DeleteObjects: (input: { Bucket: string, Delete: Record<string, any>, MFA?: string, RequestPayer?: string, BypassGovernanceRetention?: string, ExpectedBucketOwner?: string, ChecksumAlgorithm?: string, ContentMD5?: string }) => Promise<DeleteObjectsResponse>
|
|
217
217
|
/**
|
|
218
218
|
* @description
|
|
219
219
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObjectTagging.html S3: DeleteObjectTagging}
|
|
220
|
-
* - aws-lite docs: {@link https://github.com/
|
|
220
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeleteObjectTagging S3: DeleteObjectTagging}
|
|
221
221
|
*/
|
|
222
222
|
DeleteObjectTagging: (input: { Bucket: string, Key: string, VersionId?: string, ExpectedBucketOwner?: string }) => Promise<DeleteObjectTaggingResponse>
|
|
223
223
|
/**
|
|
224
224
|
* @description
|
|
225
225
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeletePublicAccessBlock.html S3: DeletePublicAccessBlock}
|
|
226
|
-
* - aws-lite docs: {@link https://github.com/
|
|
226
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#DeletePublicAccessBlock S3: DeletePublicAccessBlock}
|
|
227
227
|
*/
|
|
228
228
|
DeletePublicAccessBlock: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<DeletePublicAccessBlockResponse>
|
|
229
229
|
/**
|
|
230
230
|
* @description
|
|
231
231
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketAccelerateConfiguration.html S3: GetBucketAccelerateConfiguration}
|
|
232
|
-
* - aws-lite docs: {@link https://github.com/
|
|
232
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketAccelerateConfiguration S3: GetBucketAccelerateConfiguration}
|
|
233
233
|
*/
|
|
234
234
|
GetBucketAccelerateConfiguration: (input: { Bucket: string, ExpectedBucketOwner?: string, RequestPayer?: string }) => Promise<GetBucketAccelerateConfigurationResponse>
|
|
235
235
|
/**
|
|
236
236
|
* @description
|
|
237
237
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketAcl.html S3: GetBucketAcl}
|
|
238
|
-
* - aws-lite docs: {@link https://github.com/
|
|
238
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketAcl S3: GetBucketAcl}
|
|
239
239
|
*/
|
|
240
240
|
GetBucketAcl: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetBucketAclResponse>
|
|
241
241
|
/**
|
|
242
242
|
* @description
|
|
243
243
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketAnalyticsConfiguration.html S3: GetBucketAnalyticsConfiguration}
|
|
244
|
-
* - aws-lite docs: {@link https://github.com/
|
|
244
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketAnalyticsConfiguration S3: GetBucketAnalyticsConfiguration}
|
|
245
245
|
*/
|
|
246
246
|
GetBucketAnalyticsConfiguration: (input: { Bucket: string, Id: string, ExpectedBucketOwner?: string }) => Promise<GetBucketAnalyticsConfigurationResponse>
|
|
247
247
|
/**
|
|
248
248
|
* @description
|
|
249
249
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketCors.html S3: GetBucketCors}
|
|
250
|
-
* - aws-lite docs: {@link https://github.com/
|
|
250
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketCors S3: GetBucketCors}
|
|
251
251
|
*/
|
|
252
252
|
GetBucketCors: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetBucketCorsResponse>
|
|
253
253
|
/**
|
|
254
254
|
* @description
|
|
255
255
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketEncryption.html S3: GetBucketEncryption}
|
|
256
|
-
* - aws-lite docs: {@link https://github.com/
|
|
256
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketEncryption S3: GetBucketEncryption}
|
|
257
257
|
*/
|
|
258
258
|
GetBucketEncryption: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetBucketEncryptionResponse>
|
|
259
259
|
/**
|
|
260
260
|
* @description
|
|
261
261
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketIntelligentTieringConfiguration.html S3: GetBucketIntelligentTieringConfiguration}
|
|
262
|
-
* - aws-lite docs: {@link https://github.com/
|
|
262
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketIntelligentTieringConfiguration S3: GetBucketIntelligentTieringConfiguration}
|
|
263
263
|
*/
|
|
264
264
|
GetBucketIntelligentTieringConfiguration: (input: { Bucket: string, Id: string }) => Promise<GetBucketIntelligentTieringConfigurationResponse>
|
|
265
265
|
/**
|
|
266
266
|
* @description
|
|
267
267
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketInventoryConfiguration.html S3: GetBucketInventoryConfiguration}
|
|
268
|
-
* - aws-lite docs: {@link https://github.com/
|
|
268
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketInventoryConfiguration S3: GetBucketInventoryConfiguration}
|
|
269
269
|
*/
|
|
270
270
|
GetBucketInventoryConfiguration: (input: { Bucket: string, Id: string, ExpectedBucketOwner?: string }) => Promise<GetBucketInventoryConfigurationResponse>
|
|
271
271
|
/**
|
|
272
272
|
* @description
|
|
273
273
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLifecycle.html S3: GetBucketLifecycleConfiguration}
|
|
274
|
-
* - aws-lite docs: {@link https://github.com/
|
|
274
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketLifecycleConfiguration S3: GetBucketLifecycleConfiguration}
|
|
275
275
|
*/
|
|
276
276
|
GetBucketLifecycleConfiguration: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetBucketLifecycleConfigurationResponse>
|
|
277
277
|
/**
|
|
278
278
|
* @description
|
|
279
279
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLocation.html S3: GetBucketLocation}
|
|
280
|
-
* - aws-lite docs: {@link https://github.com/
|
|
280
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketLocation S3: GetBucketLocation}
|
|
281
281
|
*/
|
|
282
282
|
GetBucketLocation: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetBucketLocationResponse>
|
|
283
283
|
/**
|
|
284
284
|
* @description
|
|
285
285
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLogging.html S3: GetBucketLogging}
|
|
286
|
-
* - aws-lite docs: {@link https://github.com/
|
|
286
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketLogging S3: GetBucketLogging}
|
|
287
287
|
*/
|
|
288
288
|
GetBucketLogging: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetBucketLoggingResponse>
|
|
289
289
|
/**
|
|
290
290
|
* @description
|
|
291
291
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketMetricsConfiguration.html S3: GetBucketMetricsConfiguration}
|
|
292
|
-
* - aws-lite docs: {@link https://github.com/
|
|
292
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketMetricsConfiguration S3: GetBucketMetricsConfiguration}
|
|
293
293
|
*/
|
|
294
294
|
GetBucketMetricsConfiguration: (input: { Bucket: string, Id: string, ExpectedBucketOwner?: string }) => Promise<GetBucketMetricsConfigurationResponse>
|
|
295
295
|
/**
|
|
296
296
|
* @description
|
|
297
297
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketNotificationConfiguration.html S3: GetBucketNotificationConfiguration}
|
|
298
|
-
* - aws-lite docs: {@link https://github.com/
|
|
298
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketNotificationConfiguration S3: GetBucketNotificationConfiguration}
|
|
299
299
|
*/
|
|
300
300
|
GetBucketNotificationConfiguration: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetBucketNotificationConfigurationResponse>
|
|
301
301
|
/**
|
|
302
302
|
* @description
|
|
303
303
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketOwnershipControls.html S3: GetBucketOwnershipControls}
|
|
304
|
-
* - aws-lite docs: {@link https://github.com/
|
|
304
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketOwnershipControls S3: GetBucketOwnershipControls}
|
|
305
305
|
*/
|
|
306
306
|
GetBucketOwnershipControls: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetBucketOwnershipControlsResponse>
|
|
307
307
|
/**
|
|
308
308
|
* @description
|
|
309
309
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketPolicy.html S3: GetBucketPolicy}
|
|
310
|
-
* - aws-lite docs: {@link https://github.com/
|
|
310
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketPolicy S3: GetBucketPolicy}
|
|
311
311
|
*/
|
|
312
312
|
GetBucketPolicy: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetBucketPolicyResponse>
|
|
313
313
|
/**
|
|
314
314
|
* @description
|
|
315
315
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketPolicyStatus.html S3: GetBucketPolicyStatus}
|
|
316
|
-
* - aws-lite docs: {@link https://github.com/
|
|
316
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketPolicyStatus S3: GetBucketPolicyStatus}
|
|
317
317
|
*/
|
|
318
318
|
GetBucketPolicyStatus: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetBucketPolicyStatusResponse>
|
|
319
319
|
/**
|
|
320
320
|
* @description
|
|
321
321
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketReplication.html S3: GetBucketReplication}
|
|
322
|
-
* - aws-lite docs: {@link https://github.com/
|
|
322
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketReplication S3: GetBucketReplication}
|
|
323
323
|
*/
|
|
324
324
|
GetBucketReplication: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetBucketReplicationResponse>
|
|
325
325
|
/**
|
|
326
326
|
* @description
|
|
327
327
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketRequestPayment.html S3: GetBucketRequestPayment}
|
|
328
|
-
* - aws-lite docs: {@link https://github.com/
|
|
328
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketRequestPayment S3: GetBucketRequestPayment}
|
|
329
329
|
*/
|
|
330
330
|
GetBucketRequestPayment: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetBucketRequestPaymentResponse>
|
|
331
331
|
/**
|
|
332
332
|
* @description
|
|
333
333
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketTagging.html S3: GetBucketTagging}
|
|
334
|
-
* - aws-lite docs: {@link https://github.com/
|
|
334
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketTagging S3: GetBucketTagging}
|
|
335
335
|
*/
|
|
336
336
|
GetBucketTagging: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetBucketTaggingResponse>
|
|
337
337
|
/**
|
|
338
338
|
* @description
|
|
339
339
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketVersioning.html S3: GetBucketVersioning}
|
|
340
|
-
* - aws-lite docs: {@link https://github.com/
|
|
340
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketVersioning S3: GetBucketVersioning}
|
|
341
341
|
*/
|
|
342
342
|
GetBucketVersioning: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetBucketVersioningResponse>
|
|
343
343
|
/**
|
|
344
344
|
* @description
|
|
345
345
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketWebsite.html S3: GetBucketWebsite}
|
|
346
|
-
* - aws-lite docs: {@link https://github.com/
|
|
346
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetBucketWebsite S3: GetBucketWebsite}
|
|
347
347
|
*/
|
|
348
348
|
GetBucketWebsite: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetBucketWebsiteResponse>
|
|
349
349
|
/**
|
|
350
350
|
* @description
|
|
351
351
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html S3: GetObject}
|
|
352
|
-
* - aws-lite docs: {@link https://github.com/
|
|
352
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetObject S3: GetObject}
|
|
353
353
|
*/
|
|
354
354
|
GetObject: (input: { Bucket: string, Key: string, PartNumber?: number, VersionId?: string, IfMatch?: string, IfModifiedSince?: string, IfNoneMatch?: string, IfUnmodifiedSince?: string, Range?: string, SSECustomerAlgorithm?: string, SSECustomerKey?: string, SSECustomerKeyMD5?: string, RequestPayer?: string, ExpectedBucketOwner?: string, ChecksumMode?: string, ResponseCacheControl?: string, ResponseContentDisposition?: string, ResponseContentEncoding?: string, ResponseContentLanguage?: string, ResponseContentType?: string, ResponseExpires?: string, rawResponsePayload?: boolean, streamResponsePayload?: boolean }) => Promise<GetObjectResponse>
|
|
355
355
|
/**
|
|
356
356
|
* @description
|
|
357
357
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAcl.html S3: GetObjectAcl}
|
|
358
|
-
* - aws-lite docs: {@link https://github.com/
|
|
358
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetObjectAcl S3: GetObjectAcl}
|
|
359
359
|
*/
|
|
360
360
|
GetObjectAcl: (input: { Bucket: string, Key: string, VersionId?: string, ExpectedBucketOwner?: string, RequestPayer?: string }) => Promise<GetObjectAclResponse>
|
|
361
361
|
/**
|
|
362
362
|
* @description
|
|
363
363
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectAttributes.html S3: GetObjectAttributes}
|
|
364
|
-
* - aws-lite docs: {@link https://github.com/
|
|
364
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetObjectAttributes S3: GetObjectAttributes}
|
|
365
365
|
*/
|
|
366
366
|
GetObjectAttributes: (input: { Bucket: string, Key: string, ObjectAttributes: any[], VersionId?: string, MaxParts?: number, PartNumberMarker?: string, SSECustomerAlgorithm?: string, SSECustomerKey?: string, SSECustomerKeyMD5?: string, RequestPayer?: string, ExpectedBucketOwner?: string }) => Promise<GetObjectAttributesResponse>
|
|
367
367
|
/**
|
|
368
368
|
* @description
|
|
369
369
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectLegalHold.html S3: GetObjectLegalHold}
|
|
370
|
-
* - aws-lite docs: {@link https://github.com/
|
|
370
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetObjectLegalHold S3: GetObjectLegalHold}
|
|
371
371
|
*/
|
|
372
372
|
GetObjectLegalHold: (input: { Bucket: string, Key: string, VersionId?: string, ExpectedBucketOwner?: string, RequestPayer?: string }) => Promise<GetObjectLegalHoldResponse>
|
|
373
373
|
/**
|
|
374
374
|
* @description
|
|
375
375
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectLockConfiguration.html S3: GetObjectLockConfiguration}
|
|
376
|
-
* - aws-lite docs: {@link https://github.com/
|
|
376
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetObjectLockConfiguration S3: GetObjectLockConfiguration}
|
|
377
377
|
*/
|
|
378
378
|
GetObjectLockConfiguration: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetObjectLockConfigurationResponse>
|
|
379
379
|
/**
|
|
380
380
|
* @description
|
|
381
381
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectRetention.html S3: GetObjectRetention}
|
|
382
|
-
* - aws-lite docs: {@link https://github.com/
|
|
382
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetObjectRetention S3: GetObjectRetention}
|
|
383
383
|
*/
|
|
384
384
|
GetObjectRetention: (input: { Bucket: string, Key: string, VersionId?: string, ExpectedBucketOwner?: string, RequestPayer?: string }) => Promise<GetObjectRetentionResponse>
|
|
385
385
|
/**
|
|
386
386
|
* @description
|
|
387
387
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectTagging.html S3: GetObjectTagging}
|
|
388
|
-
* - aws-lite docs: {@link https://github.com/
|
|
388
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetObjectTagging S3: GetObjectTagging}
|
|
389
389
|
*/
|
|
390
390
|
GetObjectTagging: (input: { Bucket: string, Key: string, VersionId?: string, ExpectedBucketOwner?: string, RequestPayer?: string }) => Promise<GetObjectTaggingResponse>
|
|
391
391
|
/**
|
|
392
392
|
* @description
|
|
393
393
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObjectTorrent.html S3: GetObjectTorrent}
|
|
394
|
-
* - aws-lite docs: {@link https://github.com/
|
|
394
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetObjectTorrent S3: GetObjectTorrent}
|
|
395
395
|
*/
|
|
396
396
|
GetObjectTorrent: (input: { Bucket: string, Key: string, ExpectedBucketOwner?: string, RequestPayer?: string }) => Promise<GetObjectTorrentResponse>
|
|
397
397
|
/**
|
|
398
398
|
* @description
|
|
399
399
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetPublicAccessBlock.html S3: GetPublicAccessBlock}
|
|
400
|
-
* - aws-lite docs: {@link https://github.com/
|
|
400
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#GetPublicAccessBlock S3: GetPublicAccessBlock}
|
|
401
401
|
*/
|
|
402
402
|
GetPublicAccessBlock: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<GetPublicAccessBlockResponse>
|
|
403
403
|
/**
|
|
404
404
|
* @description
|
|
405
405
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_HeadBucket.html S3: HeadBucket}
|
|
406
|
-
* - aws-lite docs: {@link https://github.com/
|
|
406
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#HeadBucket S3: HeadBucket}
|
|
407
407
|
*/
|
|
408
408
|
HeadBucket: (input: { Bucket: string, ExpectedBucketOwner?: string }) => Promise<HeadBucketResponse>
|
|
409
409
|
/**
|
|
410
410
|
* @description
|
|
411
411
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_HeadObject.html S3: HeadObject}
|
|
412
|
-
* - aws-lite docs: {@link https://github.com/
|
|
412
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#HeadObject S3: HeadObject}
|
|
413
413
|
*/
|
|
414
414
|
HeadObject: (input: { Bucket: string, Key: string, PartNumber?: number, VersionId?: string, IfMatch?: string, IfModifiedSince?: string, IfNoneMatch?: string, IfUnmodifiedSince?: string, Range?: string, SSECustomerAlgorithm?: string, SSECustomerKey?: string, SSECustomerKeyMD5?: string, RequestPayer?: string, ExpectedBucketOwner?: string, ChecksumMode?: string }) => Promise<HeadObjectResponse>
|
|
415
415
|
/**
|
|
416
416
|
* @description
|
|
417
417
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketAnalyticsConfigurations.html S3: ListBucketAnalyticsConfigurations}
|
|
418
|
-
* - aws-lite docs: {@link https://github.com/
|
|
418
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#ListBucketAnalyticsConfigurations S3: ListBucketAnalyticsConfigurations}
|
|
419
419
|
*/
|
|
420
420
|
ListBucketAnalyticsConfigurations: (input: { Bucket: string, ContinuationToken?: string, paginate?: boolean | string, ExpectedBucketOwner?: string }) => Promise<ListBucketAnalyticsConfigurationsResponse>
|
|
421
421
|
/**
|
|
422
422
|
* @description
|
|
423
423
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketIntelligentTieringConfigurations.html S3: ListBucketIntelligentTieringConfigurations}
|
|
424
|
-
* - aws-lite docs: {@link https://github.com/
|
|
424
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#ListBucketIntelligentTieringConfigurations S3: ListBucketIntelligentTieringConfigurations}
|
|
425
425
|
*/
|
|
426
426
|
ListBucketIntelligentTieringConfigurations: (input: { Bucket: string, ContinuationToken?: string, paginate?: boolean | string, ExpectedBucketOwner?: string }) => Promise<ListBucketIntelligentTieringConfigurationsResponse>
|
|
427
427
|
/**
|
|
428
428
|
* @description
|
|
429
429
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketInventoryConfigurations.html S3: ListBucketInventoryConfigurations}
|
|
430
|
-
* - aws-lite docs: {@link https://github.com/
|
|
430
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#ListBucketInventoryConfigurations S3: ListBucketInventoryConfigurations}
|
|
431
431
|
*/
|
|
432
432
|
ListBucketInventoryConfigurations: (input: { Bucket: string, ContinuationToken?: string, paginate?: boolean | string, ExpectedBucketOwner?: string }) => Promise<ListBucketInventoryConfigurationsResponse>
|
|
433
433
|
/**
|
|
434
434
|
* @description
|
|
435
435
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListBucketMetricsConfigurations.html S3: ListBucketMetricsConfigurations}
|
|
436
|
-
* - aws-lite docs: {@link https://github.com/
|
|
436
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#ListBucketMetricsConfigurations S3: ListBucketMetricsConfigurations}
|
|
437
437
|
*/
|
|
438
438
|
ListBucketMetricsConfigurations: (input: { Bucket: string, ContinuationToken?: string, paginate?: boolean | string, ExpectedBucketOwner?: string }) => Promise<ListBucketMetricsConfigurationsResponse>
|
|
439
|
-
/** @description aws-lite docs: {@link https://github.com/
|
|
439
|
+
/** @description aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#ListBuckets S3: ListBuckets} */
|
|
440
440
|
ListBuckets: () => Promise<ListBucketsResponse>
|
|
441
441
|
/**
|
|
442
442
|
* @description
|
|
443
443
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListMultipartUploads.html S3: ListMultipartUploads}
|
|
444
|
-
* - aws-lite docs: {@link https://github.com/
|
|
444
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#ListMultipartUploads S3: ListMultipartUploads}
|
|
445
445
|
*/
|
|
446
446
|
ListMultipartUploads: (input: { Bucket: string, Delimiter?: string, EncodingType?: string, KeyMarker?: string, MaxUploads?: number, UploadIdMarker?: string, ExpectedBucketOwner?: string, RequestPayer?: string, paginate?: boolean | string }) => Promise<ListMultipartUploadsResponse>
|
|
447
447
|
/**
|
|
448
448
|
* @description
|
|
449
449
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectsV2.html S3: ListObjectsV2}
|
|
450
|
-
* - aws-lite docs: {@link https://github.com/
|
|
450
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#ListObjectsV2 S3: ListObjectsV2}
|
|
451
451
|
*/
|
|
452
452
|
ListObjectsV2: (input: { Bucket: string, ContinuationToken?: string, Delimiter?: string, EncodingType?: string, FetchOwner?: string, MaxKeys?: number, Prefix?: string, StartAfter?: string, RequestPayer?: string, ExpectedBucketOwner?: string, OptionalObjectAttributes?: string, paginate?: boolean | string }) => Promise<ListObjectsV2Response>
|
|
453
453
|
/**
|
|
454
454
|
* @description
|
|
455
455
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectVersions.html S3: ListObjectVersions}
|
|
456
|
-
* - aws-lite docs: {@link https://github.com/
|
|
456
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#ListObjectVersions S3: ListObjectVersions}
|
|
457
457
|
*/
|
|
458
458
|
ListObjectVersions: (input: { Bucket: string, Delimiter?: string, EncodingType?: string, KeyMarker?: string, MaxKeys?: number, Prefix?: string, VersionIdMarker?: string, paginate?: boolean | string, ExpectedBucketOwner?: string, RequestPayer?: string, OptionalObjectAttributes?: string }) => Promise<ListObjectVersionsResponse>
|
|
459
459
|
/**
|
|
460
460
|
* @description
|
|
461
461
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListParts.html S3: ListParts}
|
|
462
|
-
* - aws-lite docs: {@link https://github.com/
|
|
462
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#ListParts S3: ListParts}
|
|
463
463
|
*/
|
|
464
464
|
ListParts: (input: { Bucket: string, Key: string, UploadId: string, MaxParts?: number, PartNumberMarker?: string, paginate?: boolean | string, RequestPayer?: string, ExpectedBucketOwner?: string, SSECustomerAlgorithm?: string, SSECustomerKey?: string, SSECustomerKeyMD5?: string }) => Promise<ListPartsResponse>
|
|
465
465
|
/**
|
|
466
466
|
* @description
|
|
467
467
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketAccelerateConfiguration.html S3: PutBucketAccelerateConfiguration}
|
|
468
|
-
* - aws-lite docs: {@link https://github.com/
|
|
468
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutBucketAccelerateConfiguration S3: PutBucketAccelerateConfiguration}
|
|
469
469
|
*/
|
|
470
470
|
PutBucketAccelerateConfiguration: (input: { AccelerateConfiguration: Record<string, any>, Bucket: string, ChecksumAlgorithm?: string, ExpectedBucketOwner?: string }) => Promise<PutBucketAccelerateConfigurationResponse>
|
|
471
471
|
/**
|
|
472
472
|
* @description
|
|
473
473
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketAnalyticsConfiguration.html S3: PutBucketAnalyticsConfiguration}
|
|
474
|
-
* - aws-lite docs: {@link https://github.com/
|
|
474
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutBucketAnalyticsConfiguration S3: PutBucketAnalyticsConfiguration}
|
|
475
475
|
*/
|
|
476
476
|
PutBucketAnalyticsConfiguration: (input: { Bucket: string, Id: string, AnalyticsConfiguration: Record<string, any>, ExpectedBucketOwner?: string }) => Promise<PutBucketAnalyticsConfigurationResponse>
|
|
477
477
|
/**
|
|
478
478
|
* @description
|
|
479
479
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketCors.html S3: PutBucketCors}
|
|
480
|
-
* - aws-lite docs: {@link https://github.com/
|
|
480
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutBucketCors S3: PutBucketCors}
|
|
481
481
|
*/
|
|
482
482
|
PutBucketCors: (input: { Bucket: string, CORSConfiguration: Record<string, any>, ContentMD5?: string, ChecksumAlgorithm?: string, ExpectedBucketOwner?: string }) => Promise<PutBucketCorsResponse>
|
|
483
483
|
/**
|
|
484
484
|
* @description
|
|
485
485
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketEncryption.html S3: PutBucketEncryption}
|
|
486
|
-
* - aws-lite docs: {@link https://github.com/
|
|
486
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutBucketEncryption S3: PutBucketEncryption}
|
|
487
487
|
*/
|
|
488
488
|
PutBucketEncryption: (input: { Bucket: string, ServerSideEncryptionConfiguration: Record<string, any>, ContentMD5?: string, ChecksumAlgorithm?: string, ExpectedBucketOwner?: string }) => Promise<PutBucketEncryptionResponse>
|
|
489
489
|
/**
|
|
490
490
|
* @description
|
|
491
491
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketIntelligentTieringConfiguration.html S3: PutBucketIntelligentTieringConfiguration}
|
|
492
|
-
* - aws-lite docs: {@link https://github.com/
|
|
492
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutBucketIntelligentTieringConfiguration S3: PutBucketIntelligentTieringConfiguration}
|
|
493
493
|
*/
|
|
494
494
|
PutBucketIntelligentTieringConfiguration: (input: { Bucket: string, Id: string, IntelligentTieringConfiguration: Record<string, any> }) => Promise<PutBucketIntelligentTieringConfigurationResponse>
|
|
495
495
|
/**
|
|
496
496
|
* @description
|
|
497
497
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketInventoryConfiguration.html S3: PutBucketInventoryConfiguration}
|
|
498
|
-
* - aws-lite docs: {@link https://github.com/
|
|
498
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutBucketInventoryConfiguration S3: PutBucketInventoryConfiguration}
|
|
499
499
|
*/
|
|
500
500
|
PutBucketInventoryConfiguration: (input: { Bucket: string, Id: string, InventoryConfiguration: Record<string, any>, ExpectedBucketOwner?: string }) => Promise<PutBucketInventoryConfigurationResponse>
|
|
501
501
|
/**
|
|
502
502
|
* @description
|
|
503
503
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycleConfiguration.html S3: PutBucketLifecycleConfiguration}
|
|
504
|
-
* - aws-lite docs: {@link https://github.com/
|
|
504
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutBucketLifecycleConfiguration S3: PutBucketLifecycleConfiguration}
|
|
505
505
|
*/
|
|
506
506
|
PutBucketLifecycleConfiguration: (input: { Bucket: string, LifecycleConfiguration: Record<string, any>, ChecksumAlgorithm?: string, ExpectedBucketOwner?: string, ContentMD5?: string }) => Promise<PutBucketLifecycleConfigurationResponse>
|
|
507
507
|
/**
|
|
508
508
|
* @description
|
|
509
509
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketMetricsConfiguration.html S3: PutBucketMetricsConfiguration}
|
|
510
|
-
* - aws-lite docs: {@link https://github.com/
|
|
510
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutBucketMetricsConfiguration S3: PutBucketMetricsConfiguration}
|
|
511
511
|
*/
|
|
512
512
|
PutBucketMetricsConfiguration: (input: { Bucket: string, Id: string, MetricsConfiguration: Record<string, any>, ExpectedBucketOwner?: string }) => Promise<PutBucketMetricsConfigurationResponse>
|
|
513
513
|
/**
|
|
514
514
|
* @description
|
|
515
515
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketNotificationConfiguration.html S3: PutBucketNotificationConfiguration}
|
|
516
|
-
* - aws-lite docs: {@link https://github.com/
|
|
516
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutBucketNotificationConfiguration S3: PutBucketNotificationConfiguration}
|
|
517
517
|
*/
|
|
518
518
|
PutBucketNotificationConfiguration: (input: { Bucket: string, NotificationConfiguration: Record<string, any>, ExpectedBucketOwner?: string }) => Promise<PutBucketNotificationConfigurationResponse>
|
|
519
519
|
/**
|
|
520
520
|
* @description
|
|
521
521
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketOwnershipControls.html S3: PutBucketOwnershipControls}
|
|
522
|
-
* - aws-lite docs: {@link https://github.com/
|
|
522
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutBucketOwnershipControls S3: PutBucketOwnershipControls}
|
|
523
523
|
*/
|
|
524
524
|
PutBucketOwnershipControls: (input: { Bucket: string, OwnershipControls: Record<string, any>, ContentMD5?: string, ExpectedBucketOwner?: string }) => Promise<PutBucketOwnershipControlsResponse>
|
|
525
525
|
/**
|
|
526
526
|
* @description
|
|
527
527
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketPolicy.html S3: PutBucketPolicy}
|
|
528
|
-
* - aws-lite docs: {@link https://github.com/
|
|
528
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutBucketPolicy S3: PutBucketPolicy}
|
|
529
529
|
*/
|
|
530
530
|
PutBucketPolicy: (input: { Bucket: string, Policy: Record<string, any>, ContentMD5?: string, ChecksumAlgorithm?: string, ConfirmRemoveSelfBucketAccess?: string, ExpectedBucketOwner?: string }) => Promise<PutBucketPolicyResponse>
|
|
531
531
|
/**
|
|
532
532
|
* @description
|
|
533
533
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketReplication.html S3: PutBucketReplication}
|
|
534
|
-
* - aws-lite docs: {@link https://github.com/
|
|
534
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutBucketReplication S3: PutBucketReplication}
|
|
535
535
|
*/
|
|
536
536
|
PutBucketReplication: (input: { Bucket: string, ReplicationConfiguration: Record<string, any>, ContentMD5?: string, ChecksumAlgorithm?: string, Token?: string, ExpectedBucketOwner?: string }) => Promise<PutBucketReplicationResponse>
|
|
537
537
|
/**
|
|
538
538
|
* @description
|
|
539
539
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketRequestPayment.html S3: PutBucketRequestPayment}
|
|
540
|
-
* - aws-lite docs: {@link https://github.com/
|
|
540
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutBucketRequestPayment S3: PutBucketRequestPayment}
|
|
541
541
|
*/
|
|
542
542
|
PutBucketRequestPayment: (input: { Bucket: string, RequestPaymentConfiguration: Record<string, any>, ContentMD5?: string, ChecksumAlgorithm?: string, ExpectedBucketOwner?: string }) => Promise<PutBucketRequestPaymentResponse>
|
|
543
543
|
/**
|
|
544
544
|
* @description
|
|
545
545
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketTagging.html S3: PutBucketTagging}
|
|
546
|
-
* - aws-lite docs: {@link https://github.com/
|
|
546
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutBucketTagging S3: PutBucketTagging}
|
|
547
547
|
*/
|
|
548
548
|
PutBucketTagging: (input: { Bucket: string, Tagging: Record<string, any>, ContentMD5?: string, ChecksumAlgorithm?: string, ExpectedBucketOwner?: string }) => Promise<PutBucketTaggingResponse>
|
|
549
549
|
/**
|
|
550
550
|
* @description
|
|
551
551
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketVersioning.html S3: PutBucketVersioning}
|
|
552
|
-
* - aws-lite docs: {@link https://github.com/
|
|
552
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutBucketVersioning S3: PutBucketVersioning}
|
|
553
553
|
*/
|
|
554
554
|
PutBucketVersioning: (input: { Bucket: string, VersioningConfiguration: Record<string, any>, ContentMD5?: string, ChecksumAlgorithm?: string, MFA?: string, ExpectedBucketOwner?: string }) => Promise<PutBucketVersioningResponse>
|
|
555
555
|
/**
|
|
556
556
|
* @description
|
|
557
557
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketWebsite.html S3: PutBucketWebsite}
|
|
558
|
-
* - aws-lite docs: {@link https://github.com/
|
|
558
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutBucketWebsite S3: PutBucketWebsite}
|
|
559
559
|
*/
|
|
560
560
|
PutBucketWebsite: (input: { Bucket: string, WebsiteConfiguration: Record<string, any>, ContentMD5?: string, ChecksumAlgorithm?: string, ExpectedBucketOwner?: string }) => Promise<PutBucketWebsiteResponse>
|
|
561
561
|
/**
|
|
562
562
|
* @description
|
|
563
563
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObject.html S3: PutObject}
|
|
564
|
-
* - aws-lite docs: {@link https://github.com/
|
|
564
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutObject S3: PutObject}
|
|
565
565
|
*/
|
|
566
566
|
PutObject: (input: { Bucket: string, Key: string, Body?: Buffer | stream | string, File?: string, ApplyChecksum?: boolean, MinChunkSize?: number, ACL?: string, BucketKeyEnabled?: string, CacheControl?: string, ChecksumAlgorithm?: string, ChecksumCRC32?: string, ChecksumCRC32C?: string, ChecksumSHA1?: string, ChecksumSHA256?: string, ContentDisposition?: string, ContentEncoding?: string, ContentLanguage?: string, ContentLength?: string, ContentMD5?: string, ContentType?: string, ExpectedBucketOwner?: string, Expires?: string, GrantFullControl?: string, GrantRead?: string, GrantReadACP?: string, GrantWriteACP?: string, ObjectLockLegalHoldStatus?: string, ObjectLockMode?: string, ObjectLockRetainUntilDate?: string, RequestPayer?: string, ServerSideEncryption?: string, SSECustomerAlgorithm?: string, SSECustomerKey?: string, SSECustomerKeyMD5?: string, SSEKMSEncryptionContext?: string, SSEKMSKeyId?: string, StorageClass?: string, Tagging?: string, WebsiteRedirectLocation?: string, Metadata?: Record<string, any> }) => Promise<PutObjectResponse>
|
|
567
567
|
/**
|
|
568
568
|
* @description
|
|
569
569
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectLegalHold.html S3: PutObjectLegalHold}
|
|
570
|
-
* - aws-lite docs: {@link https://github.com/
|
|
570
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutObjectLegalHold S3: PutObjectLegalHold}
|
|
571
571
|
*/
|
|
572
572
|
PutObjectLegalHold: (input: { Bucket: string, Key: string, VersionId?: string, LegalHold: Record<string, any>, RequestPayer?: string, ContentMD5?: string, ChecksumAlgorithm?: string, ExpectedBucketOwner?: string }) => Promise<PutObjectLegalHoldResponse>
|
|
573
573
|
/**
|
|
574
574
|
* @description
|
|
575
575
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectLockConfiguration.html S3: PutObjectLockConfiguration}
|
|
576
|
-
* - aws-lite docs: {@link https://github.com/
|
|
576
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutObjectLockConfiguration S3: PutObjectLockConfiguration}
|
|
577
577
|
*/
|
|
578
578
|
PutObjectLockConfiguration: (input: { Bucket: string, ObjectLockConfiguration: Record<string, any>, RequestPayer?: string, Token?: string, ContentMD5?: string, ChecksumAlgorithm?: string, ExpectedBucketOwner?: string }) => Promise<PutObjectLockConfigurationResponse>
|
|
579
579
|
/**
|
|
580
580
|
* @description
|
|
581
581
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectRetention.html S3: PutObjectRetention}
|
|
582
|
-
* - aws-lite docs: {@link https://github.com/
|
|
582
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutObjectRetention S3: PutObjectRetention}
|
|
583
583
|
*/
|
|
584
584
|
PutObjectRetention: (input: { Bucket: string, Key: string, VersionId?: string, Retention: Record<string, any>, RequestPayer?: string, BypassGovernanceRetention?: string, ContentMD5?: string, ChecksumAlgorithm?: string, ExpectedBucketOwner?: string }) => Promise<PutObjectRetentionResponse>
|
|
585
585
|
/**
|
|
586
586
|
* @description
|
|
587
587
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjectTagging.html S3: PutObjectTagging}
|
|
588
|
-
* - aws-lite docs: {@link https://github.com/
|
|
588
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutObjectTagging S3: PutObjectTagging}
|
|
589
589
|
*/
|
|
590
590
|
PutObjectTagging: (input: { Bucket: string, Key: string, VersionId?: string, Tagging: Record<string, any>, ContentMD5?: string, ChecksumAlgorithm?: string, ExpectedBucketOwner?: string, RequestPayer?: string }) => Promise<PutObjectTaggingResponse>
|
|
591
591
|
/**
|
|
592
592
|
* @description
|
|
593
593
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutPublicAccessBlock.html S3: PutPublicAccessBlock}
|
|
594
|
-
* - aws-lite docs: {@link https://github.com/
|
|
594
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#PutPublicAccessBlock S3: PutPublicAccessBlock}
|
|
595
595
|
*/
|
|
596
596
|
PutPublicAccessBlock: (input: { Bucket: string, PublicAccessBlockConfiguration: Record<string, any>, ContentMD5?: string, ChecksumAlgorithm?: string, ExpectedBucketOwner?: string }) => Promise<PutPublicAccessBlockResponse>
|
|
597
597
|
/**
|
|
598
598
|
* @description
|
|
599
599
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_RestoreObject.html S3: RestoreObject}
|
|
600
|
-
* - aws-lite docs: {@link https://github.com/
|
|
600
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#RestoreObject S3: RestoreObject}
|
|
601
601
|
*/
|
|
602
602
|
RestoreObject: (input: { Bucket: string, Key: string, RestoreRequest: Record<string, any>, VersionId?: string, RequestPayer?: string, ChecksumAlgorithm?: string, ExpectedBucketOwner?: string }) => Promise<RestoreObjectResponse>
|
|
603
603
|
/**
|
|
604
604
|
* @description
|
|
605
|
-
* - aws-lite docs: {@link https://github.com/
|
|
605
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#Upload S3: Upload}
|
|
606
606
|
*/
|
|
607
607
|
Upload: (input: { Bucket: string, Key: string, Body?: Buffer | stream | string, File?: string, ChunkSize?: number, Concurrency?: number, ACL?: string, BucketKeyEnabled?: string, CacheControl?: string, ChecksumAlgorithm?: string, ChecksumCRC32?: string, ChecksumCRC32C?: string, ChecksumSHA1?: string, ChecksumSHA256?: string, ContentDisposition?: string, ContentEncoding?: string, ContentLanguage?: string, ContentType?: string, ExpectedBucketOwner?: string, Expires?: string, GrantFullControl?: string, GrantRead?: string, GrantReadACP?: string, GrantWriteACP?: string, ObjectLockLegalHoldStatus?: string, ObjectLockMode?: string, ObjectLockRetainUntilDate?: string, RequestPayer?: string, ServerSideEncryption?: string, SSECustomerAlgorithm?: string, SSECustomerKey?: string, SSECustomerKeyMD5?: string, SSEKMSEncryptionContext?: string, SSEKMSKeyId?: string, StorageClass?: string, Tagging?: string, WebsiteRedirectLocation?: string, Metadata?: Record<string, any> }) => Promise<UploadResponse>
|
|
608
608
|
/**
|
|
609
609
|
* @description
|
|
610
610
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html S3: UploadPart}
|
|
611
|
-
* - aws-lite docs: {@link https://github.com/
|
|
611
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/s3/readme.md#UploadPart S3: UploadPart}
|
|
612
612
|
*/
|
|
613
613
|
UploadPart: (input: { Bucket: string, Key: string, PartNumber?: number, Body?: Buffer | stream | string, ContentLength?: string, ContentMD5?: string, ChecksumAlgorithm?: string, ChecksumCRC32?: string, ChecksumCRC32C?: string, ChecksumSHA1?: string, ChecksumSHA256?: string, SSECustomerAlgorithm?: string, SSECustomerKey?: string, SSECustomerKeyMD5?: string, RequestPayer?: string, ExpectedBucketOwner?: string }) => Promise<UploadPartResponse>
|
|
614
614
|
// $METHODS_END
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-lite/s3-types",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Type definitions for the `@aws-lite/s3` plugin",
|
|
5
5
|
"homepage": "https://aws-lite.org/services/s3",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/
|
|
8
|
+
"url": "git+https://github.com/aws-lite/aws-lite.git",
|
|
9
9
|
"directory": "plugins/s3/types"
|
|
10
10
|
},
|
|
11
|
-
"bugs": "https://github.com/
|
|
11
|
+
"bugs": "https://github.com/aws-lite/aws-lite/issues",
|
|
12
12
|
"main": "",
|
|
13
13
|
"engines": {
|
|
14
14
|
"node": ">=16"
|