distilled-aws 0.0.17 → 0.0.19
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/lib/credentials.d.ts +19 -7
- package/lib/credentials.d.ts.map +1 -1
- package/lib/credentials.js +51 -9
- package/lib/credentials.js.map +1 -1
- package/lib/patch/spec-schema.d.ts +16 -0
- package/lib/patch/spec-schema.d.ts.map +1 -1
- package/lib/patch/spec-schema.js +13 -0
- package/lib/patch/spec-schema.js.map +1 -1
- package/lib/services/ec2.d.ts +959 -955
- package/lib/services/ec2.d.ts.map +1 -1
- package/lib/services/ec2.js +1130 -530
- package/lib/services/ec2.js.map +1 -1
- package/lib/services/iam.d.ts +6 -1
- package/lib/services/iam.d.ts.map +1 -1
- package/lib/services/iam.js +8 -1
- package/lib/services/iam.js.map +1 -1
- package/lib/services/lambda.d.ts +50 -45
- package/lib/services/lambda.d.ts.map +1 -1
- package/lib/services/lambda.js +46 -1
- package/lib/services/lambda.js.map +1 -1
- package/lib/services/s3.d.ts +104 -99
- package/lib/services/s3.d.ts.map +1 -1
- package/lib/services/s3.js +151 -87
- package/lib/services/s3.js.map +1 -1
- package/lib/services/sns.d.ts +30 -25
- package/lib/services/sns.d.ts.map +1 -1
- package/lib/services/sns.js +23 -0
- package/lib/services/sns.js.map +1 -1
- package/lib/services/sqs.d.ts +13 -8
- package/lib/services/sqs.d.ts.map +1 -1
- package/lib/services/sqs.js +10 -0
- package/lib/services/sqs.js.map +1 -1
- package/lib/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/credentials.ts +77 -11
- package/src/patch/spec-schema.ts +28 -0
- package/src/services/ec2.ts +2809 -1280
- package/src/services/iam.ts +11 -1
- package/src/services/lambda.ts +97 -2
- package/src/services/s3.ts +302 -177
- package/src/services/sns.ts +50 -0
- package/src/services/sqs.ts +20 -0
package/lib/services/s3.d.ts
CHANGED
|
@@ -3082,6 +3082,11 @@ export interface SelectObjectContentOutput {
|
|
|
3082
3082
|
Payload?: stream.Stream<SelectObjectContentEventStream, Error, never>;
|
|
3083
3083
|
}
|
|
3084
3084
|
export declare const SelectObjectContentOutput: S.Schema<SelectObjectContentOutput, SelectObjectContentOutput, never>;
|
|
3085
|
+
declare const RequestLimitExceeded_base: S.TaggedErrorClass<RequestLimitExceeded, "RequestLimitExceeded", {
|
|
3086
|
+
readonly _tag: S.tag<"RequestLimitExceeded">;
|
|
3087
|
+
}>;
|
|
3088
|
+
export declare class RequestLimitExceeded extends RequestLimitExceeded_base {
|
|
3089
|
+
}
|
|
3085
3090
|
declare const BucketNotEmpty_base: S.TaggedErrorClass<BucketNotEmpty, "BucketNotEmpty", {
|
|
3086
3091
|
readonly _tag: S.tag<"BucketNotEmpty">;
|
|
3087
3092
|
}>;
|
|
@@ -3355,7 +3360,7 @@ export declare class ObjectAlreadyInActiveTierError extends ObjectAlreadyInActiv
|
|
|
3355
3360
|
*
|
|
3356
3361
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3357
3362
|
*/
|
|
3358
|
-
export declare const deleteBucket: (input: DeleteBucketRequest) => effect.Effect<DeleteBucketResponse, BucketNotEmpty | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3363
|
+
export declare const deleteBucket: (input: DeleteBucketRequest) => effect.Effect<DeleteBucketResponse, RequestLimitExceeded | BucketNotEmpty | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3359
3364
|
/**
|
|
3360
3365
|
* This operation is not supported for directory buckets.
|
|
3361
3366
|
*
|
|
@@ -3380,7 +3385,7 @@ export declare const deleteBucket: (input: DeleteBucketRequest) => effect.Effect
|
|
|
3380
3385
|
*
|
|
3381
3386
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3382
3387
|
*/
|
|
3383
|
-
export declare const deleteBucketAnalyticsConfiguration: (input: DeleteBucketAnalyticsConfigurationRequest) => effect.Effect<DeleteBucketAnalyticsConfigurationResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3388
|
+
export declare const deleteBucketAnalyticsConfiguration: (input: DeleteBucketAnalyticsConfigurationRequest) => effect.Effect<DeleteBucketAnalyticsConfigurationResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3384
3389
|
/**
|
|
3385
3390
|
* This operation is not supported for directory buckets.
|
|
3386
3391
|
*
|
|
@@ -3400,7 +3405,7 @@ export declare const deleteBucketAnalyticsConfiguration: (input: DeleteBucketAna
|
|
|
3400
3405
|
*
|
|
3401
3406
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3402
3407
|
*/
|
|
3403
|
-
export declare const deleteBucketCors: (input: DeleteBucketCorsRequest) => effect.Effect<DeleteBucketCorsResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3408
|
+
export declare const deleteBucketCors: (input: DeleteBucketCorsRequest) => effect.Effect<DeleteBucketCorsResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3404
3409
|
/**
|
|
3405
3410
|
* This implementation of the DELETE action resets the default encryption for the bucket as server-side
|
|
3406
3411
|
* encryption with Amazon S3 managed keys (SSE-S3).
|
|
@@ -3439,7 +3444,7 @@ export declare const deleteBucketCors: (input: DeleteBucketCorsRequest) => effec
|
|
|
3439
3444
|
*
|
|
3440
3445
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3441
3446
|
*/
|
|
3442
|
-
export declare const deleteBucketEncryption: (input: DeleteBucketEncryptionRequest) => effect.Effect<DeleteBucketEncryptionResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3447
|
+
export declare const deleteBucketEncryption: (input: DeleteBucketEncryptionRequest) => effect.Effect<DeleteBucketEncryptionResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3443
3448
|
/**
|
|
3444
3449
|
* This operation is not supported for directory buckets.
|
|
3445
3450
|
*
|
|
@@ -3461,7 +3466,7 @@ export declare const deleteBucketEncryption: (input: DeleteBucketEncryptionReque
|
|
|
3461
3466
|
*
|
|
3462
3467
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3463
3468
|
*/
|
|
3464
|
-
export declare const deleteBucketIntelligentTieringConfiguration: (input: DeleteBucketIntelligentTieringConfigurationRequest) => effect.Effect<DeleteBucketIntelligentTieringConfigurationResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3469
|
+
export declare const deleteBucketIntelligentTieringConfiguration: (input: DeleteBucketIntelligentTieringConfigurationRequest) => effect.Effect<DeleteBucketIntelligentTieringConfigurationResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3465
3470
|
/**
|
|
3466
3471
|
* This operation is not supported for directory buckets.
|
|
3467
3472
|
*
|
|
@@ -3484,7 +3489,7 @@ export declare const deleteBucketIntelligentTieringConfiguration: (input: Delete
|
|
|
3484
3489
|
*
|
|
3485
3490
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3486
3491
|
*/
|
|
3487
|
-
export declare const deleteBucketInventoryConfiguration: (input: DeleteBucketInventoryConfigurationRequest) => effect.Effect<DeleteBucketInventoryConfigurationResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3492
|
+
export declare const deleteBucketInventoryConfiguration: (input: DeleteBucketInventoryConfigurationRequest) => effect.Effect<DeleteBucketInventoryConfigurationResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3488
3493
|
/**
|
|
3489
3494
|
* Deletes the lifecycle configuration from the specified bucket. Amazon S3 removes all the lifecycle
|
|
3490
3495
|
* configuration rules in the lifecycle subresource associated with the bucket. Your objects never expire,
|
|
@@ -3534,7 +3539,7 @@ export declare const deleteBucketInventoryConfiguration: (input: DeleteBucketInv
|
|
|
3534
3539
|
*
|
|
3535
3540
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3536
3541
|
*/
|
|
3537
|
-
export declare const deleteBucketLifecycle: (input: DeleteBucketLifecycleRequest) => effect.Effect<DeleteBucketLifecycleResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3542
|
+
export declare const deleteBucketLifecycle: (input: DeleteBucketLifecycleRequest) => effect.Effect<DeleteBucketLifecycleResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3538
3543
|
/**
|
|
3539
3544
|
* Deletes an S3 Metadata configuration from a general purpose bucket. For more information, see
|
|
3540
3545
|
* Accelerating
|
|
@@ -3566,7 +3571,7 @@ export declare const deleteBucketLifecycle: (input: DeleteBucketLifecycleRequest
|
|
|
3566
3571
|
*
|
|
3567
3572
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3568
3573
|
*/
|
|
3569
|
-
export declare const deleteBucketMetadataConfiguration: (input: DeleteBucketMetadataConfigurationRequest) => effect.Effect<DeleteBucketMetadataConfigurationResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3574
|
+
export declare const deleteBucketMetadataConfiguration: (input: DeleteBucketMetadataConfigurationRequest) => effect.Effect<DeleteBucketMetadataConfigurationResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3570
3575
|
/**
|
|
3571
3576
|
* We recommend that you delete your S3 Metadata configurations by using the V2
|
|
3572
3577
|
* DeleteBucketMetadataTableConfiguration API operation. We no longer recommend using
|
|
@@ -3604,7 +3609,7 @@ export declare const deleteBucketMetadataConfiguration: (input: DeleteBucketMeta
|
|
|
3604
3609
|
*
|
|
3605
3610
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3606
3611
|
*/
|
|
3607
|
-
export declare const deleteBucketMetadataTableConfiguration: (input: DeleteBucketMetadataTableConfigurationRequest) => effect.Effect<DeleteBucketMetadataTableConfigurationResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3612
|
+
export declare const deleteBucketMetadataTableConfiguration: (input: DeleteBucketMetadataTableConfigurationRequest) => effect.Effect<DeleteBucketMetadataTableConfigurationResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3608
3613
|
/**
|
|
3609
3614
|
* This operation is not supported for directory buckets.
|
|
3610
3615
|
*
|
|
@@ -3631,7 +3636,7 @@ export declare const deleteBucketMetadataTableConfiguration: (input: DeleteBucke
|
|
|
3631
3636
|
*
|
|
3632
3637
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3633
3638
|
*/
|
|
3634
|
-
export declare const deleteBucketMetricsConfiguration: (input: DeleteBucketMetricsConfigurationRequest) => effect.Effect<DeleteBucketMetricsConfigurationResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3639
|
+
export declare const deleteBucketMetricsConfiguration: (input: DeleteBucketMetricsConfigurationRequest) => effect.Effect<DeleteBucketMetricsConfigurationResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3635
3640
|
/**
|
|
3636
3641
|
* This operation is not supported for directory buckets.
|
|
3637
3642
|
*
|
|
@@ -3650,7 +3655,7 @@ export declare const deleteBucketMetricsConfiguration: (input: DeleteBucketMetri
|
|
|
3650
3655
|
*
|
|
3651
3656
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3652
3657
|
*/
|
|
3653
|
-
export declare const deleteBucketOwnershipControls: (input: DeleteBucketOwnershipControlsRequest) => effect.Effect<DeleteBucketOwnershipControlsResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3658
|
+
export declare const deleteBucketOwnershipControls: (input: DeleteBucketOwnershipControlsRequest) => effect.Effect<DeleteBucketOwnershipControlsResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3654
3659
|
/**
|
|
3655
3660
|
* Deletes the policy of a specified bucket.
|
|
3656
3661
|
*
|
|
@@ -3700,7 +3705,7 @@ export declare const deleteBucketOwnershipControls: (input: DeleteBucketOwnershi
|
|
|
3700
3705
|
*
|
|
3701
3706
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3702
3707
|
*/
|
|
3703
|
-
export declare const deleteBucketPolicy: (input: DeleteBucketPolicyRequest) => effect.Effect<DeleteBucketPolicyResponse, NoSuchBucket | PermanentRedirect | SignatureDoesNotMatch | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3708
|
+
export declare const deleteBucketPolicy: (input: DeleteBucketPolicyRequest) => effect.Effect<DeleteBucketPolicyResponse, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | SignatureDoesNotMatch | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3704
3709
|
/**
|
|
3705
3710
|
* This operation is not supported for directory buckets.
|
|
3706
3711
|
*
|
|
@@ -3724,7 +3729,7 @@ export declare const deleteBucketPolicy: (input: DeleteBucketPolicyRequest) => e
|
|
|
3724
3729
|
*
|
|
3725
3730
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3726
3731
|
*/
|
|
3727
|
-
export declare const deleteBucketReplication: (input: DeleteBucketReplicationRequest) => effect.Effect<DeleteBucketReplicationResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3732
|
+
export declare const deleteBucketReplication: (input: DeleteBucketReplicationRequest) => effect.Effect<DeleteBucketReplicationResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3728
3733
|
/**
|
|
3729
3734
|
* This operation is not supported for directory buckets.
|
|
3730
3735
|
*
|
|
@@ -3743,7 +3748,7 @@ export declare const deleteBucketReplication: (input: DeleteBucketReplicationReq
|
|
|
3743
3748
|
*
|
|
3744
3749
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3745
3750
|
*/
|
|
3746
|
-
export declare const deleteBucketTagging: (input: DeleteBucketTaggingRequest) => effect.Effect<DeleteBucketTaggingResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3751
|
+
export declare const deleteBucketTagging: (input: DeleteBucketTaggingRequest) => effect.Effect<DeleteBucketTaggingResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3747
3752
|
/**
|
|
3748
3753
|
* This operation is not supported for directory buckets.
|
|
3749
3754
|
*
|
|
@@ -3768,7 +3773,7 @@ export declare const deleteBucketTagging: (input: DeleteBucketTaggingRequest) =>
|
|
|
3768
3773
|
*
|
|
3769
3774
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3770
3775
|
*/
|
|
3771
|
-
export declare const deleteBucketWebsite: (input: DeleteBucketWebsiteRequest) => effect.Effect<DeleteBucketWebsiteResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3776
|
+
export declare const deleteBucketWebsite: (input: DeleteBucketWebsiteRequest) => effect.Effect<DeleteBucketWebsiteResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3772
3777
|
/**
|
|
3773
3778
|
* This operation is not supported for directory buckets.
|
|
3774
3779
|
*
|
|
@@ -3792,7 +3797,7 @@ export declare const deleteBucketWebsite: (input: DeleteBucketWebsiteRequest) =>
|
|
|
3792
3797
|
*
|
|
3793
3798
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3794
3799
|
*/
|
|
3795
|
-
export declare const deletePublicAccessBlock: (input: DeletePublicAccessBlockRequest) => effect.Effect<DeletePublicAccessBlockResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3800
|
+
export declare const deletePublicAccessBlock: (input: DeletePublicAccessBlockRequest) => effect.Effect<DeletePublicAccessBlockResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3796
3801
|
/**
|
|
3797
3802
|
* This operation is not supported for directory buckets.
|
|
3798
3803
|
*
|
|
@@ -3822,7 +3827,7 @@ export declare const deletePublicAccessBlock: (input: DeletePublicAccessBlockReq
|
|
|
3822
3827
|
*
|
|
3823
3828
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3824
3829
|
*/
|
|
3825
|
-
export declare const getBucketNotificationConfiguration: (input: GetBucketNotificationConfigurationRequest) => effect.Effect<NotificationConfiguration, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3830
|
+
export declare const getBucketNotificationConfiguration: (input: GetBucketNotificationConfigurationRequest) => effect.Effect<NotificationConfiguration, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3826
3831
|
/**
|
|
3827
3832
|
* Applies an Amazon S3 bucket policy to an Amazon S3 bucket.
|
|
3828
3833
|
*
|
|
@@ -3880,7 +3885,7 @@ export declare const getBucketNotificationConfiguration: (input: GetBucketNotifi
|
|
|
3880
3885
|
*
|
|
3881
3886
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
3882
3887
|
*/
|
|
3883
|
-
export declare const putBucketPolicy: (input: PutBucketPolicyRequest) => effect.Effect<PutBucketPolicyResponse, AccessDenied | InvalidBucketName | InvalidDigest | InvalidRequest | MalformedPolicy | NoSuchBucket | PermanentRedirect | SignatureDoesNotMatch | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3888
|
+
export declare const putBucketPolicy: (input: PutBucketPolicyRequest) => effect.Effect<PutBucketPolicyResponse, RequestLimitExceeded | AccessDenied | InvalidBucketName | InvalidDigest | InvalidRequest | MalformedPolicy | NoSuchBucket | PermanentRedirect | SignatureDoesNotMatch | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
3884
3889
|
/**
|
|
3885
3890
|
* Renames an existing object in a directory bucket that uses the S3 Express One Zone storage class.
|
|
3886
3891
|
* You can use `RenameObject` by specifying an existing object’s name as the source and the new
|
|
@@ -4025,7 +4030,7 @@ export declare const writeGetObjectResponse: (input: WriteGetObjectResponseReque
|
|
|
4025
4030
|
*
|
|
4026
4031
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4027
4032
|
*/
|
|
4028
|
-
export declare const abortMultipartUpload: (input: AbortMultipartUploadRequest) => effect.Effect<AbortMultipartUploadOutput, NoSuchUpload | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4033
|
+
export declare const abortMultipartUpload: (input: AbortMultipartUploadRequest) => effect.Effect<AbortMultipartUploadOutput, NoSuchUpload | RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4029
4034
|
/**
|
|
4030
4035
|
* End of support notice: As of October 1, 2025, Amazon S3 has discontinued support for Email Grantee Access Control Lists (ACLs). If you attempt to use an Email Grantee ACL in a request after October 1, 2025,
|
|
4031
4036
|
* the request will receive an `HTTP 405` (Method Not Allowed) error.
|
|
@@ -4200,7 +4205,7 @@ export declare const abortMultipartUpload: (input: AbortMultipartUploadRequest)
|
|
|
4200
4205
|
*
|
|
4201
4206
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4202
4207
|
*/
|
|
4203
|
-
export declare const createMultipartUpload: (input: CreateMultipartUploadRequest) => effect.Effect<CreateMultipartUploadOutput, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4208
|
+
export declare const createMultipartUpload: (input: CreateMultipartUploadRequest) => effect.Effect<CreateMultipartUploadOutput, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4204
4209
|
/**
|
|
4205
4210
|
* Removes an object from a bucket. The behavior depends on the bucket's versioning state:
|
|
4206
4211
|
*
|
|
@@ -4291,7 +4296,7 @@ export declare const createMultipartUpload: (input: CreateMultipartUploadRequest
|
|
|
4291
4296
|
*
|
|
4292
4297
|
* The `If-Match` header is supported for both general purpose and directory buckets. `IfMatchLastModifiedTime` and `IfMatchSize` is only supported for directory buckets.
|
|
4293
4298
|
*/
|
|
4294
|
-
export declare const deleteObject: (input: DeleteObjectRequest) => effect.Effect<DeleteObjectOutput, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4299
|
+
export declare const deleteObject: (input: DeleteObjectRequest) => effect.Effect<DeleteObjectOutput, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4295
4300
|
/**
|
|
4296
4301
|
* This operation is not supported for directory buckets.
|
|
4297
4302
|
*
|
|
@@ -4313,11 +4318,11 @@ export declare const deleteObject: (input: DeleteObjectRequest) => effect.Effect
|
|
|
4313
4318
|
*
|
|
4314
4319
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4315
4320
|
*/
|
|
4316
|
-
export declare const deleteObjectTagging: (input: DeleteObjectTaggingRequest) => effect.Effect<DeleteObjectTaggingOutput, NoSuchKey | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4321
|
+
export declare const deleteObjectTagging: (input: DeleteObjectTaggingRequest) => effect.Effect<DeleteObjectTaggingOutput, RequestLimitExceeded | NoSuchKey | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4317
4322
|
/**
|
|
4318
4323
|
* Returns the attribute-based access control (ABAC) property of the general purpose bucket. If ABAC is enabled on your bucket, you can use tags on the bucket for access control. For more information, see Enabling ABAC in general purpose buckets.
|
|
4319
4324
|
*/
|
|
4320
|
-
export declare const getBucketAbac: (input: GetBucketAbacRequest) => effect.Effect<GetBucketAbacOutput, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4325
|
+
export declare const getBucketAbac: (input: GetBucketAbacRequest) => effect.Effect<GetBucketAbacOutput, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4321
4326
|
/**
|
|
4322
4327
|
* This operation is not supported for directory buckets.
|
|
4323
4328
|
*
|
|
@@ -4347,7 +4352,7 @@ export declare const getBucketAbac: (input: GetBucketAbacRequest) => effect.Effe
|
|
|
4347
4352
|
*
|
|
4348
4353
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4349
4354
|
*/
|
|
4350
|
-
export declare const getBucketAccelerateConfiguration: (input: GetBucketAccelerateConfigurationRequest) => effect.Effect<GetBucketAccelerateConfigurationOutput, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4355
|
+
export declare const getBucketAccelerateConfiguration: (input: GetBucketAccelerateConfigurationRequest) => effect.Effect<GetBucketAccelerateConfigurationOutput, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4351
4356
|
/**
|
|
4352
4357
|
* This operation is not supported for directory buckets.
|
|
4353
4358
|
*
|
|
@@ -4375,7 +4380,7 @@ export declare const getBucketAccelerateConfiguration: (input: GetBucketAccelera
|
|
|
4375
4380
|
*
|
|
4376
4381
|
* - ListObjects
|
|
4377
4382
|
*/
|
|
4378
|
-
export declare const getBucketAcl: (input: GetBucketAclRequest) => effect.Effect<GetBucketAclOutput, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4383
|
+
export declare const getBucketAcl: (input: GetBucketAclRequest) => effect.Effect<GetBucketAclOutput, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4379
4384
|
/**
|
|
4380
4385
|
* This operation is not supported for directory buckets.
|
|
4381
4386
|
*
|
|
@@ -4400,7 +4405,7 @@ export declare const getBucketAcl: (input: GetBucketAclRequest) => effect.Effect
|
|
|
4400
4405
|
*
|
|
4401
4406
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4402
4407
|
*/
|
|
4403
|
-
export declare const getBucketAnalyticsConfiguration: (input: GetBucketAnalyticsConfigurationRequest) => effect.Effect<GetBucketAnalyticsConfigurationOutput, NoSuchBucket | NoSuchConfiguration | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4408
|
+
export declare const getBucketAnalyticsConfiguration: (input: GetBucketAnalyticsConfigurationRequest) => effect.Effect<GetBucketAnalyticsConfigurationOutput, RequestLimitExceeded | NoSuchBucket | NoSuchConfiguration | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4404
4409
|
/**
|
|
4405
4410
|
* This operation is not supported for directory buckets.
|
|
4406
4411
|
*
|
|
@@ -4427,7 +4432,7 @@ export declare const getBucketAnalyticsConfiguration: (input: GetBucketAnalytics
|
|
|
4427
4432
|
*
|
|
4428
4433
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4429
4434
|
*/
|
|
4430
|
-
export declare const getBucketCors: (input: GetBucketCorsRequest) => effect.Effect<GetBucketCorsOutput, NoSuchBucket | NoSuchCORSConfiguration | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4435
|
+
export declare const getBucketCors: (input: GetBucketCorsRequest) => effect.Effect<GetBucketCorsOutput, RequestLimitExceeded | NoSuchBucket | NoSuchCORSConfiguration | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4431
4436
|
/**
|
|
4432
4437
|
* Returns the default encryption configuration for an Amazon S3 bucket. By default, all buckets have a
|
|
4433
4438
|
* default encryption configuration that uses server-side encryption with Amazon S3 managed keys (SSE-S3). This operation also returns the BucketKeyEnabled and BlockedEncryptionTypes statuses.
|
|
@@ -4466,7 +4471,7 @@ export declare const getBucketCors: (input: GetBucketCorsRequest) => effect.Effe
|
|
|
4466
4471
|
*
|
|
4467
4472
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4468
4473
|
*/
|
|
4469
|
-
export declare const getBucketEncryption: (input: GetBucketEncryptionRequest) => effect.Effect<GetBucketEncryptionOutput, NoSuchBucket | ParseError | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4474
|
+
export declare const getBucketEncryption: (input: GetBucketEncryptionRequest) => effect.Effect<GetBucketEncryptionOutput, RequestLimitExceeded | NoSuchBucket | ParseError | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4470
4475
|
/**
|
|
4471
4476
|
* This operation is not supported for directory buckets.
|
|
4472
4477
|
*
|
|
@@ -4488,7 +4493,7 @@ export declare const getBucketEncryption: (input: GetBucketEncryptionRequest) =>
|
|
|
4488
4493
|
*
|
|
4489
4494
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4490
4495
|
*/
|
|
4491
|
-
export declare const getBucketIntelligentTieringConfiguration: (input: GetBucketIntelligentTieringConfigurationRequest) => effect.Effect<GetBucketIntelligentTieringConfigurationOutput, NoSuchBucket | NoSuchConfiguration | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4496
|
+
export declare const getBucketIntelligentTieringConfiguration: (input: GetBucketIntelligentTieringConfigurationRequest) => effect.Effect<GetBucketIntelligentTieringConfigurationOutput, RequestLimitExceeded | NoSuchBucket | NoSuchConfiguration | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4492
4497
|
/**
|
|
4493
4498
|
* This operation is not supported for directory buckets.
|
|
4494
4499
|
*
|
|
@@ -4512,7 +4517,7 @@ export declare const getBucketIntelligentTieringConfiguration: (input: GetBucket
|
|
|
4512
4517
|
*
|
|
4513
4518
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4514
4519
|
*/
|
|
4515
|
-
export declare const getBucketInventoryConfiguration: (input: GetBucketInventoryConfigurationRequest) => effect.Effect<GetBucketInventoryConfigurationOutput, NoSuchBucket | NoSuchConfiguration | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4520
|
+
export declare const getBucketInventoryConfiguration: (input: GetBucketInventoryConfigurationRequest) => effect.Effect<GetBucketInventoryConfigurationOutput, RequestLimitExceeded | NoSuchBucket | NoSuchConfiguration | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4516
4521
|
/**
|
|
4517
4522
|
* Returns the lifecycle configuration information set on the bucket. For information about lifecycle
|
|
4518
4523
|
* configuration, see Object Lifecycle Management.
|
|
@@ -4579,7 +4584,7 @@ export declare const getBucketInventoryConfiguration: (input: GetBucketInventory
|
|
|
4579
4584
|
*
|
|
4580
4585
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4581
4586
|
*/
|
|
4582
|
-
export declare const getBucketLifecycleConfiguration: (input: GetBucketLifecycleConfigurationRequest) => effect.Effect<GetBucketLifecycleConfigurationOutput, NoSuchBucket | NoSuchLifecycleConfiguration | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4587
|
+
export declare const getBucketLifecycleConfiguration: (input: GetBucketLifecycleConfigurationRequest) => effect.Effect<GetBucketLifecycleConfigurationOutput, RequestLimitExceeded | NoSuchBucket | NoSuchLifecycleConfiguration | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4583
4588
|
/**
|
|
4584
4589
|
* Using the `GetBucketLocation` operation is no longer a best practice. To return the
|
|
4585
4590
|
* Region that a bucket resides in, we recommend that you use the
|
|
@@ -4615,7 +4620,7 @@ export declare const getBucketLifecycleConfiguration: (input: GetBucketLifecycle
|
|
|
4615
4620
|
*
|
|
4616
4621
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4617
4622
|
*/
|
|
4618
|
-
export declare const getBucketLocation: (input: GetBucketLocationRequest) => effect.Effect<GetBucketLocationOutput, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4623
|
+
export declare const getBucketLocation: (input: GetBucketLocationRequest) => effect.Effect<GetBucketLocationOutput, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4619
4624
|
/**
|
|
4620
4625
|
* This operation is not supported for directory buckets.
|
|
4621
4626
|
*
|
|
@@ -4630,7 +4635,7 @@ export declare const getBucketLocation: (input: GetBucketLocationRequest) => eff
|
|
|
4630
4635
|
*
|
|
4631
4636
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4632
4637
|
*/
|
|
4633
|
-
export declare const getBucketLogging: (input: GetBucketLoggingRequest) => effect.Effect<GetBucketLoggingOutput, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4638
|
+
export declare const getBucketLogging: (input: GetBucketLoggingRequest) => effect.Effect<GetBucketLoggingOutput, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4634
4639
|
/**
|
|
4635
4640
|
* This operation is not supported for directory buckets.
|
|
4636
4641
|
*
|
|
@@ -4658,7 +4663,7 @@ export declare const getBucketLogging: (input: GetBucketLoggingRequest) => effec
|
|
|
4658
4663
|
*
|
|
4659
4664
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4660
4665
|
*/
|
|
4661
|
-
export declare const getBucketMetricsConfiguration: (input: GetBucketMetricsConfigurationRequest) => effect.Effect<GetBucketMetricsConfigurationOutput, NoSuchBucket | NoSuchConfiguration | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4666
|
+
export declare const getBucketMetricsConfiguration: (input: GetBucketMetricsConfigurationRequest) => effect.Effect<GetBucketMetricsConfigurationOutput, RequestLimitExceeded | NoSuchBucket | NoSuchConfiguration | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4662
4667
|
/**
|
|
4663
4668
|
* This operation is not supported for directory buckets.
|
|
4664
4669
|
*
|
|
@@ -4687,7 +4692,7 @@ export declare const getBucketMetricsConfiguration: (input: GetBucketMetricsConf
|
|
|
4687
4692
|
*
|
|
4688
4693
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4689
4694
|
*/
|
|
4690
|
-
export declare const getBucketOwnershipControls: (input: GetBucketOwnershipControlsRequest) => effect.Effect<GetBucketOwnershipControlsOutput, NoSuchBucket | OwnershipControlsNotFoundError | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4695
|
+
export declare const getBucketOwnershipControls: (input: GetBucketOwnershipControlsRequest) => effect.Effect<GetBucketOwnershipControlsOutput, RequestLimitExceeded | NoSuchBucket | OwnershipControlsNotFoundError | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4691
4696
|
/**
|
|
4692
4697
|
* Returns the policy of a specified bucket.
|
|
4693
4698
|
*
|
|
@@ -4743,7 +4748,7 @@ export declare const getBucketOwnershipControls: (input: GetBucketOwnershipContr
|
|
|
4743
4748
|
*
|
|
4744
4749
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4745
4750
|
*/
|
|
4746
|
-
export declare const getBucketPolicy: (input: GetBucketPolicyRequest) => effect.Effect<GetBucketPolicyOutput, NoSuchBucket | NoSuchBucketPolicy | PermanentRedirect | SignatureDoesNotMatch | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4751
|
+
export declare const getBucketPolicy: (input: GetBucketPolicyRequest) => effect.Effect<GetBucketPolicyOutput, RequestLimitExceeded | NoSuchBucket | NoSuchBucketPolicy | PermanentRedirect | SignatureDoesNotMatch | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4747
4752
|
/**
|
|
4748
4753
|
* This operation is not supported for directory buckets.
|
|
4749
4754
|
*
|
|
@@ -4774,7 +4779,7 @@ export declare const getBucketPolicy: (input: GetBucketPolicyRequest) => effect.
|
|
|
4774
4779
|
*
|
|
4775
4780
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4776
4781
|
*/
|
|
4777
|
-
export declare const getBucketReplication: (input: GetBucketReplicationRequest) => effect.Effect<GetBucketReplicationOutput, NoSuchBucket | ReplicationConfigurationNotFoundError | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4782
|
+
export declare const getBucketReplication: (input: GetBucketReplicationRequest) => effect.Effect<GetBucketReplicationOutput, RequestLimitExceeded | NoSuchBucket | ReplicationConfigurationNotFoundError | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4778
4783
|
/**
|
|
4779
4784
|
* This operation is not supported for directory buckets.
|
|
4780
4785
|
*
|
|
@@ -4787,7 +4792,7 @@ export declare const getBucketReplication: (input: GetBucketReplicationRequest)
|
|
|
4787
4792
|
*
|
|
4788
4793
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4789
4794
|
*/
|
|
4790
|
-
export declare const getBucketRequestPayment: (input: GetBucketRequestPaymentRequest) => effect.Effect<GetBucketRequestPaymentOutput, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4795
|
+
export declare const getBucketRequestPayment: (input: GetBucketRequestPaymentRequest) => effect.Effect<GetBucketRequestPaymentOutput, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4791
4796
|
/**
|
|
4792
4797
|
* This operation is not supported for directory buckets.
|
|
4793
4798
|
*
|
|
@@ -4812,7 +4817,7 @@ export declare const getBucketRequestPayment: (input: GetBucketRequestPaymentReq
|
|
|
4812
4817
|
*
|
|
4813
4818
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4814
4819
|
*/
|
|
4815
|
-
export declare const getBucketTagging: (input: GetBucketTaggingRequest) => effect.Effect<GetBucketTaggingOutput, NoSuchBucket | NoSuchTagSet | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4820
|
+
export declare const getBucketTagging: (input: GetBucketTaggingRequest) => effect.Effect<GetBucketTaggingOutput, RequestLimitExceeded | NoSuchBucket | NoSuchTagSet | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4816
4821
|
/**
|
|
4817
4822
|
* This operation is not supported for directory buckets.
|
|
4818
4823
|
*
|
|
@@ -4834,7 +4839,7 @@ export declare const getBucketTagging: (input: GetBucketTaggingRequest) => effec
|
|
|
4834
4839
|
*
|
|
4835
4840
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4836
4841
|
*/
|
|
4837
|
-
export declare const getBucketVersioning: (input: GetBucketVersioningRequest) => effect.Effect<GetBucketVersioningOutput, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4842
|
+
export declare const getBucketVersioning: (input: GetBucketVersioningRequest) => effect.Effect<GetBucketVersioningOutput, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4838
4843
|
/**
|
|
4839
4844
|
* This operation is not supported for directory buckets.
|
|
4840
4845
|
*
|
|
@@ -4854,7 +4859,7 @@ export declare const getBucketVersioning: (input: GetBucketVersioningRequest) =>
|
|
|
4854
4859
|
*
|
|
4855
4860
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4856
4861
|
*/
|
|
4857
|
-
export declare const getBucketWebsite: (input: GetBucketWebsiteRequest) => effect.Effect<GetBucketWebsiteOutput, NoSuchBucket | NoSuchWebsiteConfiguration | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4862
|
+
export declare const getBucketWebsite: (input: GetBucketWebsiteRequest) => effect.Effect<GetBucketWebsiteOutput, RequestLimitExceeded | NoSuchBucket | NoSuchWebsiteConfiguration | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4858
4863
|
/**
|
|
4859
4864
|
* This operation is not supported for directory buckets.
|
|
4860
4865
|
*
|
|
@@ -4885,7 +4890,7 @@ export declare const getBucketWebsite: (input: GetBucketWebsiteRequest) => effec
|
|
|
4885
4890
|
*
|
|
4886
4891
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4887
4892
|
*/
|
|
4888
|
-
export declare const getObjectAcl: (input: GetObjectAclRequest) => effect.Effect<GetObjectAclOutput, NoSuchKey | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4893
|
+
export declare const getObjectAcl: (input: GetObjectAclRequest) => effect.Effect<GetObjectAclOutput, NoSuchKey | RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4889
4894
|
/**
|
|
4890
4895
|
* This operation is not supported for directory buckets.
|
|
4891
4896
|
*
|
|
@@ -4899,7 +4904,7 @@ export declare const getObjectAcl: (input: GetObjectAclRequest) => effect.Effect
|
|
|
4899
4904
|
*
|
|
4900
4905
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4901
4906
|
*/
|
|
4902
|
-
export declare const getObjectLegalHold: (input: GetObjectLegalHoldRequest) => effect.Effect<GetObjectLegalHoldOutput, InvalidRequest | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4907
|
+
export declare const getObjectLegalHold: (input: GetObjectLegalHoldRequest) => effect.Effect<GetObjectLegalHoldOutput, RequestLimitExceeded | InvalidRequest | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4903
4908
|
/**
|
|
4904
4909
|
* This operation is not supported for directory buckets.
|
|
4905
4910
|
*
|
|
@@ -4913,7 +4918,7 @@ export declare const getObjectLegalHold: (input: GetObjectLegalHoldRequest) => e
|
|
|
4913
4918
|
*
|
|
4914
4919
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4915
4920
|
*/
|
|
4916
|
-
export declare const getObjectLockConfiguration: (input: GetObjectLockConfigurationRequest) => effect.Effect<GetObjectLockConfigurationOutput, NoSuchBucket | ObjectLockConfigurationNotFoundError | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4921
|
+
export declare const getObjectLockConfiguration: (input: GetObjectLockConfigurationRequest) => effect.Effect<GetObjectLockConfigurationOutput, RequestLimitExceeded | NoSuchBucket | ObjectLockConfigurationNotFoundError | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4917
4922
|
/**
|
|
4918
4923
|
* This operation is not supported for directory buckets.
|
|
4919
4924
|
*
|
|
@@ -4927,7 +4932,7 @@ export declare const getObjectLockConfiguration: (input: GetObjectLockConfigurat
|
|
|
4927
4932
|
*
|
|
4928
4933
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4929
4934
|
*/
|
|
4930
|
-
export declare const getObjectRetention: (input: GetObjectRetentionRequest) => effect.Effect<GetObjectRetentionOutput, InvalidRequest | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4935
|
+
export declare const getObjectRetention: (input: GetObjectRetentionRequest) => effect.Effect<GetObjectRetentionOutput, RequestLimitExceeded | InvalidRequest | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4931
4936
|
/**
|
|
4932
4937
|
* This operation is not supported for directory buckets.
|
|
4933
4938
|
*
|
|
@@ -4954,7 +4959,7 @@ export declare const getObjectRetention: (input: GetObjectRetentionRequest) => e
|
|
|
4954
4959
|
*
|
|
4955
4960
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
4956
4961
|
*/
|
|
4957
|
-
export declare const getObjectTagging: (input: GetObjectTaggingRequest) => effect.Effect<GetObjectTaggingOutput, NoSuchBucket | NoSuchKey | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4962
|
+
export declare const getObjectTagging: (input: GetObjectTaggingRequest) => effect.Effect<GetObjectTaggingOutput, RequestLimitExceeded | NoSuchBucket | NoSuchKey | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
4958
4963
|
/**
|
|
4959
4964
|
* This operation is not supported for directory buckets.
|
|
4960
4965
|
*
|
|
@@ -5008,7 +5013,7 @@ export declare const getObjectTorrent: (input: GetObjectTorrentRequest) => effec
|
|
|
5008
5013
|
*
|
|
5009
5014
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5010
5015
|
*/
|
|
5011
|
-
export declare const getPublicAccessBlock: (input: GetPublicAccessBlockRequest) => effect.Effect<GetPublicAccessBlockOutput, NoSuchBucket | NoSuchPublicAccessBlockConfiguration | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5016
|
+
export declare const getPublicAccessBlock: (input: GetPublicAccessBlockRequest) => effect.Effect<GetPublicAccessBlockOutput, RequestLimitExceeded | NoSuchBucket | NoSuchPublicAccessBlockConfiguration | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5012
5017
|
/**
|
|
5013
5018
|
* You can use this operation to determine if a bucket exists and if you have permission to access it.
|
|
5014
5019
|
* The action returns a `200 OK` HTTP status code if the bucket exists and you have
|
|
@@ -5071,7 +5076,7 @@ export declare const getPublicAccessBlock: (input: GetPublicAccessBlockRequest)
|
|
|
5071
5076
|
*
|
|
5072
5077
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5073
5078
|
*/
|
|
5074
|
-
export declare const headBucket: (input: HeadBucketRequest) => effect.Effect<HeadBucketOutput, NotFound | ParseError | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5079
|
+
export declare const headBucket: (input: HeadBucketRequest) => effect.Effect<HeadBucketOutput, NotFound | RequestLimitExceeded | ParseError | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5075
5080
|
/**
|
|
5076
5081
|
* The `HEAD` operation retrieves metadata from an object without returning the object
|
|
5077
5082
|
* itself. This operation is useful if you're interested only in an object's metadata.
|
|
@@ -5180,7 +5185,7 @@ export declare const headBucket: (input: HeadBucketRequest) => effect.Effect<Hea
|
|
|
5180
5185
|
*
|
|
5181
5186
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5182
5187
|
*/
|
|
5183
|
-
export declare const headObject: (input: HeadObjectRequest) => effect.Effect<HeadObjectOutput, NotFound | ParseError | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5188
|
+
export declare const headObject: (input: HeadObjectRequest) => effect.Effect<HeadObjectOutput, NotFound | RequestLimitExceeded | ParseError | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5184
5189
|
/**
|
|
5185
5190
|
* This operation is not supported for directory buckets.
|
|
5186
5191
|
*
|
|
@@ -5213,7 +5218,7 @@ export declare const headObject: (input: HeadObjectRequest) => effect.Effect<Hea
|
|
|
5213
5218
|
*
|
|
5214
5219
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5215
5220
|
*/
|
|
5216
|
-
export declare const listBucketAnalyticsConfigurations: (input: ListBucketAnalyticsConfigurationsRequest) => effect.Effect<ListBucketAnalyticsConfigurationsOutput, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5221
|
+
export declare const listBucketAnalyticsConfigurations: (input: ListBucketAnalyticsConfigurationsRequest) => effect.Effect<ListBucketAnalyticsConfigurationsOutput, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5217
5222
|
/**
|
|
5218
5223
|
* This operation is not supported for directory buckets.
|
|
5219
5224
|
*
|
|
@@ -5235,7 +5240,7 @@ export declare const listBucketAnalyticsConfigurations: (input: ListBucketAnalyt
|
|
|
5235
5240
|
*
|
|
5236
5241
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5237
5242
|
*/
|
|
5238
|
-
export declare const listBucketIntelligentTieringConfigurations: (input: ListBucketIntelligentTieringConfigurationsRequest) => effect.Effect<ListBucketIntelligentTieringConfigurationsOutput, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5243
|
+
export declare const listBucketIntelligentTieringConfigurations: (input: ListBucketIntelligentTieringConfigurationsRequest) => effect.Effect<ListBucketIntelligentTieringConfigurationsOutput, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5239
5244
|
/**
|
|
5240
5245
|
* This operation is not supported for directory buckets.
|
|
5241
5246
|
*
|
|
@@ -5266,7 +5271,7 @@ export declare const listBucketIntelligentTieringConfigurations: (input: ListBuc
|
|
|
5266
5271
|
*
|
|
5267
5272
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5268
5273
|
*/
|
|
5269
|
-
export declare const listBucketInventoryConfigurations: (input: ListBucketInventoryConfigurationsRequest) => effect.Effect<ListBucketInventoryConfigurationsOutput, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5274
|
+
export declare const listBucketInventoryConfigurations: (input: ListBucketInventoryConfigurationsRequest) => effect.Effect<ListBucketInventoryConfigurationsOutput, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5270
5275
|
/**
|
|
5271
5276
|
* This operation is not supported for directory buckets.
|
|
5272
5277
|
*
|
|
@@ -5299,7 +5304,7 @@ export declare const listBucketInventoryConfigurations: (input: ListBucketInvent
|
|
|
5299
5304
|
*
|
|
5300
5305
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5301
5306
|
*/
|
|
5302
|
-
export declare const listBucketMetricsConfigurations: (input: ListBucketMetricsConfigurationsRequest) => effect.Effect<ListBucketMetricsConfigurationsOutput, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5307
|
+
export declare const listBucketMetricsConfigurations: (input: ListBucketMetricsConfigurationsRequest) => effect.Effect<ListBucketMetricsConfigurationsOutput, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5303
5308
|
/**
|
|
5304
5309
|
* Returns a list of all Amazon S3 directory buckets owned by the authenticated sender of the request. For
|
|
5305
5310
|
* more information about directory buckets, see Directory buckets in the
|
|
@@ -5399,9 +5404,9 @@ export declare const listDirectoryBuckets: {
|
|
|
5399
5404
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5400
5405
|
*/
|
|
5401
5406
|
export declare const listObjectsV2: {
|
|
5402
|
-
(input: ListObjectsV2Request): effect.Effect<ListObjectsV2Output, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5403
|
-
pages: (input: ListObjectsV2Request) => stream.Stream<ListObjectsV2Output, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5404
|
-
items: (input: ListObjectsV2Request) => stream.Stream<unknown, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5407
|
+
(input: ListObjectsV2Request): effect.Effect<ListObjectsV2Output, NoSuchBucket | RequestLimitExceeded | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5408
|
+
pages: (input: ListObjectsV2Request) => stream.Stream<ListObjectsV2Output, NoSuchBucket | RequestLimitExceeded | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5409
|
+
items: (input: ListObjectsV2Request) => stream.Stream<unknown, NoSuchBucket | RequestLimitExceeded | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5405
5410
|
};
|
|
5406
5411
|
/**
|
|
5407
5412
|
* Sets the attribute-based access control (ABAC) property of the general purpose bucket. You must have `s3:PutBucketABAC` permission to perform this action. When you enable ABAC, you can use tags for access control on your buckets. Additionally, when ABAC is enabled, you must use the TagResource and UntagResource actions to manage tags on your buckets. You can nolonger use the PutBucketTagging and DeleteBucketTagging actions to tag your bucket. For more information, see Enabling ABAC in general purpose buckets.
|
|
@@ -5443,7 +5448,7 @@ export declare const putBucketAbac: (input: PutBucketAbacRequest) => effect.Effe
|
|
|
5443
5448
|
*
|
|
5444
5449
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5445
5450
|
*/
|
|
5446
|
-
export declare const putBucketAccelerateConfiguration: (input: PutBucketAccelerateConfigurationRequest) => effect.Effect<PutBucketAccelerateConfigurationResponse, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5451
|
+
export declare const putBucketAccelerateConfiguration: (input: PutBucketAccelerateConfigurationRequest) => effect.Effect<PutBucketAccelerateConfigurationResponse, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5447
5452
|
/**
|
|
5448
5453
|
* This operation is not supported for directory buckets.
|
|
5449
5454
|
*
|
|
@@ -5460,7 +5465,7 @@ export declare const putBucketAccelerateConfiguration: (input: PutBucketAccelera
|
|
|
5460
5465
|
*
|
|
5461
5466
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5462
5467
|
*/
|
|
5463
|
-
export declare const putBucketRequestPayment: (input: PutBucketRequestPaymentRequest) => effect.Effect<PutBucketRequestPaymentResponse, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5468
|
+
export declare const putBucketRequestPayment: (input: PutBucketRequestPaymentRequest) => effect.Effect<PutBucketRequestPaymentResponse, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5464
5469
|
/**
|
|
5465
5470
|
* This operation is not supported for directory buckets.
|
|
5466
5471
|
*
|
|
@@ -5503,7 +5508,7 @@ export declare const putBucketRequestPayment: (input: PutBucketRequestPaymentReq
|
|
|
5503
5508
|
*
|
|
5504
5509
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5505
5510
|
*/
|
|
5506
|
-
export declare const putBucketTagging: (input: PutBucketTaggingRequest) => effect.Effect<PutBucketTaggingResponse, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5511
|
+
export declare const putBucketTagging: (input: PutBucketTaggingRequest) => effect.Effect<PutBucketTaggingResponse, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5507
5512
|
/**
|
|
5508
5513
|
* This operation is not supported for directory buckets.
|
|
5509
5514
|
*
|
|
@@ -5547,7 +5552,7 @@ export declare const putBucketTagging: (input: PutBucketTaggingRequest) => effec
|
|
|
5547
5552
|
*
|
|
5548
5553
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5549
5554
|
*/
|
|
5550
|
-
export declare const putBucketVersioning: (input: PutBucketVersioningRequest) => effect.Effect<PutBucketVersioningResponse, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5555
|
+
export declare const putBucketVersioning: (input: PutBucketVersioningRequest) => effect.Effect<PutBucketVersioningResponse, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5551
5556
|
/**
|
|
5552
5557
|
* End of support notice: As of October 1, 2025, Amazon S3 has discontinued support for Email Grantee Access Control Lists (ACLs). If you attempt to use an Email Grantee ACL in a request after October 1, 2025,
|
|
5553
5558
|
* the request will receive an `HTTP 405` (Method Not Allowed) error.
|
|
@@ -5659,7 +5664,7 @@ export declare const putBucketVersioning: (input: PutBucketVersioningRequest) =>
|
|
|
5659
5664
|
*
|
|
5660
5665
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5661
5666
|
*/
|
|
5662
|
-
export declare const putObject: (input: PutObjectRequest) => effect.Effect<PutObjectOutput, EncryptionTypeMismatch | InvalidRequest | InvalidWriteOffset | TooManyParts | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5667
|
+
export declare const putObject: (input: PutObjectRequest) => effect.Effect<PutObjectOutput, EncryptionTypeMismatch | InvalidRequest | InvalidWriteOffset | TooManyParts | RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5663
5668
|
/**
|
|
5664
5669
|
* End of support notice: As of October 1, 2025, Amazon S3 has discontinued support for Email Grantee Access Control Lists (ACLs). If you attempt to use an Email Grantee ACL in a request after October 1, 2025,
|
|
5665
5670
|
* the request will receive an `HTTP 405` (Method Not Allowed) error.
|
|
@@ -5803,7 +5808,7 @@ export declare const putObject: (input: PutObjectRequest) => effect.Effect<PutOb
|
|
|
5803
5808
|
*
|
|
5804
5809
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5805
5810
|
*/
|
|
5806
|
-
export declare const putObjectAcl: (input: PutObjectAclRequest) => effect.Effect<PutObjectAclOutput, NoSuchKey | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5811
|
+
export declare const putObjectAcl: (input: PutObjectAclRequest) => effect.Effect<PutObjectAclOutput, NoSuchKey | RequestLimitExceeded | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5807
5812
|
/**
|
|
5808
5813
|
* This operation is not supported for directory buckets.
|
|
5809
5814
|
*
|
|
@@ -5844,7 +5849,7 @@ export declare const putObjectAcl: (input: PutObjectAclRequest) => effect.Effect
|
|
|
5844
5849
|
*
|
|
5845
5850
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5846
5851
|
*/
|
|
5847
|
-
export declare const putObjectTagging: (input: PutObjectTaggingRequest) => effect.Effect<PutObjectTaggingOutput, NoSuchKey | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5852
|
+
export declare const putObjectTagging: (input: PutObjectTaggingRequest) => effect.Effect<PutObjectTaggingOutput, RequestLimitExceeded | NoSuchKey | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5848
5853
|
/**
|
|
5849
5854
|
* This operation is not supported for directory buckets.
|
|
5850
5855
|
*
|
|
@@ -5875,7 +5880,7 @@ export declare const putObjectTagging: (input: PutObjectTaggingRequest) => effec
|
|
|
5875
5880
|
*
|
|
5876
5881
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
5877
5882
|
*/
|
|
5878
|
-
export declare const putPublicAccessBlock: (input: PutPublicAccessBlockRequest) => effect.Effect<PutPublicAccessBlockResponse, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5883
|
+
export declare const putPublicAccessBlock: (input: PutPublicAccessBlockRequest) => effect.Effect<PutPublicAccessBlockResponse, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
5879
5884
|
/**
|
|
5880
5885
|
* Uploads a part in a multipart upload.
|
|
5881
5886
|
*
|
|
@@ -6016,7 +6021,7 @@ export declare const putPublicAccessBlock: (input: PutPublicAccessBlockRequest)
|
|
|
6016
6021
|
*
|
|
6017
6022
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6018
6023
|
*/
|
|
6019
|
-
export declare const uploadPart: (input: UploadPartRequest) => effect.Effect<UploadPartOutput, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6024
|
+
export declare const uploadPart: (input: UploadPartRequest) => effect.Effect<UploadPartOutput, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6020
6025
|
/**
|
|
6021
6026
|
* Creates an S3 Metadata V2 metadata configuration for a general purpose bucket. For more information, see
|
|
6022
6027
|
* Accelerating
|
|
@@ -6241,7 +6246,7 @@ export declare const createSession: (input: CreateSessionRequest) => effect.Effe
|
|
|
6241
6246
|
*
|
|
6242
6247
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6243
6248
|
*/
|
|
6244
|
-
export declare const getBucketPolicyStatus: (input: GetBucketPolicyStatusRequest) => effect.Effect<GetBucketPolicyStatusOutput, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6249
|
+
export declare const getBucketPolicyStatus: (input: GetBucketPolicyStatusRequest) => effect.Effect<GetBucketPolicyStatusOutput, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6245
6250
|
/**
|
|
6246
6251
|
* Retrieves an object from Amazon S3.
|
|
6247
6252
|
*
|
|
@@ -6374,7 +6379,7 @@ export declare const getBucketPolicyStatus: (input: GetBucketPolicyStatusRequest
|
|
|
6374
6379
|
*
|
|
6375
6380
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6376
6381
|
*/
|
|
6377
|
-
export declare const getObject: (input: GetObjectRequest) => effect.Effect<GetObjectOutput, InvalidObjectState | NoSuchKey | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6382
|
+
export declare const getObject: (input: GetObjectRequest) => effect.Effect<GetObjectOutput, InvalidObjectState | NoSuchKey | RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6378
6383
|
/**
|
|
6379
6384
|
* This operation is not supported for directory buckets.
|
|
6380
6385
|
*
|
|
@@ -6394,9 +6399,9 @@ export declare const getObject: (input: GetObjectRequest) => effect.Effect<GetOb
|
|
|
6394
6399
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6395
6400
|
*/
|
|
6396
6401
|
export declare const listBuckets: {
|
|
6397
|
-
(input: ListBucketsRequest): effect.Effect<ListBucketsOutput, RequestError | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6398
|
-
pages: (input: ListBucketsRequest) => stream.Stream<ListBucketsOutput, RequestError | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6399
|
-
items: (input: ListBucketsRequest) => stream.Stream<Bucket, RequestError | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6402
|
+
(input: ListBucketsRequest): effect.Effect<ListBucketsOutput, RequestLimitExceeded | RequestError | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6403
|
+
pages: (input: ListBucketsRequest) => stream.Stream<ListBucketsOutput, RequestLimitExceeded | RequestError | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6404
|
+
items: (input: ListBucketsRequest) => stream.Stream<Bucket, RequestLimitExceeded | RequestError | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6400
6405
|
};
|
|
6401
6406
|
/**
|
|
6402
6407
|
* This operation lists in-progress multipart uploads in a bucket. An in-progress multipart upload is a
|
|
@@ -6485,7 +6490,7 @@ export declare const listBuckets: {
|
|
|
6485
6490
|
*
|
|
6486
6491
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6487
6492
|
*/
|
|
6488
|
-
export declare const listMultipartUploads: (input: ListMultipartUploadsRequest) => effect.Effect<ListMultipartUploadsOutput, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6493
|
+
export declare const listMultipartUploads: (input: ListMultipartUploadsRequest) => effect.Effect<ListMultipartUploadsOutput, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6489
6494
|
/**
|
|
6490
6495
|
* This operation is not supported for directory buckets.
|
|
6491
6496
|
*
|
|
@@ -6512,7 +6517,7 @@ export declare const listMultipartUploads: (input: ListMultipartUploadsRequest)
|
|
|
6512
6517
|
*
|
|
6513
6518
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6514
6519
|
*/
|
|
6515
|
-
export declare const listObjectVersions: (input: ListObjectVersionsRequest) => effect.Effect<ListObjectVersionsOutput, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6520
|
+
export declare const listObjectVersions: (input: ListObjectVersionsRequest) => effect.Effect<ListObjectVersionsOutput, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6516
6521
|
/**
|
|
6517
6522
|
* Lists the parts that have been uploaded for a specific multipart upload.
|
|
6518
6523
|
*
|
|
@@ -6576,9 +6581,9 @@ export declare const listObjectVersions: (input: ListObjectVersionsRequest) => e
|
|
|
6576
6581
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6577
6582
|
*/
|
|
6578
6583
|
export declare const listParts: {
|
|
6579
|
-
(input: ListPartsRequest): effect.Effect<ListPartsOutput, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6580
|
-
pages: (input: ListPartsRequest) => stream.Stream<ListPartsOutput, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6581
|
-
items: (input: ListPartsRequest) => stream.Stream<Part, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6584
|
+
(input: ListPartsRequest): effect.Effect<ListPartsOutput, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6585
|
+
pages: (input: ListPartsRequest) => stream.Stream<ListPartsOutput, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6586
|
+
items: (input: ListPartsRequest) => stream.Stream<Part, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6582
6587
|
};
|
|
6583
6588
|
/**
|
|
6584
6589
|
* This operation is not supported for directory buckets.
|
|
@@ -6626,7 +6631,7 @@ export declare const listParts: {
|
|
|
6626
6631
|
*
|
|
6627
6632
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6628
6633
|
*/
|
|
6629
|
-
export declare const putBucketCors: (input: PutBucketCorsRequest) => effect.Effect<PutBucketCorsResponse, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6634
|
+
export declare const putBucketCors: (input: PutBucketCorsRequest) => effect.Effect<PutBucketCorsResponse, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6630
6635
|
/**
|
|
6631
6636
|
* This operation is not supported for directory buckets.
|
|
6632
6637
|
*
|
|
@@ -6644,7 +6649,7 @@ export declare const putBucketCors: (input: PutBucketCorsRequest) => effect.Effe
|
|
|
6644
6649
|
*
|
|
6645
6650
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6646
6651
|
*/
|
|
6647
|
-
export declare const putBucketOwnershipControls: (input: PutBucketOwnershipControlsRequest) => effect.Effect<PutBucketOwnershipControlsResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6652
|
+
export declare const putBucketOwnershipControls: (input: PutBucketOwnershipControlsRequest) => effect.Effect<PutBucketOwnershipControlsResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6648
6653
|
/**
|
|
6649
6654
|
* This operation is not supported for directory buckets.
|
|
6650
6655
|
*
|
|
@@ -6654,7 +6659,7 @@ export declare const putBucketOwnershipControls: (input: PutBucketOwnershipContr
|
|
|
6654
6659
|
*
|
|
6655
6660
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6656
6661
|
*/
|
|
6657
|
-
export declare const putObjectLegalHold: (input: PutObjectLegalHoldRequest) => effect.Effect<PutObjectLegalHoldOutput, MalformedXML | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6662
|
+
export declare const putObjectLegalHold: (input: PutObjectLegalHoldRequest) => effect.Effect<PutObjectLegalHoldOutput, RequestLimitExceeded | MalformedXML | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6658
6663
|
/**
|
|
6659
6664
|
* This operation is not supported for directory buckets.
|
|
6660
6665
|
*
|
|
@@ -6667,7 +6672,7 @@ export declare const putObjectLegalHold: (input: PutObjectLegalHoldRequest) => e
|
|
|
6667
6672
|
*
|
|
6668
6673
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6669
6674
|
*/
|
|
6670
|
-
export declare const putObjectRetention: (input: PutObjectRetentionRequest) => effect.Effect<PutObjectRetentionOutput, InvalidRequest | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6675
|
+
export declare const putObjectRetention: (input: PutObjectRetentionRequest) => effect.Effect<PutObjectRetentionOutput, RequestLimitExceeded | InvalidRequest | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6671
6676
|
/**
|
|
6672
6677
|
* Enables or disables a live inventory table for an S3 Metadata configuration on a general
|
|
6673
6678
|
* purpose bucket. For more information, see
|
|
@@ -6900,7 +6905,7 @@ export declare const updateBucketMetadataJournalTableConfiguration: (input: Upda
|
|
|
6900
6905
|
*
|
|
6901
6906
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
6902
6907
|
*/
|
|
6903
|
-
export declare const uploadPartCopy: (input: UploadPartCopyRequest) => effect.Effect<UploadPartCopyOutput, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6908
|
+
export declare const uploadPartCopy: (input: UploadPartCopyRequest) => effect.Effect<UploadPartCopyOutput, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
6904
6909
|
/**
|
|
6905
6910
|
* Completes a multipart upload by assembling previously uploaded parts.
|
|
6906
6911
|
*
|
|
@@ -7175,7 +7180,7 @@ export declare const completeMultipartUpload: (input: CompleteMultipartUploadReq
|
|
|
7175
7180
|
*
|
|
7176
7181
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7177
7182
|
*/
|
|
7178
|
-
export declare const copyObject: (input: CopyObjectRequest) => effect.Effect<CopyObjectOutput, ObjectNotInActiveTierError | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7183
|
+
export declare const copyObject: (input: CopyObjectRequest) => effect.Effect<CopyObjectOutput, ObjectNotInActiveTierError | RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7179
7184
|
/**
|
|
7180
7185
|
* This action creates an Amazon S3 bucket. To create an Amazon S3 on Outposts bucket, see
|
|
7181
7186
|
* `CreateBucket`
|
|
@@ -7281,7 +7286,7 @@ export declare const copyObject: (input: CopyObjectRequest) => effect.Effect<Cop
|
|
|
7281
7286
|
*
|
|
7282
7287
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7283
7288
|
*/
|
|
7284
|
-
export declare const createBucket: (input: CreateBucketRequest) => effect.Effect<CreateBucketOutput, BucketAlreadyExists | BucketAlreadyOwnedByYou | IllegalLocationConstraintException | InvalidArgument | InvalidBucketName | InvalidLocationConstraint | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7289
|
+
export declare const createBucket: (input: CreateBucketRequest) => effect.Effect<CreateBucketOutput, BucketAlreadyExists | BucketAlreadyOwnedByYou | RequestLimitExceeded | IllegalLocationConstraintException | InvalidArgument | InvalidBucketName | InvalidLocationConstraint | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7285
7290
|
/**
|
|
7286
7291
|
* Retrieves all of the metadata from an object without returning the object itself. This operation is
|
|
7287
7292
|
* useful if you're interested only in an object's metadata.
|
|
@@ -7449,7 +7454,7 @@ export declare const getObjectAttributes: (input: GetObjectAttributesRequest) =>
|
|
|
7449
7454
|
*
|
|
7450
7455
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7451
7456
|
*/
|
|
7452
|
-
export declare const listObjects: (input: ListObjectsRequest) => effect.Effect<ListObjectsOutput, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7457
|
+
export declare const listObjects: (input: ListObjectsRequest) => effect.Effect<ListObjectsOutput, NoSuchBucket | RequestLimitExceeded | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7453
7458
|
/**
|
|
7454
7459
|
* End of support notice: As of October 1, 2025, Amazon S3 has discontinued support for Email Grantee Access Control Lists (ACLs). If you attempt to use an Email Grantee ACL in a request after October 1, 2025,
|
|
7455
7460
|
* the request will receive an `HTTP 405` (Method Not Allowed) error.
|
|
@@ -7595,7 +7600,7 @@ export declare const listObjects: (input: ListObjectsRequest) => effect.Effect<L
|
|
|
7595
7600
|
*
|
|
7596
7601
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7597
7602
|
*/
|
|
7598
|
-
export declare const putBucketAcl: (input: PutBucketAclRequest) => effect.Effect<PutBucketAclResponse, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7603
|
+
export declare const putBucketAcl: (input: PutBucketAclRequest) => effect.Effect<PutBucketAclResponse, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7599
7604
|
/**
|
|
7600
7605
|
* This operation configures default encryption and Amazon S3 Bucket Keys for an existing bucket. You can also block encryption types using this operation.
|
|
7601
7606
|
*
|
|
@@ -7681,7 +7686,7 @@ export declare const putBucketAcl: (input: PutBucketAclRequest) => effect.Effect
|
|
|
7681
7686
|
*
|
|
7682
7687
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7683
7688
|
*/
|
|
7684
|
-
export declare const putBucketEncryption: (input: PutBucketEncryptionRequest) => effect.Effect<PutBucketEncryptionResponse, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7689
|
+
export declare const putBucketEncryption: (input: PutBucketEncryptionRequest) => effect.Effect<PutBucketEncryptionResponse, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7685
7690
|
/**
|
|
7686
7691
|
* This operation is not supported for directory buckets.
|
|
7687
7692
|
*
|
|
@@ -7729,7 +7734,7 @@ export declare const putBucketEncryption: (input: PutBucketEncryptionRequest) =>
|
|
|
7729
7734
|
*
|
|
7730
7735
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7731
7736
|
*/
|
|
7732
|
-
export declare const putBucketIntelligentTieringConfiguration: (input: PutBucketIntelligentTieringConfigurationRequest) => effect.Effect<PutBucketIntelligentTieringConfigurationResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7737
|
+
export declare const putBucketIntelligentTieringConfiguration: (input: PutBucketIntelligentTieringConfigurationRequest) => effect.Effect<PutBucketIntelligentTieringConfigurationResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7733
7738
|
/**
|
|
7734
7739
|
* This operation is not supported for directory buckets.
|
|
7735
7740
|
*
|
|
@@ -7765,7 +7770,7 @@ export declare const putBucketIntelligentTieringConfiguration: (input: PutBucket
|
|
|
7765
7770
|
*
|
|
7766
7771
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7767
7772
|
*/
|
|
7768
|
-
export declare const putBucketMetricsConfiguration: (input: PutBucketMetricsConfigurationRequest) => effect.Effect<PutBucketMetricsConfigurationResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7773
|
+
export declare const putBucketMetricsConfiguration: (input: PutBucketMetricsConfigurationRequest) => effect.Effect<PutBucketMetricsConfigurationResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7769
7774
|
/**
|
|
7770
7775
|
* This operation is not supported for directory buckets.
|
|
7771
7776
|
*
|
|
@@ -7837,7 +7842,7 @@ export declare const putBucketMetricsConfiguration: (input: PutBucketMetricsConf
|
|
|
7837
7842
|
*
|
|
7838
7843
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7839
7844
|
*/
|
|
7840
|
-
export declare const putBucketWebsite: (input: PutBucketWebsiteRequest) => effect.Effect<PutBucketWebsiteResponse, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7845
|
+
export declare const putBucketWebsite: (input: PutBucketWebsiteRequest) => effect.Effect<PutBucketWebsiteResponse, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7841
7846
|
/**
|
|
7842
7847
|
* This operation enables you to delete multiple objects from a bucket using a single HTTP request. If
|
|
7843
7848
|
* you know the object keys that you want to delete, then this operation provides a suitable alternative to
|
|
@@ -7930,7 +7935,7 @@ export declare const putBucketWebsite: (input: PutBucketWebsiteRequest) => effec
|
|
|
7930
7935
|
*
|
|
7931
7936
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7932
7937
|
*/
|
|
7933
|
-
export declare const deleteObjects: (input: DeleteObjectsRequest) => effect.Effect<DeleteObjectsOutput, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7938
|
+
export declare const deleteObjects: (input: DeleteObjectsRequest) => effect.Effect<DeleteObjectsOutput, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7934
7939
|
/**
|
|
7935
7940
|
* Retrieves the S3 Metadata configuration for a general purpose bucket. For more information, see
|
|
7936
7941
|
* Accelerating
|
|
@@ -7961,7 +7966,7 @@ export declare const deleteObjects: (input: DeleteObjectsRequest) => effect.Effe
|
|
|
7961
7966
|
*
|
|
7962
7967
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
7963
7968
|
*/
|
|
7964
|
-
export declare const getBucketMetadataConfiguration: (input: GetBucketMetadataConfigurationRequest) => effect.Effect<GetBucketMetadataConfigurationOutput, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7969
|
+
export declare const getBucketMetadataConfiguration: (input: GetBucketMetadataConfigurationRequest) => effect.Effect<GetBucketMetadataConfigurationOutput, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
7965
7970
|
/**
|
|
7966
7971
|
* We recommend that you retrieve your S3 Metadata configurations by using the V2
|
|
7967
7972
|
* GetBucketMetadataTableConfiguration API operation. We no longer recommend using the V1
|
|
@@ -7998,7 +8003,7 @@ export declare const getBucketMetadataConfiguration: (input: GetBucketMetadataCo
|
|
|
7998
8003
|
*
|
|
7999
8004
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8000
8005
|
*/
|
|
8001
|
-
export declare const getBucketMetadataTableConfiguration: (input: GetBucketMetadataTableConfigurationRequest) => effect.Effect<GetBucketMetadataTableConfigurationOutput, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8006
|
+
export declare const getBucketMetadataTableConfiguration: (input: GetBucketMetadataTableConfigurationRequest) => effect.Effect<GetBucketMetadataTableConfigurationOutput, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8002
8007
|
/**
|
|
8003
8008
|
* End of support notice: As of October 1, 2025, Amazon S3 has discontinued support for Email Grantee Access Control Lists (ACLs). If you attempt to use an Email Grantee ACL in a request after October 1, 2025,
|
|
8004
8009
|
* the request will receive an `HTTP 405` (Method Not Allowed) error.
|
|
@@ -8067,7 +8072,7 @@ export declare const getBucketMetadataTableConfiguration: (input: GetBucketMetad
|
|
|
8067
8072
|
*
|
|
8068
8073
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8069
8074
|
*/
|
|
8070
|
-
export declare const putBucketLogging: (input: PutBucketLoggingRequest) => effect.Effect<PutBucketLoggingResponse, NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8075
|
+
export declare const putBucketLogging: (input: PutBucketLoggingRequest) => effect.Effect<PutBucketLoggingResponse, RequestLimitExceeded | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8071
8076
|
/**
|
|
8072
8077
|
* This operation is not supported for directory buckets.
|
|
8073
8078
|
*
|
|
@@ -8087,7 +8092,7 @@ export declare const putBucketLogging: (input: PutBucketLoggingRequest) => effec
|
|
|
8087
8092
|
*
|
|
8088
8093
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8089
8094
|
*/
|
|
8090
|
-
export declare const putObjectLockConfiguration: (input: PutObjectLockConfigurationRequest) => effect.Effect<PutObjectLockConfigurationOutput, InvalidBucketState | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8095
|
+
export declare const putObjectLockConfiguration: (input: PutObjectLockConfigurationRequest) => effect.Effect<PutObjectLockConfigurationOutput, RequestLimitExceeded | InvalidBucketState | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8091
8096
|
/**
|
|
8092
8097
|
* This operation is not supported for directory buckets.
|
|
8093
8098
|
*
|
|
@@ -8224,7 +8229,7 @@ export declare const putBucketAnalyticsConfiguration: (input: PutBucketAnalytics
|
|
|
8224
8229
|
*
|
|
8225
8230
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8226
8231
|
*/
|
|
8227
|
-
export declare const putBucketInventoryConfiguration: (input: PutBucketInventoryConfigurationRequest) => effect.Effect<PutBucketInventoryConfigurationResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8232
|
+
export declare const putBucketInventoryConfiguration: (input: PutBucketInventoryConfigurationRequest) => effect.Effect<PutBucketInventoryConfigurationResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8228
8233
|
/**
|
|
8229
8234
|
* Creates a new lifecycle configuration for the bucket or replaces an existing lifecycle
|
|
8230
8235
|
* configuration. Keep in mind that this will overwrite an existing lifecycle configuration, so if you want
|
|
@@ -8321,7 +8326,7 @@ export declare const putBucketInventoryConfiguration: (input: PutBucketInventory
|
|
|
8321
8326
|
*
|
|
8322
8327
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8323
8328
|
*/
|
|
8324
|
-
export declare const putBucketLifecycleConfiguration: (input: PutBucketLifecycleConfigurationRequest) => effect.Effect<PutBucketLifecycleConfigurationOutput, InvalidRequest | MalformedXML | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8329
|
+
export declare const putBucketLifecycleConfiguration: (input: PutBucketLifecycleConfigurationRequest) => effect.Effect<PutBucketLifecycleConfigurationOutput, RequestLimitExceeded | InvalidRequest | MalformedXML | NoSuchBucket | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8325
8330
|
/**
|
|
8326
8331
|
* This operation is not supported for directory buckets.
|
|
8327
8332
|
*
|
|
@@ -8375,7 +8380,7 @@ export declare const putBucketLifecycleConfiguration: (input: PutBucketLifecycle
|
|
|
8375
8380
|
*
|
|
8376
8381
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8377
8382
|
*/
|
|
8378
|
-
export declare const putBucketNotificationConfiguration: (input: PutBucketNotificationConfigurationRequest) => effect.Effect<PutBucketNotificationConfigurationResponse, NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8383
|
+
export declare const putBucketNotificationConfiguration: (input: PutBucketNotificationConfigurationRequest) => effect.Effect<PutBucketNotificationConfigurationResponse, RequestLimitExceeded | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8379
8384
|
/**
|
|
8380
8385
|
* This operation is not supported for directory buckets.
|
|
8381
8386
|
*
|
|
@@ -8437,7 +8442,7 @@ export declare const putBucketNotificationConfiguration: (input: PutBucketNotifi
|
|
|
8437
8442
|
*
|
|
8438
8443
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8439
8444
|
*/
|
|
8440
|
-
export declare const putBucketReplication: (input: PutBucketReplicationRequest) => effect.Effect<PutBucketReplicationResponse, InvalidRequest | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8445
|
+
export declare const putBucketReplication: (input: PutBucketReplicationRequest) => effect.Effect<PutBucketReplicationResponse, RequestLimitExceeded | InvalidRequest | NoSuchBucket | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8441
8446
|
/**
|
|
8442
8447
|
* This operation is not supported for directory buckets.
|
|
8443
8448
|
*
|
|
@@ -8578,7 +8583,7 @@ export declare const putBucketReplication: (input: PutBucketReplicationRequest)
|
|
|
8578
8583
|
*
|
|
8579
8584
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8580
8585
|
*/
|
|
8581
|
-
export declare const restoreObject: (input: RestoreObjectRequest) => effect.Effect<RestoreObjectOutput, ObjectAlreadyInActiveTierError | NoSuchKey | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8586
|
+
export declare const restoreObject: (input: RestoreObjectRequest) => effect.Effect<RestoreObjectOutput, ObjectAlreadyInActiveTierError | RequestLimitExceeded | NoSuchKey | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8582
8587
|
/**
|
|
8583
8588
|
* This operation is not supported for directory buckets.
|
|
8584
8589
|
*
|
|
@@ -8670,6 +8675,6 @@ export declare const restoreObject: (input: RestoreObjectRequest) => effect.Effe
|
|
|
8670
8675
|
*
|
|
8671
8676
|
* You must URL encode any signed header values that contain spaces. For example, if your header value is `my file.txt`, containing two spaces after `my`, you must URL encode this value to `my%20%20file.txt`.
|
|
8672
8677
|
*/
|
|
8673
|
-
export declare const selectObjectContent: (input: SelectObjectContentRequest) => effect.Effect<SelectObjectContentOutput, PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8678
|
+
export declare const selectObjectContent: (input: SelectObjectContentRequest) => effect.Effect<SelectObjectContentOutput, RequestLimitExceeded | PermanentRedirect | CommonErrors, Credentials | Rgn | HttpClient.HttpClient>;
|
|
8674
8679
|
export {};
|
|
8675
8680
|
//# sourceMappingURL=s3.d.ts.map
|