@aws-sdk/client-s3 3.50.0 → 3.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -0
- package/dist-cjs/S3.js +15 -0
- package/dist-cjs/commands/CompleteMultipartUploadCommand.js +2 -0
- package/dist-cjs/commands/DeleteObjectsCommand.js +6 -2
- package/dist-cjs/commands/GetObjectAttributesCommand.js +40 -0
- package/dist-cjs/commands/GetObjectCommand.js +7 -0
- package/dist-cjs/commands/ListPartsCommand.js +2 -0
- package/dist-cjs/commands/PutBucketAccelerateConfigurationCommand.js +6 -0
- package/dist-cjs/commands/PutBucketAclCommand.js +6 -2
- package/dist-cjs/commands/PutBucketCorsCommand.js +6 -2
- package/dist-cjs/commands/PutBucketEncryptionCommand.js +6 -2
- package/dist-cjs/commands/PutBucketLifecycleConfigurationCommand.js +6 -2
- package/dist-cjs/commands/PutBucketLoggingCommand.js +6 -2
- package/dist-cjs/commands/PutBucketOwnershipControlsCommand.js +2 -2
- package/dist-cjs/commands/PutBucketPolicyCommand.js +6 -2
- package/dist-cjs/commands/PutBucketReplicationCommand.js +6 -2
- package/dist-cjs/commands/PutBucketRequestPaymentCommand.js +6 -2
- package/dist-cjs/commands/PutBucketTaggingCommand.js +6 -2
- package/dist-cjs/commands/PutBucketVersioningCommand.js +6 -2
- package/dist-cjs/commands/PutBucketWebsiteCommand.js +6 -2
- package/dist-cjs/commands/PutObjectAclCommand.js +6 -2
- package/dist-cjs/commands/PutObjectCommand.js +6 -0
- package/dist-cjs/commands/PutObjectLegalHoldCommand.js +6 -2
- package/dist-cjs/commands/PutObjectLockConfigurationCommand.js +6 -2
- package/dist-cjs/commands/PutObjectRetentionCommand.js +9 -5
- package/dist-cjs/commands/PutObjectTaggingCommand.js +9 -5
- package/dist-cjs/commands/PutPublicAccessBlockCommand.js +8 -4
- package/dist-cjs/commands/RestoreObjectCommand.js +7 -2
- package/dist-cjs/commands/UploadPartCommand.js +6 -0
- package/dist-cjs/commands/WriteGetObjectResponseCommand.js +0 -2
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/S3ServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +165 -41
- package/dist-cjs/models/models_1.js +51 -1
- package/dist-cjs/protocols/Aws_restXml.js +962 -1057
- package/dist-cjs/runtimeConfig.browser.js +17 -13
- package/dist-cjs/runtimeConfig.js +17 -14
- package/dist-es/S3.js +15 -0
- package/dist-es/commands/CompleteMultipartUploadCommand.js +2 -0
- package/dist-es/commands/DeleteObjectsCommand.js +6 -2
- package/dist-es/commands/GetObjectAttributesCommand.js +43 -0
- package/dist-es/commands/GetObjectCommand.js +7 -0
- package/dist-es/commands/ListPartsCommand.js +2 -0
- package/dist-es/commands/PutBucketAccelerateConfigurationCommand.js +6 -0
- package/dist-es/commands/PutBucketAclCommand.js +6 -2
- package/dist-es/commands/PutBucketCorsCommand.js +6 -2
- package/dist-es/commands/PutBucketEncryptionCommand.js +6 -2
- package/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +6 -2
- package/dist-es/commands/PutBucketLoggingCommand.js +6 -2
- package/dist-es/commands/PutBucketOwnershipControlsCommand.js +2 -2
- package/dist-es/commands/PutBucketPolicyCommand.js +6 -2
- package/dist-es/commands/PutBucketReplicationCommand.js +6 -2
- package/dist-es/commands/PutBucketRequestPaymentCommand.js +6 -2
- package/dist-es/commands/PutBucketTaggingCommand.js +6 -2
- package/dist-es/commands/PutBucketVersioningCommand.js +6 -2
- package/dist-es/commands/PutBucketWebsiteCommand.js +6 -2
- package/dist-es/commands/PutObjectAclCommand.js +6 -2
- package/dist-es/commands/PutObjectCommand.js +6 -0
- package/dist-es/commands/PutObjectLegalHoldCommand.js +6 -2
- package/dist-es/commands/PutObjectLockConfigurationCommand.js +6 -2
- package/dist-es/commands/PutObjectRetentionCommand.js +7 -3
- package/dist-es/commands/PutObjectTaggingCommand.js +7 -3
- package/dist-es/commands/PutPublicAccessBlockCommand.js +7 -3
- package/dist-es/commands/RestoreObjectCommand.js +7 -2
- package/dist-es/commands/UploadPartCommand.js +6 -0
- package/dist-es/commands/WriteGetObjectResponseCommand.js +0 -2
- package/dist-es/commands/index.js +1 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/S3ServiceException.js +12 -0
- package/dist-es/models/models_0.js +141 -27
- package/dist-es/models/models_1.js +38 -1
- package/dist-es/protocols/Aws_restXml.js +1366 -900
- package/dist-es/runtimeConfig.browser.js +5 -3
- package/dist-es/runtimeConfig.js +5 -4
- package/dist-types/S3.d.ts +332 -90
- package/dist-types/S3Client.d.ts +19 -7
- package/dist-types/commands/CopyObjectCommand.d.ts +11 -5
- package/dist-types/commands/CreateMultipartUploadCommand.d.ts +33 -11
- package/dist-types/commands/GetBucketCorsCommand.d.ts +7 -5
- package/dist-types/commands/GetBucketTaggingCommand.d.ts +1 -1
- package/dist-types/commands/GetObjectAclCommand.d.ts +9 -1
- package/dist-types/commands/GetObjectAttributesCommand.d.ts +190 -0
- package/dist-types/commands/GetObjectCommand.d.ts +3 -5
- package/dist-types/commands/GetObjectLegalHoldCommand.d.ts +11 -1
- package/dist-types/commands/GetObjectLockConfigurationCommand.d.ts +9 -0
- package/dist-types/commands/GetObjectRetentionCommand.d.ts +9 -0
- package/dist-types/commands/GetObjectTaggingCommand.d.ts +8 -3
- package/dist-types/commands/HeadObjectCommand.d.ts +6 -1
- package/dist-types/commands/ListBucketsCommand.d.ts +2 -1
- package/dist-types/commands/ListPartsCommand.d.ts +8 -0
- package/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +4 -4
- package/dist-types/commands/PutBucketEncryptionCommand.d.ts +3 -1
- package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +12 -4
- package/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/PutBucketVersioningCommand.d.ts +4 -4
- package/dist-types/commands/PutObjectLegalHoldCommand.d.ts +1 -1
- package/dist-types/commands/PutObjectRetentionCommand.d.ts +1 -8
- package/dist-types/commands/PutObjectTaggingCommand.d.ts +1 -1
- package/dist-types/commands/PutPublicAccessBlockCommand.d.ts +1 -1
- package/dist-types/commands/RestoreObjectCommand.d.ts +24 -32
- package/dist-types/commands/UploadPartCopyCommand.d.ts +4 -4
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/S3ServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +1065 -406
- package/dist-types/models/models_1.d.ts +434 -48
- package/dist-types/protocols/Aws_restXml.d.ts +3 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +3 -1
- package/dist-types/ts3.4/S3.d.ts +470 -0
- package/dist-types/ts3.4/S3Client.d.ts +184 -0
- package/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CopyObjectCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateBucketCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateMultipartUploadCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBucketCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBucketCorsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBucketEncryptionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBucketInventoryConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBucketLifecycleCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBucketMetricsConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBucketOwnershipControlsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBucketPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBucketReplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBucketTaggingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBucketWebsiteCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteObjectTaggingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteObjectsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeletePublicAccessBlockCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketAccelerateConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketAclCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketAnalyticsConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketCorsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketEncryptionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketInventoryConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketLifecycleConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketLocationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketLoggingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketMetricsConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketNotificationConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketOwnershipControlsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketPolicyStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketReplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketRequestPaymentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketTaggingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketVersioningCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBucketWebsiteCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetObjectAclCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetObjectCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetObjectLegalHoldCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetObjectLockConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetObjectRetentionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetObjectTaggingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPublicAccessBlockCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/HeadBucketCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/HeadObjectCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListBucketInventoryConfigurationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListBucketMetricsConfigurationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListBucketsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListObjectVersionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListObjectsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListObjectsV2Command.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPartsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketAccelerateConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketAclCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketAnalyticsConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutObjectCommand.d.ts +24 -0
- package/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SelectObjectContentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UploadPartCommand.d.ts +24 -0
- package/dist-types/ts3.4/commands/UploadPartCopyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/WriteGetObjectResponseCommand.d.ts +24 -0
- package/dist-types/ts3.4/commands/index.d.ts +93 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +7 -0
- package/dist-types/ts3.4/models/S3ServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3903 -0
- package/dist-types/ts3.4/models/models_1.d.ts +767 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListObjectsV2Paginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPartsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +281 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +49 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +50 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +48 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +15 -0
- package/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist-types/ts3.4/waiters/waitForBucketExists.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForBucketNotExists.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForObjectExists.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForObjectNotExists.d.ts +7 -0
- package/package.json +50 -47
|
@@ -0,0 +1,3903 @@
|
|
|
1
|
+
|
|
2
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Readable } from "stream";
|
|
4
|
+
import { S3ServiceException as __BaseException } from "./S3ServiceException";
|
|
5
|
+
|
|
6
|
+
export interface AbortIncompleteMultipartUpload {
|
|
7
|
+
|
|
8
|
+
DaysAfterInitiation?: number;
|
|
9
|
+
}
|
|
10
|
+
export declare namespace AbortIncompleteMultipartUpload {
|
|
11
|
+
|
|
12
|
+
const filterSensitiveLog: (obj: AbortIncompleteMultipartUpload) => any;
|
|
13
|
+
}
|
|
14
|
+
export declare type RequestCharged = "requester";
|
|
15
|
+
export interface AbortMultipartUploadOutput {
|
|
16
|
+
|
|
17
|
+
RequestCharged?: RequestCharged | string;
|
|
18
|
+
}
|
|
19
|
+
export declare namespace AbortMultipartUploadOutput {
|
|
20
|
+
|
|
21
|
+
const filterSensitiveLog: (obj: AbortMultipartUploadOutput) => any;
|
|
22
|
+
}
|
|
23
|
+
export declare type RequestPayer = "requester";
|
|
24
|
+
export interface AbortMultipartUploadRequest {
|
|
25
|
+
|
|
26
|
+
Bucket: string | undefined;
|
|
27
|
+
|
|
28
|
+
Key: string | undefined;
|
|
29
|
+
|
|
30
|
+
UploadId: string | undefined;
|
|
31
|
+
|
|
32
|
+
RequestPayer?: RequestPayer | string;
|
|
33
|
+
|
|
34
|
+
ExpectedBucketOwner?: string;
|
|
35
|
+
}
|
|
36
|
+
export declare namespace AbortMultipartUploadRequest {
|
|
37
|
+
|
|
38
|
+
const filterSensitiveLog: (obj: AbortMultipartUploadRequest) => any;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export declare class NoSuchUpload extends __BaseException {
|
|
42
|
+
readonly name: "NoSuchUpload";
|
|
43
|
+
readonly $fault: "client";
|
|
44
|
+
|
|
45
|
+
constructor(opts: __ExceptionOptionType<NoSuchUpload, __BaseException>);
|
|
46
|
+
}
|
|
47
|
+
export declare type BucketAccelerateStatus = "Enabled" | "Suspended";
|
|
48
|
+
|
|
49
|
+
export interface AccelerateConfiguration {
|
|
50
|
+
|
|
51
|
+
Status?: BucketAccelerateStatus | string;
|
|
52
|
+
}
|
|
53
|
+
export declare namespace AccelerateConfiguration {
|
|
54
|
+
|
|
55
|
+
const filterSensitiveLog: (obj: AccelerateConfiguration) => any;
|
|
56
|
+
}
|
|
57
|
+
export declare type Type = "AmazonCustomerByEmail" | "CanonicalUser" | "Group";
|
|
58
|
+
|
|
59
|
+
export interface Grantee {
|
|
60
|
+
|
|
61
|
+
DisplayName?: string;
|
|
62
|
+
|
|
63
|
+
EmailAddress?: string;
|
|
64
|
+
|
|
65
|
+
ID?: string;
|
|
66
|
+
|
|
67
|
+
URI?: string;
|
|
68
|
+
|
|
69
|
+
Type: Type | string | undefined;
|
|
70
|
+
}
|
|
71
|
+
export declare namespace Grantee {
|
|
72
|
+
|
|
73
|
+
const filterSensitiveLog: (obj: Grantee) => any;
|
|
74
|
+
}
|
|
75
|
+
export declare type Permission = "FULL_CONTROL" | "READ" | "READ_ACP" | "WRITE" | "WRITE_ACP";
|
|
76
|
+
|
|
77
|
+
export interface Grant {
|
|
78
|
+
|
|
79
|
+
Grantee?: Grantee;
|
|
80
|
+
|
|
81
|
+
Permission?: Permission | string;
|
|
82
|
+
}
|
|
83
|
+
export declare namespace Grant {
|
|
84
|
+
|
|
85
|
+
const filterSensitiveLog: (obj: Grant) => any;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export interface Owner {
|
|
89
|
+
|
|
90
|
+
DisplayName?: string;
|
|
91
|
+
|
|
92
|
+
ID?: string;
|
|
93
|
+
}
|
|
94
|
+
export declare namespace Owner {
|
|
95
|
+
|
|
96
|
+
const filterSensitiveLog: (obj: Owner) => any;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
export interface AccessControlPolicy {
|
|
100
|
+
|
|
101
|
+
Grants?: Grant[];
|
|
102
|
+
|
|
103
|
+
Owner?: Owner;
|
|
104
|
+
}
|
|
105
|
+
export declare namespace AccessControlPolicy {
|
|
106
|
+
|
|
107
|
+
const filterSensitiveLog: (obj: AccessControlPolicy) => any;
|
|
108
|
+
}
|
|
109
|
+
export declare type OwnerOverride = "Destination";
|
|
110
|
+
|
|
111
|
+
export interface AccessControlTranslation {
|
|
112
|
+
|
|
113
|
+
Owner: OwnerOverride | string | undefined;
|
|
114
|
+
}
|
|
115
|
+
export declare namespace AccessControlTranslation {
|
|
116
|
+
|
|
117
|
+
const filterSensitiveLog: (obj: AccessControlTranslation) => any;
|
|
118
|
+
}
|
|
119
|
+
export declare type ServerSideEncryption = "AES256" | "aws:kms";
|
|
120
|
+
export interface CompleteMultipartUploadOutput {
|
|
121
|
+
|
|
122
|
+
Location?: string;
|
|
123
|
+
|
|
124
|
+
Bucket?: string;
|
|
125
|
+
|
|
126
|
+
Key?: string;
|
|
127
|
+
|
|
128
|
+
Expiration?: string;
|
|
129
|
+
|
|
130
|
+
ETag?: string;
|
|
131
|
+
|
|
132
|
+
ChecksumCRC32?: string;
|
|
133
|
+
|
|
134
|
+
ChecksumCRC32C?: string;
|
|
135
|
+
|
|
136
|
+
ChecksumSHA1?: string;
|
|
137
|
+
|
|
138
|
+
ChecksumSHA256?: string;
|
|
139
|
+
|
|
140
|
+
ServerSideEncryption?: ServerSideEncryption | string;
|
|
141
|
+
|
|
142
|
+
VersionId?: string;
|
|
143
|
+
|
|
144
|
+
SSEKMSKeyId?: string;
|
|
145
|
+
|
|
146
|
+
BucketKeyEnabled?: boolean;
|
|
147
|
+
|
|
148
|
+
RequestCharged?: RequestCharged | string;
|
|
149
|
+
}
|
|
150
|
+
export declare namespace CompleteMultipartUploadOutput {
|
|
151
|
+
|
|
152
|
+
const filterSensitiveLog: (obj: CompleteMultipartUploadOutput) => any;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
export interface CompletedPart {
|
|
156
|
+
|
|
157
|
+
ETag?: string;
|
|
158
|
+
|
|
159
|
+
ChecksumCRC32?: string;
|
|
160
|
+
|
|
161
|
+
ChecksumCRC32C?: string;
|
|
162
|
+
|
|
163
|
+
ChecksumSHA1?: string;
|
|
164
|
+
|
|
165
|
+
ChecksumSHA256?: string;
|
|
166
|
+
|
|
167
|
+
PartNumber?: number;
|
|
168
|
+
}
|
|
169
|
+
export declare namespace CompletedPart {
|
|
170
|
+
|
|
171
|
+
const filterSensitiveLog: (obj: CompletedPart) => any;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
export interface CompletedMultipartUpload {
|
|
175
|
+
|
|
176
|
+
Parts?: CompletedPart[];
|
|
177
|
+
}
|
|
178
|
+
export declare namespace CompletedMultipartUpload {
|
|
179
|
+
|
|
180
|
+
const filterSensitiveLog: (obj: CompletedMultipartUpload) => any;
|
|
181
|
+
}
|
|
182
|
+
export interface CompleteMultipartUploadRequest {
|
|
183
|
+
|
|
184
|
+
Bucket: string | undefined;
|
|
185
|
+
|
|
186
|
+
Key: string | undefined;
|
|
187
|
+
|
|
188
|
+
MultipartUpload?: CompletedMultipartUpload;
|
|
189
|
+
|
|
190
|
+
UploadId: string | undefined;
|
|
191
|
+
|
|
192
|
+
ChecksumCRC32?: string;
|
|
193
|
+
|
|
194
|
+
ChecksumCRC32C?: string;
|
|
195
|
+
|
|
196
|
+
ChecksumSHA1?: string;
|
|
197
|
+
|
|
198
|
+
ChecksumSHA256?: string;
|
|
199
|
+
|
|
200
|
+
RequestPayer?: RequestPayer | string;
|
|
201
|
+
|
|
202
|
+
ExpectedBucketOwner?: string;
|
|
203
|
+
|
|
204
|
+
SSECustomerAlgorithm?: string;
|
|
205
|
+
|
|
206
|
+
SSECustomerKey?: string;
|
|
207
|
+
|
|
208
|
+
SSECustomerKeyMD5?: string;
|
|
209
|
+
}
|
|
210
|
+
export declare namespace CompleteMultipartUploadRequest {
|
|
211
|
+
|
|
212
|
+
const filterSensitiveLog: (obj: CompleteMultipartUploadRequest) => any;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
export interface CopyObjectResult {
|
|
216
|
+
|
|
217
|
+
ETag?: string;
|
|
218
|
+
|
|
219
|
+
LastModified?: Date;
|
|
220
|
+
|
|
221
|
+
ChecksumCRC32?: string;
|
|
222
|
+
|
|
223
|
+
ChecksumCRC32C?: string;
|
|
224
|
+
|
|
225
|
+
ChecksumSHA1?: string;
|
|
226
|
+
|
|
227
|
+
ChecksumSHA256?: string;
|
|
228
|
+
}
|
|
229
|
+
export declare namespace CopyObjectResult {
|
|
230
|
+
|
|
231
|
+
const filterSensitiveLog: (obj: CopyObjectResult) => any;
|
|
232
|
+
}
|
|
233
|
+
export interface CopyObjectOutput {
|
|
234
|
+
|
|
235
|
+
CopyObjectResult?: CopyObjectResult;
|
|
236
|
+
|
|
237
|
+
Expiration?: string;
|
|
238
|
+
|
|
239
|
+
CopySourceVersionId?: string;
|
|
240
|
+
|
|
241
|
+
VersionId?: string;
|
|
242
|
+
|
|
243
|
+
ServerSideEncryption?: ServerSideEncryption | string;
|
|
244
|
+
|
|
245
|
+
SSECustomerAlgorithm?: string;
|
|
246
|
+
|
|
247
|
+
SSECustomerKeyMD5?: string;
|
|
248
|
+
|
|
249
|
+
SSEKMSKeyId?: string;
|
|
250
|
+
|
|
251
|
+
SSEKMSEncryptionContext?: string;
|
|
252
|
+
|
|
253
|
+
BucketKeyEnabled?: boolean;
|
|
254
|
+
|
|
255
|
+
RequestCharged?: RequestCharged | string;
|
|
256
|
+
}
|
|
257
|
+
export declare namespace CopyObjectOutput {
|
|
258
|
+
|
|
259
|
+
const filterSensitiveLog: (obj: CopyObjectOutput) => any;
|
|
260
|
+
}
|
|
261
|
+
export declare type ObjectCannedACL = "authenticated-read" | "aws-exec-read" | "bucket-owner-full-control" | "bucket-owner-read" | "private" | "public-read" | "public-read-write";
|
|
262
|
+
export declare enum ChecksumAlgorithm {
|
|
263
|
+
CRC32 = "CRC32",
|
|
264
|
+
CRC32C = "CRC32C",
|
|
265
|
+
SHA1 = "SHA1",
|
|
266
|
+
SHA256 = "SHA256"
|
|
267
|
+
}
|
|
268
|
+
export declare type MetadataDirective = "COPY" | "REPLACE";
|
|
269
|
+
export declare type ObjectLockLegalHoldStatus = "OFF" | "ON";
|
|
270
|
+
export declare type ObjectLockMode = "COMPLIANCE" | "GOVERNANCE";
|
|
271
|
+
export declare type StorageClass = "DEEP_ARCHIVE" | "GLACIER" | "GLACIER_IR" | "INTELLIGENT_TIERING" | "ONEZONE_IA" | "OUTPOSTS" | "REDUCED_REDUNDANCY" | "STANDARD" | "STANDARD_IA";
|
|
272
|
+
export declare type TaggingDirective = "COPY" | "REPLACE";
|
|
273
|
+
export interface CopyObjectRequest {
|
|
274
|
+
|
|
275
|
+
ACL?: ObjectCannedACL | string;
|
|
276
|
+
|
|
277
|
+
Bucket: string | undefined;
|
|
278
|
+
|
|
279
|
+
CacheControl?: string;
|
|
280
|
+
|
|
281
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
282
|
+
|
|
283
|
+
ContentDisposition?: string;
|
|
284
|
+
|
|
285
|
+
ContentEncoding?: string;
|
|
286
|
+
|
|
287
|
+
ContentLanguage?: string;
|
|
288
|
+
|
|
289
|
+
ContentType?: string;
|
|
290
|
+
|
|
291
|
+
CopySource: string | undefined;
|
|
292
|
+
|
|
293
|
+
CopySourceIfMatch?: string;
|
|
294
|
+
|
|
295
|
+
CopySourceIfModifiedSince?: Date;
|
|
296
|
+
|
|
297
|
+
CopySourceIfNoneMatch?: string;
|
|
298
|
+
|
|
299
|
+
CopySourceIfUnmodifiedSince?: Date;
|
|
300
|
+
|
|
301
|
+
Expires?: Date;
|
|
302
|
+
|
|
303
|
+
GrantFullControl?: string;
|
|
304
|
+
|
|
305
|
+
GrantRead?: string;
|
|
306
|
+
|
|
307
|
+
GrantReadACP?: string;
|
|
308
|
+
|
|
309
|
+
GrantWriteACP?: string;
|
|
310
|
+
|
|
311
|
+
Key: string | undefined;
|
|
312
|
+
|
|
313
|
+
Metadata?: {
|
|
314
|
+
[key: string]: string;
|
|
315
|
+
};
|
|
316
|
+
|
|
317
|
+
MetadataDirective?: MetadataDirective | string;
|
|
318
|
+
|
|
319
|
+
TaggingDirective?: TaggingDirective | string;
|
|
320
|
+
|
|
321
|
+
ServerSideEncryption?: ServerSideEncryption | string;
|
|
322
|
+
|
|
323
|
+
StorageClass?: StorageClass | string;
|
|
324
|
+
|
|
325
|
+
WebsiteRedirectLocation?: string;
|
|
326
|
+
|
|
327
|
+
SSECustomerAlgorithm?: string;
|
|
328
|
+
|
|
329
|
+
SSECustomerKey?: string;
|
|
330
|
+
|
|
331
|
+
SSECustomerKeyMD5?: string;
|
|
332
|
+
|
|
333
|
+
SSEKMSKeyId?: string;
|
|
334
|
+
|
|
335
|
+
SSEKMSEncryptionContext?: string;
|
|
336
|
+
|
|
337
|
+
BucketKeyEnabled?: boolean;
|
|
338
|
+
|
|
339
|
+
CopySourceSSECustomerAlgorithm?: string;
|
|
340
|
+
|
|
341
|
+
CopySourceSSECustomerKey?: string;
|
|
342
|
+
|
|
343
|
+
CopySourceSSECustomerKeyMD5?: string;
|
|
344
|
+
|
|
345
|
+
RequestPayer?: RequestPayer | string;
|
|
346
|
+
|
|
347
|
+
Tagging?: string;
|
|
348
|
+
|
|
349
|
+
ObjectLockMode?: ObjectLockMode | string;
|
|
350
|
+
|
|
351
|
+
ObjectLockRetainUntilDate?: Date;
|
|
352
|
+
|
|
353
|
+
ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus | string;
|
|
354
|
+
|
|
355
|
+
ExpectedBucketOwner?: string;
|
|
356
|
+
|
|
357
|
+
ExpectedSourceBucketOwner?: string;
|
|
358
|
+
}
|
|
359
|
+
export declare namespace CopyObjectRequest {
|
|
360
|
+
|
|
361
|
+
const filterSensitiveLog: (obj: CopyObjectRequest) => any;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
export declare class ObjectNotInActiveTierError extends __BaseException {
|
|
365
|
+
readonly name: "ObjectNotInActiveTierError";
|
|
366
|
+
readonly $fault: "client";
|
|
367
|
+
|
|
368
|
+
constructor(opts: __ExceptionOptionType<ObjectNotInActiveTierError, __BaseException>);
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
export declare class BucketAlreadyExists extends __BaseException {
|
|
372
|
+
readonly name: "BucketAlreadyExists";
|
|
373
|
+
readonly $fault: "client";
|
|
374
|
+
|
|
375
|
+
constructor(opts: __ExceptionOptionType<BucketAlreadyExists, __BaseException>);
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
export declare class BucketAlreadyOwnedByYou extends __BaseException {
|
|
379
|
+
readonly name: "BucketAlreadyOwnedByYou";
|
|
380
|
+
readonly $fault: "client";
|
|
381
|
+
|
|
382
|
+
constructor(opts: __ExceptionOptionType<BucketAlreadyOwnedByYou, __BaseException>);
|
|
383
|
+
}
|
|
384
|
+
export interface CreateBucketOutput {
|
|
385
|
+
|
|
386
|
+
Location?: string;
|
|
387
|
+
}
|
|
388
|
+
export declare namespace CreateBucketOutput {
|
|
389
|
+
|
|
390
|
+
const filterSensitiveLog: (obj: CreateBucketOutput) => any;
|
|
391
|
+
}
|
|
392
|
+
export declare type BucketCannedACL = "authenticated-read" | "private" | "public-read" | "public-read-write";
|
|
393
|
+
export declare type BucketLocationConstraint = "EU" | "af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-southeast-1" | "ap-southeast-2" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-north-1" | "eu-south-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2";
|
|
394
|
+
|
|
395
|
+
export interface CreateBucketConfiguration {
|
|
396
|
+
|
|
397
|
+
LocationConstraint?: BucketLocationConstraint | string;
|
|
398
|
+
}
|
|
399
|
+
export declare namespace CreateBucketConfiguration {
|
|
400
|
+
|
|
401
|
+
const filterSensitiveLog: (obj: CreateBucketConfiguration) => any;
|
|
402
|
+
}
|
|
403
|
+
export declare type ObjectOwnership = "BucketOwnerEnforced" | "BucketOwnerPreferred" | "ObjectWriter";
|
|
404
|
+
export interface CreateBucketRequest {
|
|
405
|
+
|
|
406
|
+
ACL?: BucketCannedACL | string;
|
|
407
|
+
|
|
408
|
+
Bucket: string | undefined;
|
|
409
|
+
|
|
410
|
+
CreateBucketConfiguration?: CreateBucketConfiguration;
|
|
411
|
+
|
|
412
|
+
GrantFullControl?: string;
|
|
413
|
+
|
|
414
|
+
GrantRead?: string;
|
|
415
|
+
|
|
416
|
+
GrantReadACP?: string;
|
|
417
|
+
|
|
418
|
+
GrantWrite?: string;
|
|
419
|
+
|
|
420
|
+
GrantWriteACP?: string;
|
|
421
|
+
|
|
422
|
+
ObjectLockEnabledForBucket?: boolean;
|
|
423
|
+
|
|
424
|
+
ObjectOwnership?: ObjectOwnership | string;
|
|
425
|
+
}
|
|
426
|
+
export declare namespace CreateBucketRequest {
|
|
427
|
+
|
|
428
|
+
const filterSensitiveLog: (obj: CreateBucketRequest) => any;
|
|
429
|
+
}
|
|
430
|
+
export interface CreateMultipartUploadOutput {
|
|
431
|
+
|
|
432
|
+
AbortDate?: Date;
|
|
433
|
+
|
|
434
|
+
AbortRuleId?: string;
|
|
435
|
+
|
|
436
|
+
Bucket?: string;
|
|
437
|
+
|
|
438
|
+
Key?: string;
|
|
439
|
+
|
|
440
|
+
UploadId?: string;
|
|
441
|
+
|
|
442
|
+
ServerSideEncryption?: ServerSideEncryption | string;
|
|
443
|
+
|
|
444
|
+
SSECustomerAlgorithm?: string;
|
|
445
|
+
|
|
446
|
+
SSECustomerKeyMD5?: string;
|
|
447
|
+
|
|
448
|
+
SSEKMSKeyId?: string;
|
|
449
|
+
|
|
450
|
+
SSEKMSEncryptionContext?: string;
|
|
451
|
+
|
|
452
|
+
BucketKeyEnabled?: boolean;
|
|
453
|
+
|
|
454
|
+
RequestCharged?: RequestCharged | string;
|
|
455
|
+
|
|
456
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
457
|
+
}
|
|
458
|
+
export declare namespace CreateMultipartUploadOutput {
|
|
459
|
+
|
|
460
|
+
const filterSensitiveLog: (obj: CreateMultipartUploadOutput) => any;
|
|
461
|
+
}
|
|
462
|
+
export interface CreateMultipartUploadRequest {
|
|
463
|
+
|
|
464
|
+
ACL?: ObjectCannedACL | string;
|
|
465
|
+
|
|
466
|
+
Bucket: string | undefined;
|
|
467
|
+
|
|
468
|
+
CacheControl?: string;
|
|
469
|
+
|
|
470
|
+
ContentDisposition?: string;
|
|
471
|
+
|
|
472
|
+
ContentEncoding?: string;
|
|
473
|
+
|
|
474
|
+
ContentLanguage?: string;
|
|
475
|
+
|
|
476
|
+
ContentType?: string;
|
|
477
|
+
|
|
478
|
+
Expires?: Date;
|
|
479
|
+
|
|
480
|
+
GrantFullControl?: string;
|
|
481
|
+
|
|
482
|
+
GrantRead?: string;
|
|
483
|
+
|
|
484
|
+
GrantReadACP?: string;
|
|
485
|
+
|
|
486
|
+
GrantWriteACP?: string;
|
|
487
|
+
|
|
488
|
+
Key: string | undefined;
|
|
489
|
+
|
|
490
|
+
Metadata?: {
|
|
491
|
+
[key: string]: string;
|
|
492
|
+
};
|
|
493
|
+
|
|
494
|
+
ServerSideEncryption?: ServerSideEncryption | string;
|
|
495
|
+
|
|
496
|
+
StorageClass?: StorageClass | string;
|
|
497
|
+
|
|
498
|
+
WebsiteRedirectLocation?: string;
|
|
499
|
+
|
|
500
|
+
SSECustomerAlgorithm?: string;
|
|
501
|
+
|
|
502
|
+
SSECustomerKey?: string;
|
|
503
|
+
|
|
504
|
+
SSECustomerKeyMD5?: string;
|
|
505
|
+
|
|
506
|
+
SSEKMSKeyId?: string;
|
|
507
|
+
|
|
508
|
+
SSEKMSEncryptionContext?: string;
|
|
509
|
+
|
|
510
|
+
BucketKeyEnabled?: boolean;
|
|
511
|
+
|
|
512
|
+
RequestPayer?: RequestPayer | string;
|
|
513
|
+
|
|
514
|
+
Tagging?: string;
|
|
515
|
+
|
|
516
|
+
ObjectLockMode?: ObjectLockMode | string;
|
|
517
|
+
|
|
518
|
+
ObjectLockRetainUntilDate?: Date;
|
|
519
|
+
|
|
520
|
+
ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus | string;
|
|
521
|
+
|
|
522
|
+
ExpectedBucketOwner?: string;
|
|
523
|
+
|
|
524
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
525
|
+
}
|
|
526
|
+
export declare namespace CreateMultipartUploadRequest {
|
|
527
|
+
|
|
528
|
+
const filterSensitiveLog: (obj: CreateMultipartUploadRequest) => any;
|
|
529
|
+
}
|
|
530
|
+
export interface DeleteBucketRequest {
|
|
531
|
+
|
|
532
|
+
Bucket: string | undefined;
|
|
533
|
+
|
|
534
|
+
ExpectedBucketOwner?: string;
|
|
535
|
+
}
|
|
536
|
+
export declare namespace DeleteBucketRequest {
|
|
537
|
+
|
|
538
|
+
const filterSensitiveLog: (obj: DeleteBucketRequest) => any;
|
|
539
|
+
}
|
|
540
|
+
export interface DeleteBucketAnalyticsConfigurationRequest {
|
|
541
|
+
|
|
542
|
+
Bucket: string | undefined;
|
|
543
|
+
|
|
544
|
+
Id: string | undefined;
|
|
545
|
+
|
|
546
|
+
ExpectedBucketOwner?: string;
|
|
547
|
+
}
|
|
548
|
+
export declare namespace DeleteBucketAnalyticsConfigurationRequest {
|
|
549
|
+
|
|
550
|
+
const filterSensitiveLog: (obj: DeleteBucketAnalyticsConfigurationRequest) => any;
|
|
551
|
+
}
|
|
552
|
+
export interface DeleteBucketCorsRequest {
|
|
553
|
+
|
|
554
|
+
Bucket: string | undefined;
|
|
555
|
+
|
|
556
|
+
ExpectedBucketOwner?: string;
|
|
557
|
+
}
|
|
558
|
+
export declare namespace DeleteBucketCorsRequest {
|
|
559
|
+
|
|
560
|
+
const filterSensitiveLog: (obj: DeleteBucketCorsRequest) => any;
|
|
561
|
+
}
|
|
562
|
+
export interface DeleteBucketEncryptionRequest {
|
|
563
|
+
|
|
564
|
+
Bucket: string | undefined;
|
|
565
|
+
|
|
566
|
+
ExpectedBucketOwner?: string;
|
|
567
|
+
}
|
|
568
|
+
export declare namespace DeleteBucketEncryptionRequest {
|
|
569
|
+
|
|
570
|
+
const filterSensitiveLog: (obj: DeleteBucketEncryptionRequest) => any;
|
|
571
|
+
}
|
|
572
|
+
export interface DeleteBucketIntelligentTieringConfigurationRequest {
|
|
573
|
+
|
|
574
|
+
Bucket: string | undefined;
|
|
575
|
+
|
|
576
|
+
Id: string | undefined;
|
|
577
|
+
}
|
|
578
|
+
export declare namespace DeleteBucketIntelligentTieringConfigurationRequest {
|
|
579
|
+
|
|
580
|
+
const filterSensitiveLog: (obj: DeleteBucketIntelligentTieringConfigurationRequest) => any;
|
|
581
|
+
}
|
|
582
|
+
export interface DeleteBucketInventoryConfigurationRequest {
|
|
583
|
+
|
|
584
|
+
Bucket: string | undefined;
|
|
585
|
+
|
|
586
|
+
Id: string | undefined;
|
|
587
|
+
|
|
588
|
+
ExpectedBucketOwner?: string;
|
|
589
|
+
}
|
|
590
|
+
export declare namespace DeleteBucketInventoryConfigurationRequest {
|
|
591
|
+
|
|
592
|
+
const filterSensitiveLog: (obj: DeleteBucketInventoryConfigurationRequest) => any;
|
|
593
|
+
}
|
|
594
|
+
export interface DeleteBucketLifecycleRequest {
|
|
595
|
+
|
|
596
|
+
Bucket: string | undefined;
|
|
597
|
+
|
|
598
|
+
ExpectedBucketOwner?: string;
|
|
599
|
+
}
|
|
600
|
+
export declare namespace DeleteBucketLifecycleRequest {
|
|
601
|
+
|
|
602
|
+
const filterSensitiveLog: (obj: DeleteBucketLifecycleRequest) => any;
|
|
603
|
+
}
|
|
604
|
+
export interface DeleteBucketMetricsConfigurationRequest {
|
|
605
|
+
|
|
606
|
+
Bucket: string | undefined;
|
|
607
|
+
|
|
608
|
+
Id: string | undefined;
|
|
609
|
+
|
|
610
|
+
ExpectedBucketOwner?: string;
|
|
611
|
+
}
|
|
612
|
+
export declare namespace DeleteBucketMetricsConfigurationRequest {
|
|
613
|
+
|
|
614
|
+
const filterSensitiveLog: (obj: DeleteBucketMetricsConfigurationRequest) => any;
|
|
615
|
+
}
|
|
616
|
+
export interface DeleteBucketOwnershipControlsRequest {
|
|
617
|
+
|
|
618
|
+
Bucket: string | undefined;
|
|
619
|
+
|
|
620
|
+
ExpectedBucketOwner?: string;
|
|
621
|
+
}
|
|
622
|
+
export declare namespace DeleteBucketOwnershipControlsRequest {
|
|
623
|
+
|
|
624
|
+
const filterSensitiveLog: (obj: DeleteBucketOwnershipControlsRequest) => any;
|
|
625
|
+
}
|
|
626
|
+
export interface DeleteBucketPolicyRequest {
|
|
627
|
+
|
|
628
|
+
Bucket: string | undefined;
|
|
629
|
+
|
|
630
|
+
ExpectedBucketOwner?: string;
|
|
631
|
+
}
|
|
632
|
+
export declare namespace DeleteBucketPolicyRequest {
|
|
633
|
+
|
|
634
|
+
const filterSensitiveLog: (obj: DeleteBucketPolicyRequest) => any;
|
|
635
|
+
}
|
|
636
|
+
export interface DeleteBucketReplicationRequest {
|
|
637
|
+
|
|
638
|
+
Bucket: string | undefined;
|
|
639
|
+
|
|
640
|
+
ExpectedBucketOwner?: string;
|
|
641
|
+
}
|
|
642
|
+
export declare namespace DeleteBucketReplicationRequest {
|
|
643
|
+
|
|
644
|
+
const filterSensitiveLog: (obj: DeleteBucketReplicationRequest) => any;
|
|
645
|
+
}
|
|
646
|
+
export interface DeleteBucketTaggingRequest {
|
|
647
|
+
|
|
648
|
+
Bucket: string | undefined;
|
|
649
|
+
|
|
650
|
+
ExpectedBucketOwner?: string;
|
|
651
|
+
}
|
|
652
|
+
export declare namespace DeleteBucketTaggingRequest {
|
|
653
|
+
|
|
654
|
+
const filterSensitiveLog: (obj: DeleteBucketTaggingRequest) => any;
|
|
655
|
+
}
|
|
656
|
+
export interface DeleteBucketWebsiteRequest {
|
|
657
|
+
|
|
658
|
+
Bucket: string | undefined;
|
|
659
|
+
|
|
660
|
+
ExpectedBucketOwner?: string;
|
|
661
|
+
}
|
|
662
|
+
export declare namespace DeleteBucketWebsiteRequest {
|
|
663
|
+
|
|
664
|
+
const filterSensitiveLog: (obj: DeleteBucketWebsiteRequest) => any;
|
|
665
|
+
}
|
|
666
|
+
export interface DeleteObjectOutput {
|
|
667
|
+
|
|
668
|
+
DeleteMarker?: boolean;
|
|
669
|
+
|
|
670
|
+
VersionId?: string;
|
|
671
|
+
|
|
672
|
+
RequestCharged?: RequestCharged | string;
|
|
673
|
+
}
|
|
674
|
+
export declare namespace DeleteObjectOutput {
|
|
675
|
+
|
|
676
|
+
const filterSensitiveLog: (obj: DeleteObjectOutput) => any;
|
|
677
|
+
}
|
|
678
|
+
export interface DeleteObjectRequest {
|
|
679
|
+
|
|
680
|
+
Bucket: string | undefined;
|
|
681
|
+
|
|
682
|
+
Key: string | undefined;
|
|
683
|
+
|
|
684
|
+
MFA?: string;
|
|
685
|
+
|
|
686
|
+
VersionId?: string;
|
|
687
|
+
|
|
688
|
+
RequestPayer?: RequestPayer | string;
|
|
689
|
+
|
|
690
|
+
BypassGovernanceRetention?: boolean;
|
|
691
|
+
|
|
692
|
+
ExpectedBucketOwner?: string;
|
|
693
|
+
}
|
|
694
|
+
export declare namespace DeleteObjectRequest {
|
|
695
|
+
|
|
696
|
+
const filterSensitiveLog: (obj: DeleteObjectRequest) => any;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
export interface DeletedObject {
|
|
700
|
+
|
|
701
|
+
Key?: string;
|
|
702
|
+
|
|
703
|
+
VersionId?: string;
|
|
704
|
+
|
|
705
|
+
DeleteMarker?: boolean;
|
|
706
|
+
|
|
707
|
+
DeleteMarkerVersionId?: string;
|
|
708
|
+
}
|
|
709
|
+
export declare namespace DeletedObject {
|
|
710
|
+
|
|
711
|
+
const filterSensitiveLog: (obj: DeletedObject) => any;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
export interface _Error {
|
|
715
|
+
|
|
716
|
+
Key?: string;
|
|
717
|
+
|
|
718
|
+
VersionId?: string;
|
|
719
|
+
|
|
720
|
+
Code?: string;
|
|
721
|
+
|
|
722
|
+
Message?: string;
|
|
723
|
+
}
|
|
724
|
+
export declare namespace _Error {
|
|
725
|
+
|
|
726
|
+
const filterSensitiveLog: (obj: _Error) => any;
|
|
727
|
+
}
|
|
728
|
+
export interface DeleteObjectsOutput {
|
|
729
|
+
|
|
730
|
+
Deleted?: DeletedObject[];
|
|
731
|
+
|
|
732
|
+
RequestCharged?: RequestCharged | string;
|
|
733
|
+
|
|
734
|
+
Errors?: _Error[];
|
|
735
|
+
}
|
|
736
|
+
export declare namespace DeleteObjectsOutput {
|
|
737
|
+
|
|
738
|
+
const filterSensitiveLog: (obj: DeleteObjectsOutput) => any;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
export interface ObjectIdentifier {
|
|
742
|
+
|
|
743
|
+
Key: string | undefined;
|
|
744
|
+
|
|
745
|
+
VersionId?: string;
|
|
746
|
+
}
|
|
747
|
+
export declare namespace ObjectIdentifier {
|
|
748
|
+
|
|
749
|
+
const filterSensitiveLog: (obj: ObjectIdentifier) => any;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
export interface Delete {
|
|
753
|
+
|
|
754
|
+
Objects: ObjectIdentifier[] | undefined;
|
|
755
|
+
|
|
756
|
+
Quiet?: boolean;
|
|
757
|
+
}
|
|
758
|
+
export declare namespace Delete {
|
|
759
|
+
|
|
760
|
+
const filterSensitiveLog: (obj: Delete) => any;
|
|
761
|
+
}
|
|
762
|
+
export interface DeleteObjectsRequest {
|
|
763
|
+
|
|
764
|
+
Bucket: string | undefined;
|
|
765
|
+
|
|
766
|
+
Delete: Delete | undefined;
|
|
767
|
+
|
|
768
|
+
MFA?: string;
|
|
769
|
+
|
|
770
|
+
RequestPayer?: RequestPayer | string;
|
|
771
|
+
|
|
772
|
+
BypassGovernanceRetention?: boolean;
|
|
773
|
+
|
|
774
|
+
ExpectedBucketOwner?: string;
|
|
775
|
+
|
|
776
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
777
|
+
}
|
|
778
|
+
export declare namespace DeleteObjectsRequest {
|
|
779
|
+
|
|
780
|
+
const filterSensitiveLog: (obj: DeleteObjectsRequest) => any;
|
|
781
|
+
}
|
|
782
|
+
export interface DeleteObjectTaggingOutput {
|
|
783
|
+
|
|
784
|
+
VersionId?: string;
|
|
785
|
+
}
|
|
786
|
+
export declare namespace DeleteObjectTaggingOutput {
|
|
787
|
+
|
|
788
|
+
const filterSensitiveLog: (obj: DeleteObjectTaggingOutput) => any;
|
|
789
|
+
}
|
|
790
|
+
export interface DeleteObjectTaggingRequest {
|
|
791
|
+
|
|
792
|
+
Bucket: string | undefined;
|
|
793
|
+
|
|
794
|
+
Key: string | undefined;
|
|
795
|
+
|
|
796
|
+
VersionId?: string;
|
|
797
|
+
|
|
798
|
+
ExpectedBucketOwner?: string;
|
|
799
|
+
}
|
|
800
|
+
export declare namespace DeleteObjectTaggingRequest {
|
|
801
|
+
|
|
802
|
+
const filterSensitiveLog: (obj: DeleteObjectTaggingRequest) => any;
|
|
803
|
+
}
|
|
804
|
+
export interface DeletePublicAccessBlockRequest {
|
|
805
|
+
|
|
806
|
+
Bucket: string | undefined;
|
|
807
|
+
|
|
808
|
+
ExpectedBucketOwner?: string;
|
|
809
|
+
}
|
|
810
|
+
export declare namespace DeletePublicAccessBlockRequest {
|
|
811
|
+
|
|
812
|
+
const filterSensitiveLog: (obj: DeletePublicAccessBlockRequest) => any;
|
|
813
|
+
}
|
|
814
|
+
export interface GetBucketAccelerateConfigurationOutput {
|
|
815
|
+
|
|
816
|
+
Status?: BucketAccelerateStatus | string;
|
|
817
|
+
}
|
|
818
|
+
export declare namespace GetBucketAccelerateConfigurationOutput {
|
|
819
|
+
|
|
820
|
+
const filterSensitiveLog: (obj: GetBucketAccelerateConfigurationOutput) => any;
|
|
821
|
+
}
|
|
822
|
+
export interface GetBucketAccelerateConfigurationRequest {
|
|
823
|
+
|
|
824
|
+
Bucket: string | undefined;
|
|
825
|
+
|
|
826
|
+
ExpectedBucketOwner?: string;
|
|
827
|
+
}
|
|
828
|
+
export declare namespace GetBucketAccelerateConfigurationRequest {
|
|
829
|
+
|
|
830
|
+
const filterSensitiveLog: (obj: GetBucketAccelerateConfigurationRequest) => any;
|
|
831
|
+
}
|
|
832
|
+
export interface GetBucketAclOutput {
|
|
833
|
+
|
|
834
|
+
Owner?: Owner;
|
|
835
|
+
|
|
836
|
+
Grants?: Grant[];
|
|
837
|
+
}
|
|
838
|
+
export declare namespace GetBucketAclOutput {
|
|
839
|
+
|
|
840
|
+
const filterSensitiveLog: (obj: GetBucketAclOutput) => any;
|
|
841
|
+
}
|
|
842
|
+
export interface GetBucketAclRequest {
|
|
843
|
+
|
|
844
|
+
Bucket: string | undefined;
|
|
845
|
+
|
|
846
|
+
ExpectedBucketOwner?: string;
|
|
847
|
+
}
|
|
848
|
+
export declare namespace GetBucketAclRequest {
|
|
849
|
+
|
|
850
|
+
const filterSensitiveLog: (obj: GetBucketAclRequest) => any;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
export interface Tag {
|
|
854
|
+
|
|
855
|
+
Key: string | undefined;
|
|
856
|
+
|
|
857
|
+
Value: string | undefined;
|
|
858
|
+
}
|
|
859
|
+
export declare namespace Tag {
|
|
860
|
+
|
|
861
|
+
const filterSensitiveLog: (obj: Tag) => any;
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
export interface AnalyticsAndOperator {
|
|
865
|
+
|
|
866
|
+
Prefix?: string;
|
|
867
|
+
|
|
868
|
+
Tags?: Tag[];
|
|
869
|
+
}
|
|
870
|
+
export declare namespace AnalyticsAndOperator {
|
|
871
|
+
|
|
872
|
+
const filterSensitiveLog: (obj: AnalyticsAndOperator) => any;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
export declare type AnalyticsFilter = AnalyticsFilter.AndMember | AnalyticsFilter.PrefixMember | AnalyticsFilter.TagMember | AnalyticsFilter.$UnknownMember;
|
|
876
|
+
export declare namespace AnalyticsFilter {
|
|
877
|
+
|
|
878
|
+
interface PrefixMember {
|
|
879
|
+
Prefix: string;
|
|
880
|
+
Tag?: never;
|
|
881
|
+
And?: never;
|
|
882
|
+
$unknown?: never;
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
interface TagMember {
|
|
886
|
+
Prefix?: never;
|
|
887
|
+
Tag: Tag;
|
|
888
|
+
And?: never;
|
|
889
|
+
$unknown?: never;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
interface AndMember {
|
|
893
|
+
Prefix?: never;
|
|
894
|
+
Tag?: never;
|
|
895
|
+
And: AnalyticsAndOperator;
|
|
896
|
+
$unknown?: never;
|
|
897
|
+
}
|
|
898
|
+
interface $UnknownMember {
|
|
899
|
+
Prefix?: never;
|
|
900
|
+
Tag?: never;
|
|
901
|
+
And?: never;
|
|
902
|
+
$unknown: [
|
|
903
|
+
string,
|
|
904
|
+
any
|
|
905
|
+
];
|
|
906
|
+
}
|
|
907
|
+
interface Visitor<T> {
|
|
908
|
+
Prefix: (value: string) => T;
|
|
909
|
+
Tag: (value: Tag) => T;
|
|
910
|
+
And: (value: AnalyticsAndOperator) => T;
|
|
911
|
+
_: (name: string, value: any) => T;
|
|
912
|
+
}
|
|
913
|
+
const visit: <T>(value: AnalyticsFilter, visitor: Visitor<T>) => T;
|
|
914
|
+
|
|
915
|
+
const filterSensitiveLog: (obj: AnalyticsFilter) => any;
|
|
916
|
+
}
|
|
917
|
+
export declare type AnalyticsS3ExportFileFormat = "CSV";
|
|
918
|
+
|
|
919
|
+
export interface AnalyticsS3BucketDestination {
|
|
920
|
+
|
|
921
|
+
Format: AnalyticsS3ExportFileFormat | string | undefined;
|
|
922
|
+
|
|
923
|
+
BucketAccountId?: string;
|
|
924
|
+
|
|
925
|
+
Bucket: string | undefined;
|
|
926
|
+
|
|
927
|
+
Prefix?: string;
|
|
928
|
+
}
|
|
929
|
+
export declare namespace AnalyticsS3BucketDestination {
|
|
930
|
+
|
|
931
|
+
const filterSensitiveLog: (obj: AnalyticsS3BucketDestination) => any;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
export interface AnalyticsExportDestination {
|
|
935
|
+
|
|
936
|
+
S3BucketDestination: AnalyticsS3BucketDestination | undefined;
|
|
937
|
+
}
|
|
938
|
+
export declare namespace AnalyticsExportDestination {
|
|
939
|
+
|
|
940
|
+
const filterSensitiveLog: (obj: AnalyticsExportDestination) => any;
|
|
941
|
+
}
|
|
942
|
+
export declare type StorageClassAnalysisSchemaVersion = "V_1";
|
|
943
|
+
|
|
944
|
+
export interface StorageClassAnalysisDataExport {
|
|
945
|
+
|
|
946
|
+
OutputSchemaVersion: StorageClassAnalysisSchemaVersion | string | undefined;
|
|
947
|
+
|
|
948
|
+
Destination: AnalyticsExportDestination | undefined;
|
|
949
|
+
}
|
|
950
|
+
export declare namespace StorageClassAnalysisDataExport {
|
|
951
|
+
|
|
952
|
+
const filterSensitiveLog: (obj: StorageClassAnalysisDataExport) => any;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
export interface StorageClassAnalysis {
|
|
956
|
+
|
|
957
|
+
DataExport?: StorageClassAnalysisDataExport;
|
|
958
|
+
}
|
|
959
|
+
export declare namespace StorageClassAnalysis {
|
|
960
|
+
|
|
961
|
+
const filterSensitiveLog: (obj: StorageClassAnalysis) => any;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
export interface AnalyticsConfiguration {
|
|
965
|
+
|
|
966
|
+
Id: string | undefined;
|
|
967
|
+
|
|
968
|
+
Filter?: AnalyticsFilter;
|
|
969
|
+
|
|
970
|
+
StorageClassAnalysis: StorageClassAnalysis | undefined;
|
|
971
|
+
}
|
|
972
|
+
export declare namespace AnalyticsConfiguration {
|
|
973
|
+
|
|
974
|
+
const filterSensitiveLog: (obj: AnalyticsConfiguration) => any;
|
|
975
|
+
}
|
|
976
|
+
export interface GetBucketAnalyticsConfigurationOutput {
|
|
977
|
+
|
|
978
|
+
AnalyticsConfiguration?: AnalyticsConfiguration;
|
|
979
|
+
}
|
|
980
|
+
export declare namespace GetBucketAnalyticsConfigurationOutput {
|
|
981
|
+
|
|
982
|
+
const filterSensitiveLog: (obj: GetBucketAnalyticsConfigurationOutput) => any;
|
|
983
|
+
}
|
|
984
|
+
export interface GetBucketAnalyticsConfigurationRequest {
|
|
985
|
+
|
|
986
|
+
Bucket: string | undefined;
|
|
987
|
+
|
|
988
|
+
Id: string | undefined;
|
|
989
|
+
|
|
990
|
+
ExpectedBucketOwner?: string;
|
|
991
|
+
}
|
|
992
|
+
export declare namespace GetBucketAnalyticsConfigurationRequest {
|
|
993
|
+
|
|
994
|
+
const filterSensitiveLog: (obj: GetBucketAnalyticsConfigurationRequest) => any;
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
export interface CORSRule {
|
|
998
|
+
|
|
999
|
+
ID?: string;
|
|
1000
|
+
|
|
1001
|
+
AllowedHeaders?: string[];
|
|
1002
|
+
|
|
1003
|
+
AllowedMethods: string[] | undefined;
|
|
1004
|
+
|
|
1005
|
+
AllowedOrigins: string[] | undefined;
|
|
1006
|
+
|
|
1007
|
+
ExposeHeaders?: string[];
|
|
1008
|
+
|
|
1009
|
+
MaxAgeSeconds?: number;
|
|
1010
|
+
}
|
|
1011
|
+
export declare namespace CORSRule {
|
|
1012
|
+
|
|
1013
|
+
const filterSensitiveLog: (obj: CORSRule) => any;
|
|
1014
|
+
}
|
|
1015
|
+
export interface GetBucketCorsOutput {
|
|
1016
|
+
|
|
1017
|
+
CORSRules?: CORSRule[];
|
|
1018
|
+
}
|
|
1019
|
+
export declare namespace GetBucketCorsOutput {
|
|
1020
|
+
|
|
1021
|
+
const filterSensitiveLog: (obj: GetBucketCorsOutput) => any;
|
|
1022
|
+
}
|
|
1023
|
+
export interface GetBucketCorsRequest {
|
|
1024
|
+
|
|
1025
|
+
Bucket: string | undefined;
|
|
1026
|
+
|
|
1027
|
+
ExpectedBucketOwner?: string;
|
|
1028
|
+
}
|
|
1029
|
+
export declare namespace GetBucketCorsRequest {
|
|
1030
|
+
|
|
1031
|
+
const filterSensitiveLog: (obj: GetBucketCorsRequest) => any;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
export interface ServerSideEncryptionByDefault {
|
|
1035
|
+
|
|
1036
|
+
SSEAlgorithm: ServerSideEncryption | string | undefined;
|
|
1037
|
+
|
|
1038
|
+
KMSMasterKeyID?: string;
|
|
1039
|
+
}
|
|
1040
|
+
export declare namespace ServerSideEncryptionByDefault {
|
|
1041
|
+
|
|
1042
|
+
const filterSensitiveLog: (obj: ServerSideEncryptionByDefault) => any;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
export interface ServerSideEncryptionRule {
|
|
1046
|
+
|
|
1047
|
+
ApplyServerSideEncryptionByDefault?: ServerSideEncryptionByDefault;
|
|
1048
|
+
|
|
1049
|
+
BucketKeyEnabled?: boolean;
|
|
1050
|
+
}
|
|
1051
|
+
export declare namespace ServerSideEncryptionRule {
|
|
1052
|
+
|
|
1053
|
+
const filterSensitiveLog: (obj: ServerSideEncryptionRule) => any;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
export interface ServerSideEncryptionConfiguration {
|
|
1057
|
+
|
|
1058
|
+
Rules: ServerSideEncryptionRule[] | undefined;
|
|
1059
|
+
}
|
|
1060
|
+
export declare namespace ServerSideEncryptionConfiguration {
|
|
1061
|
+
|
|
1062
|
+
const filterSensitiveLog: (obj: ServerSideEncryptionConfiguration) => any;
|
|
1063
|
+
}
|
|
1064
|
+
export interface GetBucketEncryptionOutput {
|
|
1065
|
+
|
|
1066
|
+
ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration;
|
|
1067
|
+
}
|
|
1068
|
+
export declare namespace GetBucketEncryptionOutput {
|
|
1069
|
+
|
|
1070
|
+
const filterSensitiveLog: (obj: GetBucketEncryptionOutput) => any;
|
|
1071
|
+
}
|
|
1072
|
+
export interface GetBucketEncryptionRequest {
|
|
1073
|
+
|
|
1074
|
+
Bucket: string | undefined;
|
|
1075
|
+
|
|
1076
|
+
ExpectedBucketOwner?: string;
|
|
1077
|
+
}
|
|
1078
|
+
export declare namespace GetBucketEncryptionRequest {
|
|
1079
|
+
|
|
1080
|
+
const filterSensitiveLog: (obj: GetBucketEncryptionRequest) => any;
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
export interface IntelligentTieringAndOperator {
|
|
1084
|
+
|
|
1085
|
+
Prefix?: string;
|
|
1086
|
+
|
|
1087
|
+
Tags?: Tag[];
|
|
1088
|
+
}
|
|
1089
|
+
export declare namespace IntelligentTieringAndOperator {
|
|
1090
|
+
|
|
1091
|
+
const filterSensitiveLog: (obj: IntelligentTieringAndOperator) => any;
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
export interface IntelligentTieringFilter {
|
|
1095
|
+
|
|
1096
|
+
Prefix?: string;
|
|
1097
|
+
|
|
1098
|
+
Tag?: Tag;
|
|
1099
|
+
|
|
1100
|
+
And?: IntelligentTieringAndOperator;
|
|
1101
|
+
}
|
|
1102
|
+
export declare namespace IntelligentTieringFilter {
|
|
1103
|
+
|
|
1104
|
+
const filterSensitiveLog: (obj: IntelligentTieringFilter) => any;
|
|
1105
|
+
}
|
|
1106
|
+
export declare type IntelligentTieringStatus = "Disabled" | "Enabled";
|
|
1107
|
+
export declare type IntelligentTieringAccessTier = "ARCHIVE_ACCESS" | "DEEP_ARCHIVE_ACCESS";
|
|
1108
|
+
|
|
1109
|
+
export interface Tiering {
|
|
1110
|
+
|
|
1111
|
+
Days: number | undefined;
|
|
1112
|
+
|
|
1113
|
+
AccessTier: IntelligentTieringAccessTier | string | undefined;
|
|
1114
|
+
}
|
|
1115
|
+
export declare namespace Tiering {
|
|
1116
|
+
|
|
1117
|
+
const filterSensitiveLog: (obj: Tiering) => any;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
export interface IntelligentTieringConfiguration {
|
|
1121
|
+
|
|
1122
|
+
Id: string | undefined;
|
|
1123
|
+
|
|
1124
|
+
Filter?: IntelligentTieringFilter;
|
|
1125
|
+
|
|
1126
|
+
Status: IntelligentTieringStatus | string | undefined;
|
|
1127
|
+
|
|
1128
|
+
Tierings: Tiering[] | undefined;
|
|
1129
|
+
}
|
|
1130
|
+
export declare namespace IntelligentTieringConfiguration {
|
|
1131
|
+
|
|
1132
|
+
const filterSensitiveLog: (obj: IntelligentTieringConfiguration) => any;
|
|
1133
|
+
}
|
|
1134
|
+
export interface GetBucketIntelligentTieringConfigurationOutput {
|
|
1135
|
+
|
|
1136
|
+
IntelligentTieringConfiguration?: IntelligentTieringConfiguration;
|
|
1137
|
+
}
|
|
1138
|
+
export declare namespace GetBucketIntelligentTieringConfigurationOutput {
|
|
1139
|
+
|
|
1140
|
+
const filterSensitiveLog: (obj: GetBucketIntelligentTieringConfigurationOutput) => any;
|
|
1141
|
+
}
|
|
1142
|
+
export interface GetBucketIntelligentTieringConfigurationRequest {
|
|
1143
|
+
|
|
1144
|
+
Bucket: string | undefined;
|
|
1145
|
+
|
|
1146
|
+
Id: string | undefined;
|
|
1147
|
+
}
|
|
1148
|
+
export declare namespace GetBucketIntelligentTieringConfigurationRequest {
|
|
1149
|
+
|
|
1150
|
+
const filterSensitiveLog: (obj: GetBucketIntelligentTieringConfigurationRequest) => any;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
export interface SSEKMS {
|
|
1154
|
+
|
|
1155
|
+
KeyId: string | undefined;
|
|
1156
|
+
}
|
|
1157
|
+
export declare namespace SSEKMS {
|
|
1158
|
+
|
|
1159
|
+
const filterSensitiveLog: (obj: SSEKMS) => any;
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
export interface SSES3 {
|
|
1163
|
+
}
|
|
1164
|
+
export declare namespace SSES3 {
|
|
1165
|
+
|
|
1166
|
+
const filterSensitiveLog: (obj: SSES3) => any;
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
export interface InventoryEncryption {
|
|
1170
|
+
|
|
1171
|
+
SSES3?: SSES3;
|
|
1172
|
+
|
|
1173
|
+
SSEKMS?: SSEKMS;
|
|
1174
|
+
}
|
|
1175
|
+
export declare namespace InventoryEncryption {
|
|
1176
|
+
|
|
1177
|
+
const filterSensitiveLog: (obj: InventoryEncryption) => any;
|
|
1178
|
+
}
|
|
1179
|
+
export declare type InventoryFormat = "CSV" | "ORC" | "Parquet";
|
|
1180
|
+
|
|
1181
|
+
export interface InventoryS3BucketDestination {
|
|
1182
|
+
|
|
1183
|
+
AccountId?: string;
|
|
1184
|
+
|
|
1185
|
+
Bucket: string | undefined;
|
|
1186
|
+
|
|
1187
|
+
Format: InventoryFormat | string | undefined;
|
|
1188
|
+
|
|
1189
|
+
Prefix?: string;
|
|
1190
|
+
|
|
1191
|
+
Encryption?: InventoryEncryption;
|
|
1192
|
+
}
|
|
1193
|
+
export declare namespace InventoryS3BucketDestination {
|
|
1194
|
+
|
|
1195
|
+
const filterSensitiveLog: (obj: InventoryS3BucketDestination) => any;
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
export interface InventoryDestination {
|
|
1199
|
+
|
|
1200
|
+
S3BucketDestination: InventoryS3BucketDestination | undefined;
|
|
1201
|
+
}
|
|
1202
|
+
export declare namespace InventoryDestination {
|
|
1203
|
+
|
|
1204
|
+
const filterSensitiveLog: (obj: InventoryDestination) => any;
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
export interface InventoryFilter {
|
|
1208
|
+
|
|
1209
|
+
Prefix: string | undefined;
|
|
1210
|
+
}
|
|
1211
|
+
export declare namespace InventoryFilter {
|
|
1212
|
+
|
|
1213
|
+
const filterSensitiveLog: (obj: InventoryFilter) => any;
|
|
1214
|
+
}
|
|
1215
|
+
export declare type InventoryIncludedObjectVersions = "All" | "Current";
|
|
1216
|
+
export declare type InventoryOptionalField = "BucketKeyStatus" | "ChecksumAlgorithm" | "ETag" | "EncryptionStatus" | "IntelligentTieringAccessTier" | "IsMultipartUploaded" | "LastModifiedDate" | "ObjectLockLegalHoldStatus" | "ObjectLockMode" | "ObjectLockRetainUntilDate" | "ReplicationStatus" | "Size" | "StorageClass";
|
|
1217
|
+
export declare type InventoryFrequency = "Daily" | "Weekly";
|
|
1218
|
+
|
|
1219
|
+
export interface InventorySchedule {
|
|
1220
|
+
|
|
1221
|
+
Frequency: InventoryFrequency | string | undefined;
|
|
1222
|
+
}
|
|
1223
|
+
export declare namespace InventorySchedule {
|
|
1224
|
+
|
|
1225
|
+
const filterSensitiveLog: (obj: InventorySchedule) => any;
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
export interface InventoryConfiguration {
|
|
1229
|
+
|
|
1230
|
+
Destination: InventoryDestination | undefined;
|
|
1231
|
+
|
|
1232
|
+
IsEnabled: boolean | undefined;
|
|
1233
|
+
|
|
1234
|
+
Filter?: InventoryFilter;
|
|
1235
|
+
|
|
1236
|
+
Id: string | undefined;
|
|
1237
|
+
|
|
1238
|
+
IncludedObjectVersions: InventoryIncludedObjectVersions | string | undefined;
|
|
1239
|
+
|
|
1240
|
+
OptionalFields?: (InventoryOptionalField | string)[];
|
|
1241
|
+
|
|
1242
|
+
Schedule: InventorySchedule | undefined;
|
|
1243
|
+
}
|
|
1244
|
+
export declare namespace InventoryConfiguration {
|
|
1245
|
+
|
|
1246
|
+
const filterSensitiveLog: (obj: InventoryConfiguration) => any;
|
|
1247
|
+
}
|
|
1248
|
+
export interface GetBucketInventoryConfigurationOutput {
|
|
1249
|
+
|
|
1250
|
+
InventoryConfiguration?: InventoryConfiguration;
|
|
1251
|
+
}
|
|
1252
|
+
export declare namespace GetBucketInventoryConfigurationOutput {
|
|
1253
|
+
|
|
1254
|
+
const filterSensitiveLog: (obj: GetBucketInventoryConfigurationOutput) => any;
|
|
1255
|
+
}
|
|
1256
|
+
export interface GetBucketInventoryConfigurationRequest {
|
|
1257
|
+
|
|
1258
|
+
Bucket: string | undefined;
|
|
1259
|
+
|
|
1260
|
+
Id: string | undefined;
|
|
1261
|
+
|
|
1262
|
+
ExpectedBucketOwner?: string;
|
|
1263
|
+
}
|
|
1264
|
+
export declare namespace GetBucketInventoryConfigurationRequest {
|
|
1265
|
+
|
|
1266
|
+
const filterSensitiveLog: (obj: GetBucketInventoryConfigurationRequest) => any;
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
export interface LifecycleExpiration {
|
|
1270
|
+
|
|
1271
|
+
Date?: Date;
|
|
1272
|
+
|
|
1273
|
+
Days?: number;
|
|
1274
|
+
|
|
1275
|
+
ExpiredObjectDeleteMarker?: boolean;
|
|
1276
|
+
}
|
|
1277
|
+
export declare namespace LifecycleExpiration {
|
|
1278
|
+
|
|
1279
|
+
const filterSensitiveLog: (obj: LifecycleExpiration) => any;
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
export interface LifecycleRuleAndOperator {
|
|
1283
|
+
|
|
1284
|
+
Prefix?: string;
|
|
1285
|
+
|
|
1286
|
+
Tags?: Tag[];
|
|
1287
|
+
|
|
1288
|
+
ObjectSizeGreaterThan?: number;
|
|
1289
|
+
|
|
1290
|
+
ObjectSizeLessThan?: number;
|
|
1291
|
+
}
|
|
1292
|
+
export declare namespace LifecycleRuleAndOperator {
|
|
1293
|
+
|
|
1294
|
+
const filterSensitiveLog: (obj: LifecycleRuleAndOperator) => any;
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
export declare type LifecycleRuleFilter = LifecycleRuleFilter.AndMember | LifecycleRuleFilter.ObjectSizeGreaterThanMember | LifecycleRuleFilter.ObjectSizeLessThanMember | LifecycleRuleFilter.PrefixMember | LifecycleRuleFilter.TagMember | LifecycleRuleFilter.$UnknownMember;
|
|
1298
|
+
export declare namespace LifecycleRuleFilter {
|
|
1299
|
+
|
|
1300
|
+
interface PrefixMember {
|
|
1301
|
+
Prefix: string;
|
|
1302
|
+
Tag?: never;
|
|
1303
|
+
ObjectSizeGreaterThan?: never;
|
|
1304
|
+
ObjectSizeLessThan?: never;
|
|
1305
|
+
And?: never;
|
|
1306
|
+
$unknown?: never;
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
interface TagMember {
|
|
1310
|
+
Prefix?: never;
|
|
1311
|
+
Tag: Tag;
|
|
1312
|
+
ObjectSizeGreaterThan?: never;
|
|
1313
|
+
ObjectSizeLessThan?: never;
|
|
1314
|
+
And?: never;
|
|
1315
|
+
$unknown?: never;
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
interface ObjectSizeGreaterThanMember {
|
|
1319
|
+
Prefix?: never;
|
|
1320
|
+
Tag?: never;
|
|
1321
|
+
ObjectSizeGreaterThan: number;
|
|
1322
|
+
ObjectSizeLessThan?: never;
|
|
1323
|
+
And?: never;
|
|
1324
|
+
$unknown?: never;
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
interface ObjectSizeLessThanMember {
|
|
1328
|
+
Prefix?: never;
|
|
1329
|
+
Tag?: never;
|
|
1330
|
+
ObjectSizeGreaterThan?: never;
|
|
1331
|
+
ObjectSizeLessThan: number;
|
|
1332
|
+
And?: never;
|
|
1333
|
+
$unknown?: never;
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
interface AndMember {
|
|
1337
|
+
Prefix?: never;
|
|
1338
|
+
Tag?: never;
|
|
1339
|
+
ObjectSizeGreaterThan?: never;
|
|
1340
|
+
ObjectSizeLessThan?: never;
|
|
1341
|
+
And: LifecycleRuleAndOperator;
|
|
1342
|
+
$unknown?: never;
|
|
1343
|
+
}
|
|
1344
|
+
interface $UnknownMember {
|
|
1345
|
+
Prefix?: never;
|
|
1346
|
+
Tag?: never;
|
|
1347
|
+
ObjectSizeGreaterThan?: never;
|
|
1348
|
+
ObjectSizeLessThan?: never;
|
|
1349
|
+
And?: never;
|
|
1350
|
+
$unknown: [
|
|
1351
|
+
string,
|
|
1352
|
+
any
|
|
1353
|
+
];
|
|
1354
|
+
}
|
|
1355
|
+
interface Visitor<T> {
|
|
1356
|
+
Prefix: (value: string) => T;
|
|
1357
|
+
Tag: (value: Tag) => T;
|
|
1358
|
+
ObjectSizeGreaterThan: (value: number) => T;
|
|
1359
|
+
ObjectSizeLessThan: (value: number) => T;
|
|
1360
|
+
And: (value: LifecycleRuleAndOperator) => T;
|
|
1361
|
+
_: (name: string, value: any) => T;
|
|
1362
|
+
}
|
|
1363
|
+
const visit: <T>(value: LifecycleRuleFilter, visitor: Visitor<T>) => T;
|
|
1364
|
+
|
|
1365
|
+
const filterSensitiveLog: (obj: LifecycleRuleFilter) => any;
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
export interface NoncurrentVersionExpiration {
|
|
1369
|
+
|
|
1370
|
+
NoncurrentDays?: number;
|
|
1371
|
+
|
|
1372
|
+
NewerNoncurrentVersions?: number;
|
|
1373
|
+
}
|
|
1374
|
+
export declare namespace NoncurrentVersionExpiration {
|
|
1375
|
+
|
|
1376
|
+
const filterSensitiveLog: (obj: NoncurrentVersionExpiration) => any;
|
|
1377
|
+
}
|
|
1378
|
+
export declare type TransitionStorageClass = "DEEP_ARCHIVE" | "GLACIER" | "GLACIER_IR" | "INTELLIGENT_TIERING" | "ONEZONE_IA" | "STANDARD_IA";
|
|
1379
|
+
|
|
1380
|
+
export interface NoncurrentVersionTransition {
|
|
1381
|
+
|
|
1382
|
+
NoncurrentDays?: number;
|
|
1383
|
+
|
|
1384
|
+
StorageClass?: TransitionStorageClass | string;
|
|
1385
|
+
|
|
1386
|
+
NewerNoncurrentVersions?: number;
|
|
1387
|
+
}
|
|
1388
|
+
export declare namespace NoncurrentVersionTransition {
|
|
1389
|
+
|
|
1390
|
+
const filterSensitiveLog: (obj: NoncurrentVersionTransition) => any;
|
|
1391
|
+
}
|
|
1392
|
+
export declare type ExpirationStatus = "Disabled" | "Enabled";
|
|
1393
|
+
|
|
1394
|
+
export interface Transition {
|
|
1395
|
+
|
|
1396
|
+
Date?: Date;
|
|
1397
|
+
|
|
1398
|
+
Days?: number;
|
|
1399
|
+
|
|
1400
|
+
StorageClass?: TransitionStorageClass | string;
|
|
1401
|
+
}
|
|
1402
|
+
export declare namespace Transition {
|
|
1403
|
+
|
|
1404
|
+
const filterSensitiveLog: (obj: Transition) => any;
|
|
1405
|
+
}
|
|
1406
|
+
|
|
1407
|
+
export interface LifecycleRule {
|
|
1408
|
+
|
|
1409
|
+
Expiration?: LifecycleExpiration;
|
|
1410
|
+
|
|
1411
|
+
ID?: string;
|
|
1412
|
+
|
|
1413
|
+
Prefix?: string;
|
|
1414
|
+
|
|
1415
|
+
Filter?: LifecycleRuleFilter;
|
|
1416
|
+
|
|
1417
|
+
Status: ExpirationStatus | string | undefined;
|
|
1418
|
+
|
|
1419
|
+
Transitions?: Transition[];
|
|
1420
|
+
|
|
1421
|
+
NoncurrentVersionTransitions?: NoncurrentVersionTransition[];
|
|
1422
|
+
|
|
1423
|
+
NoncurrentVersionExpiration?: NoncurrentVersionExpiration;
|
|
1424
|
+
|
|
1425
|
+
AbortIncompleteMultipartUpload?: AbortIncompleteMultipartUpload;
|
|
1426
|
+
}
|
|
1427
|
+
export declare namespace LifecycleRule {
|
|
1428
|
+
|
|
1429
|
+
const filterSensitiveLog: (obj: LifecycleRule) => any;
|
|
1430
|
+
}
|
|
1431
|
+
export interface GetBucketLifecycleConfigurationOutput {
|
|
1432
|
+
|
|
1433
|
+
Rules?: LifecycleRule[];
|
|
1434
|
+
}
|
|
1435
|
+
export declare namespace GetBucketLifecycleConfigurationOutput {
|
|
1436
|
+
|
|
1437
|
+
const filterSensitiveLog: (obj: GetBucketLifecycleConfigurationOutput) => any;
|
|
1438
|
+
}
|
|
1439
|
+
export interface GetBucketLifecycleConfigurationRequest {
|
|
1440
|
+
|
|
1441
|
+
Bucket: string | undefined;
|
|
1442
|
+
|
|
1443
|
+
ExpectedBucketOwner?: string;
|
|
1444
|
+
}
|
|
1445
|
+
export declare namespace GetBucketLifecycleConfigurationRequest {
|
|
1446
|
+
|
|
1447
|
+
const filterSensitiveLog: (obj: GetBucketLifecycleConfigurationRequest) => any;
|
|
1448
|
+
}
|
|
1449
|
+
export interface GetBucketLocationOutput {
|
|
1450
|
+
|
|
1451
|
+
LocationConstraint?: BucketLocationConstraint | string;
|
|
1452
|
+
}
|
|
1453
|
+
export declare namespace GetBucketLocationOutput {
|
|
1454
|
+
|
|
1455
|
+
const filterSensitiveLog: (obj: GetBucketLocationOutput) => any;
|
|
1456
|
+
}
|
|
1457
|
+
export interface GetBucketLocationRequest {
|
|
1458
|
+
|
|
1459
|
+
Bucket: string | undefined;
|
|
1460
|
+
|
|
1461
|
+
ExpectedBucketOwner?: string;
|
|
1462
|
+
}
|
|
1463
|
+
export declare namespace GetBucketLocationRequest {
|
|
1464
|
+
|
|
1465
|
+
const filterSensitiveLog: (obj: GetBucketLocationRequest) => any;
|
|
1466
|
+
}
|
|
1467
|
+
export declare type BucketLogsPermission = "FULL_CONTROL" | "READ" | "WRITE";
|
|
1468
|
+
|
|
1469
|
+
export interface TargetGrant {
|
|
1470
|
+
|
|
1471
|
+
Grantee?: Grantee;
|
|
1472
|
+
|
|
1473
|
+
Permission?: BucketLogsPermission | string;
|
|
1474
|
+
}
|
|
1475
|
+
export declare namespace TargetGrant {
|
|
1476
|
+
|
|
1477
|
+
const filterSensitiveLog: (obj: TargetGrant) => any;
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
export interface LoggingEnabled {
|
|
1481
|
+
|
|
1482
|
+
TargetBucket: string | undefined;
|
|
1483
|
+
|
|
1484
|
+
TargetGrants?: TargetGrant[];
|
|
1485
|
+
|
|
1486
|
+
TargetPrefix: string | undefined;
|
|
1487
|
+
}
|
|
1488
|
+
export declare namespace LoggingEnabled {
|
|
1489
|
+
|
|
1490
|
+
const filterSensitiveLog: (obj: LoggingEnabled) => any;
|
|
1491
|
+
}
|
|
1492
|
+
export interface GetBucketLoggingOutput {
|
|
1493
|
+
|
|
1494
|
+
LoggingEnabled?: LoggingEnabled;
|
|
1495
|
+
}
|
|
1496
|
+
export declare namespace GetBucketLoggingOutput {
|
|
1497
|
+
|
|
1498
|
+
const filterSensitiveLog: (obj: GetBucketLoggingOutput) => any;
|
|
1499
|
+
}
|
|
1500
|
+
export interface GetBucketLoggingRequest {
|
|
1501
|
+
|
|
1502
|
+
Bucket: string | undefined;
|
|
1503
|
+
|
|
1504
|
+
ExpectedBucketOwner?: string;
|
|
1505
|
+
}
|
|
1506
|
+
export declare namespace GetBucketLoggingRequest {
|
|
1507
|
+
|
|
1508
|
+
const filterSensitiveLog: (obj: GetBucketLoggingRequest) => any;
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1511
|
+
export interface MetricsAndOperator {
|
|
1512
|
+
|
|
1513
|
+
Prefix?: string;
|
|
1514
|
+
|
|
1515
|
+
Tags?: Tag[];
|
|
1516
|
+
|
|
1517
|
+
AccessPointArn?: string;
|
|
1518
|
+
}
|
|
1519
|
+
export declare namespace MetricsAndOperator {
|
|
1520
|
+
|
|
1521
|
+
const filterSensitiveLog: (obj: MetricsAndOperator) => any;
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
export declare type MetricsFilter = MetricsFilter.AccessPointArnMember | MetricsFilter.AndMember | MetricsFilter.PrefixMember | MetricsFilter.TagMember | MetricsFilter.$UnknownMember;
|
|
1525
|
+
export declare namespace MetricsFilter {
|
|
1526
|
+
|
|
1527
|
+
interface PrefixMember {
|
|
1528
|
+
Prefix: string;
|
|
1529
|
+
Tag?: never;
|
|
1530
|
+
AccessPointArn?: never;
|
|
1531
|
+
And?: never;
|
|
1532
|
+
$unknown?: never;
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
interface TagMember {
|
|
1536
|
+
Prefix?: never;
|
|
1537
|
+
Tag: Tag;
|
|
1538
|
+
AccessPointArn?: never;
|
|
1539
|
+
And?: never;
|
|
1540
|
+
$unknown?: never;
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
interface AccessPointArnMember {
|
|
1544
|
+
Prefix?: never;
|
|
1545
|
+
Tag?: never;
|
|
1546
|
+
AccessPointArn: string;
|
|
1547
|
+
And?: never;
|
|
1548
|
+
$unknown?: never;
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
interface AndMember {
|
|
1552
|
+
Prefix?: never;
|
|
1553
|
+
Tag?: never;
|
|
1554
|
+
AccessPointArn?: never;
|
|
1555
|
+
And: MetricsAndOperator;
|
|
1556
|
+
$unknown?: never;
|
|
1557
|
+
}
|
|
1558
|
+
interface $UnknownMember {
|
|
1559
|
+
Prefix?: never;
|
|
1560
|
+
Tag?: never;
|
|
1561
|
+
AccessPointArn?: never;
|
|
1562
|
+
And?: never;
|
|
1563
|
+
$unknown: [
|
|
1564
|
+
string,
|
|
1565
|
+
any
|
|
1566
|
+
];
|
|
1567
|
+
}
|
|
1568
|
+
interface Visitor<T> {
|
|
1569
|
+
Prefix: (value: string) => T;
|
|
1570
|
+
Tag: (value: Tag) => T;
|
|
1571
|
+
AccessPointArn: (value: string) => T;
|
|
1572
|
+
And: (value: MetricsAndOperator) => T;
|
|
1573
|
+
_: (name: string, value: any) => T;
|
|
1574
|
+
}
|
|
1575
|
+
const visit: <T>(value: MetricsFilter, visitor: Visitor<T>) => T;
|
|
1576
|
+
|
|
1577
|
+
const filterSensitiveLog: (obj: MetricsFilter) => any;
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1580
|
+
export interface MetricsConfiguration {
|
|
1581
|
+
|
|
1582
|
+
Id: string | undefined;
|
|
1583
|
+
|
|
1584
|
+
Filter?: MetricsFilter;
|
|
1585
|
+
}
|
|
1586
|
+
export declare namespace MetricsConfiguration {
|
|
1587
|
+
|
|
1588
|
+
const filterSensitiveLog: (obj: MetricsConfiguration) => any;
|
|
1589
|
+
}
|
|
1590
|
+
export interface GetBucketMetricsConfigurationOutput {
|
|
1591
|
+
|
|
1592
|
+
MetricsConfiguration?: MetricsConfiguration;
|
|
1593
|
+
}
|
|
1594
|
+
export declare namespace GetBucketMetricsConfigurationOutput {
|
|
1595
|
+
|
|
1596
|
+
const filterSensitiveLog: (obj: GetBucketMetricsConfigurationOutput) => any;
|
|
1597
|
+
}
|
|
1598
|
+
export interface GetBucketMetricsConfigurationRequest {
|
|
1599
|
+
|
|
1600
|
+
Bucket: string | undefined;
|
|
1601
|
+
|
|
1602
|
+
Id: string | undefined;
|
|
1603
|
+
|
|
1604
|
+
ExpectedBucketOwner?: string;
|
|
1605
|
+
}
|
|
1606
|
+
export declare namespace GetBucketMetricsConfigurationRequest {
|
|
1607
|
+
|
|
1608
|
+
const filterSensitiveLog: (obj: GetBucketMetricsConfigurationRequest) => any;
|
|
1609
|
+
}
|
|
1610
|
+
export interface GetBucketNotificationConfigurationRequest {
|
|
1611
|
+
|
|
1612
|
+
Bucket: string | undefined;
|
|
1613
|
+
|
|
1614
|
+
ExpectedBucketOwner?: string;
|
|
1615
|
+
}
|
|
1616
|
+
export declare namespace GetBucketNotificationConfigurationRequest {
|
|
1617
|
+
|
|
1618
|
+
const filterSensitiveLog: (obj: GetBucketNotificationConfigurationRequest) => any;
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
export interface EventBridgeConfiguration {
|
|
1622
|
+
}
|
|
1623
|
+
export declare namespace EventBridgeConfiguration {
|
|
1624
|
+
|
|
1625
|
+
const filterSensitiveLog: (obj: EventBridgeConfiguration) => any;
|
|
1626
|
+
}
|
|
1627
|
+
export declare type Event = "s3:IntelligentTiering" | "s3:LifecycleExpiration:*" | "s3:LifecycleExpiration:Delete" | "s3:LifecycleExpiration:DeleteMarkerCreated" | "s3:LifecycleTransition" | "s3:ObjectAcl:Put" | "s3:ObjectCreated:*" | "s3:ObjectCreated:CompleteMultipartUpload" | "s3:ObjectCreated:Copy" | "s3:ObjectCreated:Post" | "s3:ObjectCreated:Put" | "s3:ObjectRemoved:*" | "s3:ObjectRemoved:Delete" | "s3:ObjectRemoved:DeleteMarkerCreated" | "s3:ObjectRestore:*" | "s3:ObjectRestore:Completed" | "s3:ObjectRestore:Delete" | "s3:ObjectRestore:Post" | "s3:ObjectTagging:*" | "s3:ObjectTagging:Delete" | "s3:ObjectTagging:Put" | "s3:ReducedRedundancyLostObject" | "s3:Replication:*" | "s3:Replication:OperationFailedReplication" | "s3:Replication:OperationMissedThreshold" | "s3:Replication:OperationNotTracked" | "s3:Replication:OperationReplicatedAfterThreshold";
|
|
1628
|
+
export declare type FilterRuleName = "prefix" | "suffix";
|
|
1629
|
+
|
|
1630
|
+
export interface FilterRule {
|
|
1631
|
+
|
|
1632
|
+
Name?: FilterRuleName | string;
|
|
1633
|
+
|
|
1634
|
+
Value?: string;
|
|
1635
|
+
}
|
|
1636
|
+
export declare namespace FilterRule {
|
|
1637
|
+
|
|
1638
|
+
const filterSensitiveLog: (obj: FilterRule) => any;
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
export interface S3KeyFilter {
|
|
1642
|
+
|
|
1643
|
+
FilterRules?: FilterRule[];
|
|
1644
|
+
}
|
|
1645
|
+
export declare namespace S3KeyFilter {
|
|
1646
|
+
|
|
1647
|
+
const filterSensitiveLog: (obj: S3KeyFilter) => any;
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1650
|
+
export interface NotificationConfigurationFilter {
|
|
1651
|
+
|
|
1652
|
+
Key?: S3KeyFilter;
|
|
1653
|
+
}
|
|
1654
|
+
export declare namespace NotificationConfigurationFilter {
|
|
1655
|
+
|
|
1656
|
+
const filterSensitiveLog: (obj: NotificationConfigurationFilter) => any;
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
export interface LambdaFunctionConfiguration {
|
|
1660
|
+
|
|
1661
|
+
Id?: string;
|
|
1662
|
+
|
|
1663
|
+
LambdaFunctionArn: string | undefined;
|
|
1664
|
+
|
|
1665
|
+
Events: (Event | string)[] | undefined;
|
|
1666
|
+
|
|
1667
|
+
Filter?: NotificationConfigurationFilter;
|
|
1668
|
+
}
|
|
1669
|
+
export declare namespace LambdaFunctionConfiguration {
|
|
1670
|
+
|
|
1671
|
+
const filterSensitiveLog: (obj: LambdaFunctionConfiguration) => any;
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
export interface QueueConfiguration {
|
|
1675
|
+
|
|
1676
|
+
Id?: string;
|
|
1677
|
+
|
|
1678
|
+
QueueArn: string | undefined;
|
|
1679
|
+
|
|
1680
|
+
Events: (Event | string)[] | undefined;
|
|
1681
|
+
|
|
1682
|
+
Filter?: NotificationConfigurationFilter;
|
|
1683
|
+
}
|
|
1684
|
+
export declare namespace QueueConfiguration {
|
|
1685
|
+
|
|
1686
|
+
const filterSensitiveLog: (obj: QueueConfiguration) => any;
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
export interface TopicConfiguration {
|
|
1690
|
+
|
|
1691
|
+
Id?: string;
|
|
1692
|
+
|
|
1693
|
+
TopicArn: string | undefined;
|
|
1694
|
+
|
|
1695
|
+
Events: (Event | string)[] | undefined;
|
|
1696
|
+
|
|
1697
|
+
Filter?: NotificationConfigurationFilter;
|
|
1698
|
+
}
|
|
1699
|
+
export declare namespace TopicConfiguration {
|
|
1700
|
+
|
|
1701
|
+
const filterSensitiveLog: (obj: TopicConfiguration) => any;
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
export interface NotificationConfiguration {
|
|
1705
|
+
|
|
1706
|
+
TopicConfigurations?: TopicConfiguration[];
|
|
1707
|
+
|
|
1708
|
+
QueueConfigurations?: QueueConfiguration[];
|
|
1709
|
+
|
|
1710
|
+
LambdaFunctionConfigurations?: LambdaFunctionConfiguration[];
|
|
1711
|
+
|
|
1712
|
+
EventBridgeConfiguration?: EventBridgeConfiguration;
|
|
1713
|
+
}
|
|
1714
|
+
export declare namespace NotificationConfiguration {
|
|
1715
|
+
|
|
1716
|
+
const filterSensitiveLog: (obj: NotificationConfiguration) => any;
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
export interface OwnershipControlsRule {
|
|
1720
|
+
|
|
1721
|
+
ObjectOwnership: ObjectOwnership | string | undefined;
|
|
1722
|
+
}
|
|
1723
|
+
export declare namespace OwnershipControlsRule {
|
|
1724
|
+
|
|
1725
|
+
const filterSensitiveLog: (obj: OwnershipControlsRule) => any;
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
export interface OwnershipControls {
|
|
1729
|
+
|
|
1730
|
+
Rules: OwnershipControlsRule[] | undefined;
|
|
1731
|
+
}
|
|
1732
|
+
export declare namespace OwnershipControls {
|
|
1733
|
+
|
|
1734
|
+
const filterSensitiveLog: (obj: OwnershipControls) => any;
|
|
1735
|
+
}
|
|
1736
|
+
export interface GetBucketOwnershipControlsOutput {
|
|
1737
|
+
|
|
1738
|
+
OwnershipControls?: OwnershipControls;
|
|
1739
|
+
}
|
|
1740
|
+
export declare namespace GetBucketOwnershipControlsOutput {
|
|
1741
|
+
|
|
1742
|
+
const filterSensitiveLog: (obj: GetBucketOwnershipControlsOutput) => any;
|
|
1743
|
+
}
|
|
1744
|
+
export interface GetBucketOwnershipControlsRequest {
|
|
1745
|
+
|
|
1746
|
+
Bucket: string | undefined;
|
|
1747
|
+
|
|
1748
|
+
ExpectedBucketOwner?: string;
|
|
1749
|
+
}
|
|
1750
|
+
export declare namespace GetBucketOwnershipControlsRequest {
|
|
1751
|
+
|
|
1752
|
+
const filterSensitiveLog: (obj: GetBucketOwnershipControlsRequest) => any;
|
|
1753
|
+
}
|
|
1754
|
+
export interface GetBucketPolicyOutput {
|
|
1755
|
+
|
|
1756
|
+
Policy?: string;
|
|
1757
|
+
}
|
|
1758
|
+
export declare namespace GetBucketPolicyOutput {
|
|
1759
|
+
|
|
1760
|
+
const filterSensitiveLog: (obj: GetBucketPolicyOutput) => any;
|
|
1761
|
+
}
|
|
1762
|
+
export interface GetBucketPolicyRequest {
|
|
1763
|
+
|
|
1764
|
+
Bucket: string | undefined;
|
|
1765
|
+
|
|
1766
|
+
ExpectedBucketOwner?: string;
|
|
1767
|
+
}
|
|
1768
|
+
export declare namespace GetBucketPolicyRequest {
|
|
1769
|
+
|
|
1770
|
+
const filterSensitiveLog: (obj: GetBucketPolicyRequest) => any;
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1773
|
+
export interface PolicyStatus {
|
|
1774
|
+
|
|
1775
|
+
IsPublic?: boolean;
|
|
1776
|
+
}
|
|
1777
|
+
export declare namespace PolicyStatus {
|
|
1778
|
+
|
|
1779
|
+
const filterSensitiveLog: (obj: PolicyStatus) => any;
|
|
1780
|
+
}
|
|
1781
|
+
export interface GetBucketPolicyStatusOutput {
|
|
1782
|
+
|
|
1783
|
+
PolicyStatus?: PolicyStatus;
|
|
1784
|
+
}
|
|
1785
|
+
export declare namespace GetBucketPolicyStatusOutput {
|
|
1786
|
+
|
|
1787
|
+
const filterSensitiveLog: (obj: GetBucketPolicyStatusOutput) => any;
|
|
1788
|
+
}
|
|
1789
|
+
export interface GetBucketPolicyStatusRequest {
|
|
1790
|
+
|
|
1791
|
+
Bucket: string | undefined;
|
|
1792
|
+
|
|
1793
|
+
ExpectedBucketOwner?: string;
|
|
1794
|
+
}
|
|
1795
|
+
export declare namespace GetBucketPolicyStatusRequest {
|
|
1796
|
+
|
|
1797
|
+
const filterSensitiveLog: (obj: GetBucketPolicyStatusRequest) => any;
|
|
1798
|
+
}
|
|
1799
|
+
export declare type DeleteMarkerReplicationStatus = "Disabled" | "Enabled";
|
|
1800
|
+
|
|
1801
|
+
export interface DeleteMarkerReplication {
|
|
1802
|
+
|
|
1803
|
+
Status?: DeleteMarkerReplicationStatus | string;
|
|
1804
|
+
}
|
|
1805
|
+
export declare namespace DeleteMarkerReplication {
|
|
1806
|
+
|
|
1807
|
+
const filterSensitiveLog: (obj: DeleteMarkerReplication) => any;
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
export interface EncryptionConfiguration {
|
|
1811
|
+
|
|
1812
|
+
ReplicaKmsKeyID?: string;
|
|
1813
|
+
}
|
|
1814
|
+
export declare namespace EncryptionConfiguration {
|
|
1815
|
+
|
|
1816
|
+
const filterSensitiveLog: (obj: EncryptionConfiguration) => any;
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
export interface ReplicationTimeValue {
|
|
1820
|
+
|
|
1821
|
+
Minutes?: number;
|
|
1822
|
+
}
|
|
1823
|
+
export declare namespace ReplicationTimeValue {
|
|
1824
|
+
|
|
1825
|
+
const filterSensitiveLog: (obj: ReplicationTimeValue) => any;
|
|
1826
|
+
}
|
|
1827
|
+
export declare type MetricsStatus = "Disabled" | "Enabled";
|
|
1828
|
+
|
|
1829
|
+
export interface Metrics {
|
|
1830
|
+
|
|
1831
|
+
Status: MetricsStatus | string | undefined;
|
|
1832
|
+
|
|
1833
|
+
EventThreshold?: ReplicationTimeValue;
|
|
1834
|
+
}
|
|
1835
|
+
export declare namespace Metrics {
|
|
1836
|
+
|
|
1837
|
+
const filterSensitiveLog: (obj: Metrics) => any;
|
|
1838
|
+
}
|
|
1839
|
+
export declare type ReplicationTimeStatus = "Disabled" | "Enabled";
|
|
1840
|
+
|
|
1841
|
+
export interface ReplicationTime {
|
|
1842
|
+
|
|
1843
|
+
Status: ReplicationTimeStatus | string | undefined;
|
|
1844
|
+
|
|
1845
|
+
Time: ReplicationTimeValue | undefined;
|
|
1846
|
+
}
|
|
1847
|
+
export declare namespace ReplicationTime {
|
|
1848
|
+
|
|
1849
|
+
const filterSensitiveLog: (obj: ReplicationTime) => any;
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
export interface Destination {
|
|
1853
|
+
|
|
1854
|
+
Bucket: string | undefined;
|
|
1855
|
+
|
|
1856
|
+
Account?: string;
|
|
1857
|
+
|
|
1858
|
+
StorageClass?: StorageClass | string;
|
|
1859
|
+
|
|
1860
|
+
AccessControlTranslation?: AccessControlTranslation;
|
|
1861
|
+
|
|
1862
|
+
EncryptionConfiguration?: EncryptionConfiguration;
|
|
1863
|
+
|
|
1864
|
+
ReplicationTime?: ReplicationTime;
|
|
1865
|
+
|
|
1866
|
+
Metrics?: Metrics;
|
|
1867
|
+
}
|
|
1868
|
+
export declare namespace Destination {
|
|
1869
|
+
|
|
1870
|
+
const filterSensitiveLog: (obj: Destination) => any;
|
|
1871
|
+
}
|
|
1872
|
+
export declare type ExistingObjectReplicationStatus = "Disabled" | "Enabled";
|
|
1873
|
+
|
|
1874
|
+
export interface ExistingObjectReplication {
|
|
1875
|
+
|
|
1876
|
+
Status: ExistingObjectReplicationStatus | string | undefined;
|
|
1877
|
+
}
|
|
1878
|
+
export declare namespace ExistingObjectReplication {
|
|
1879
|
+
|
|
1880
|
+
const filterSensitiveLog: (obj: ExistingObjectReplication) => any;
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1883
|
+
export interface ReplicationRuleAndOperator {
|
|
1884
|
+
|
|
1885
|
+
Prefix?: string;
|
|
1886
|
+
|
|
1887
|
+
Tags?: Tag[];
|
|
1888
|
+
}
|
|
1889
|
+
export declare namespace ReplicationRuleAndOperator {
|
|
1890
|
+
|
|
1891
|
+
const filterSensitiveLog: (obj: ReplicationRuleAndOperator) => any;
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
export declare type ReplicationRuleFilter = ReplicationRuleFilter.AndMember | ReplicationRuleFilter.PrefixMember | ReplicationRuleFilter.TagMember | ReplicationRuleFilter.$UnknownMember;
|
|
1895
|
+
export declare namespace ReplicationRuleFilter {
|
|
1896
|
+
|
|
1897
|
+
interface PrefixMember {
|
|
1898
|
+
Prefix: string;
|
|
1899
|
+
Tag?: never;
|
|
1900
|
+
And?: never;
|
|
1901
|
+
$unknown?: never;
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
interface TagMember {
|
|
1905
|
+
Prefix?: never;
|
|
1906
|
+
Tag: Tag;
|
|
1907
|
+
And?: never;
|
|
1908
|
+
$unknown?: never;
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
interface AndMember {
|
|
1912
|
+
Prefix?: never;
|
|
1913
|
+
Tag?: never;
|
|
1914
|
+
And: ReplicationRuleAndOperator;
|
|
1915
|
+
$unknown?: never;
|
|
1916
|
+
}
|
|
1917
|
+
interface $UnknownMember {
|
|
1918
|
+
Prefix?: never;
|
|
1919
|
+
Tag?: never;
|
|
1920
|
+
And?: never;
|
|
1921
|
+
$unknown: [
|
|
1922
|
+
string,
|
|
1923
|
+
any
|
|
1924
|
+
];
|
|
1925
|
+
}
|
|
1926
|
+
interface Visitor<T> {
|
|
1927
|
+
Prefix: (value: string) => T;
|
|
1928
|
+
Tag: (value: Tag) => T;
|
|
1929
|
+
And: (value: ReplicationRuleAndOperator) => T;
|
|
1930
|
+
_: (name: string, value: any) => T;
|
|
1931
|
+
}
|
|
1932
|
+
const visit: <T>(value: ReplicationRuleFilter, visitor: Visitor<T>) => T;
|
|
1933
|
+
|
|
1934
|
+
const filterSensitiveLog: (obj: ReplicationRuleFilter) => any;
|
|
1935
|
+
}
|
|
1936
|
+
export declare type ReplicaModificationsStatus = "Disabled" | "Enabled";
|
|
1937
|
+
|
|
1938
|
+
export interface ReplicaModifications {
|
|
1939
|
+
|
|
1940
|
+
Status: ReplicaModificationsStatus | string | undefined;
|
|
1941
|
+
}
|
|
1942
|
+
export declare namespace ReplicaModifications {
|
|
1943
|
+
|
|
1944
|
+
const filterSensitiveLog: (obj: ReplicaModifications) => any;
|
|
1945
|
+
}
|
|
1946
|
+
export declare type SseKmsEncryptedObjectsStatus = "Disabled" | "Enabled";
|
|
1947
|
+
|
|
1948
|
+
export interface SseKmsEncryptedObjects {
|
|
1949
|
+
|
|
1950
|
+
Status: SseKmsEncryptedObjectsStatus | string | undefined;
|
|
1951
|
+
}
|
|
1952
|
+
export declare namespace SseKmsEncryptedObjects {
|
|
1953
|
+
|
|
1954
|
+
const filterSensitiveLog: (obj: SseKmsEncryptedObjects) => any;
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
export interface SourceSelectionCriteria {
|
|
1958
|
+
|
|
1959
|
+
SseKmsEncryptedObjects?: SseKmsEncryptedObjects;
|
|
1960
|
+
|
|
1961
|
+
ReplicaModifications?: ReplicaModifications;
|
|
1962
|
+
}
|
|
1963
|
+
export declare namespace SourceSelectionCriteria {
|
|
1964
|
+
|
|
1965
|
+
const filterSensitiveLog: (obj: SourceSelectionCriteria) => any;
|
|
1966
|
+
}
|
|
1967
|
+
export declare type ReplicationRuleStatus = "Disabled" | "Enabled";
|
|
1968
|
+
|
|
1969
|
+
export interface ReplicationRule {
|
|
1970
|
+
|
|
1971
|
+
ID?: string;
|
|
1972
|
+
|
|
1973
|
+
Priority?: number;
|
|
1974
|
+
|
|
1975
|
+
Prefix?: string;
|
|
1976
|
+
|
|
1977
|
+
Filter?: ReplicationRuleFilter;
|
|
1978
|
+
|
|
1979
|
+
Status: ReplicationRuleStatus | string | undefined;
|
|
1980
|
+
|
|
1981
|
+
SourceSelectionCriteria?: SourceSelectionCriteria;
|
|
1982
|
+
|
|
1983
|
+
ExistingObjectReplication?: ExistingObjectReplication;
|
|
1984
|
+
|
|
1985
|
+
Destination: Destination | undefined;
|
|
1986
|
+
|
|
1987
|
+
DeleteMarkerReplication?: DeleteMarkerReplication;
|
|
1988
|
+
}
|
|
1989
|
+
export declare namespace ReplicationRule {
|
|
1990
|
+
|
|
1991
|
+
const filterSensitiveLog: (obj: ReplicationRule) => any;
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
export interface ReplicationConfiguration {
|
|
1995
|
+
|
|
1996
|
+
Role: string | undefined;
|
|
1997
|
+
|
|
1998
|
+
Rules: ReplicationRule[] | undefined;
|
|
1999
|
+
}
|
|
2000
|
+
export declare namespace ReplicationConfiguration {
|
|
2001
|
+
|
|
2002
|
+
const filterSensitiveLog: (obj: ReplicationConfiguration) => any;
|
|
2003
|
+
}
|
|
2004
|
+
export interface GetBucketReplicationOutput {
|
|
2005
|
+
|
|
2006
|
+
ReplicationConfiguration?: ReplicationConfiguration;
|
|
2007
|
+
}
|
|
2008
|
+
export declare namespace GetBucketReplicationOutput {
|
|
2009
|
+
|
|
2010
|
+
const filterSensitiveLog: (obj: GetBucketReplicationOutput) => any;
|
|
2011
|
+
}
|
|
2012
|
+
export interface GetBucketReplicationRequest {
|
|
2013
|
+
|
|
2014
|
+
Bucket: string | undefined;
|
|
2015
|
+
|
|
2016
|
+
ExpectedBucketOwner?: string;
|
|
2017
|
+
}
|
|
2018
|
+
export declare namespace GetBucketReplicationRequest {
|
|
2019
|
+
|
|
2020
|
+
const filterSensitiveLog: (obj: GetBucketReplicationRequest) => any;
|
|
2021
|
+
}
|
|
2022
|
+
export declare type Payer = "BucketOwner" | "Requester";
|
|
2023
|
+
export interface GetBucketRequestPaymentOutput {
|
|
2024
|
+
|
|
2025
|
+
Payer?: Payer | string;
|
|
2026
|
+
}
|
|
2027
|
+
export declare namespace GetBucketRequestPaymentOutput {
|
|
2028
|
+
|
|
2029
|
+
const filterSensitiveLog: (obj: GetBucketRequestPaymentOutput) => any;
|
|
2030
|
+
}
|
|
2031
|
+
export interface GetBucketRequestPaymentRequest {
|
|
2032
|
+
|
|
2033
|
+
Bucket: string | undefined;
|
|
2034
|
+
|
|
2035
|
+
ExpectedBucketOwner?: string;
|
|
2036
|
+
}
|
|
2037
|
+
export declare namespace GetBucketRequestPaymentRequest {
|
|
2038
|
+
|
|
2039
|
+
const filterSensitiveLog: (obj: GetBucketRequestPaymentRequest) => any;
|
|
2040
|
+
}
|
|
2041
|
+
export interface GetBucketTaggingOutput {
|
|
2042
|
+
|
|
2043
|
+
TagSet: Tag[] | undefined;
|
|
2044
|
+
}
|
|
2045
|
+
export declare namespace GetBucketTaggingOutput {
|
|
2046
|
+
|
|
2047
|
+
const filterSensitiveLog: (obj: GetBucketTaggingOutput) => any;
|
|
2048
|
+
}
|
|
2049
|
+
export interface GetBucketTaggingRequest {
|
|
2050
|
+
|
|
2051
|
+
Bucket: string | undefined;
|
|
2052
|
+
|
|
2053
|
+
ExpectedBucketOwner?: string;
|
|
2054
|
+
}
|
|
2055
|
+
export declare namespace GetBucketTaggingRequest {
|
|
2056
|
+
|
|
2057
|
+
const filterSensitiveLog: (obj: GetBucketTaggingRequest) => any;
|
|
2058
|
+
}
|
|
2059
|
+
export declare type MFADeleteStatus = "Disabled" | "Enabled";
|
|
2060
|
+
export declare type BucketVersioningStatus = "Enabled" | "Suspended";
|
|
2061
|
+
export interface GetBucketVersioningOutput {
|
|
2062
|
+
|
|
2063
|
+
Status?: BucketVersioningStatus | string;
|
|
2064
|
+
|
|
2065
|
+
MFADelete?: MFADeleteStatus | string;
|
|
2066
|
+
}
|
|
2067
|
+
export declare namespace GetBucketVersioningOutput {
|
|
2068
|
+
|
|
2069
|
+
const filterSensitiveLog: (obj: GetBucketVersioningOutput) => any;
|
|
2070
|
+
}
|
|
2071
|
+
export interface GetBucketVersioningRequest {
|
|
2072
|
+
|
|
2073
|
+
Bucket: string | undefined;
|
|
2074
|
+
|
|
2075
|
+
ExpectedBucketOwner?: string;
|
|
2076
|
+
}
|
|
2077
|
+
export declare namespace GetBucketVersioningRequest {
|
|
2078
|
+
|
|
2079
|
+
const filterSensitiveLog: (obj: GetBucketVersioningRequest) => any;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
export interface ErrorDocument {
|
|
2083
|
+
|
|
2084
|
+
Key: string | undefined;
|
|
2085
|
+
}
|
|
2086
|
+
export declare namespace ErrorDocument {
|
|
2087
|
+
|
|
2088
|
+
const filterSensitiveLog: (obj: ErrorDocument) => any;
|
|
2089
|
+
}
|
|
2090
|
+
|
|
2091
|
+
export interface IndexDocument {
|
|
2092
|
+
|
|
2093
|
+
Suffix: string | undefined;
|
|
2094
|
+
}
|
|
2095
|
+
export declare namespace IndexDocument {
|
|
2096
|
+
|
|
2097
|
+
const filterSensitiveLog: (obj: IndexDocument) => any;
|
|
2098
|
+
}
|
|
2099
|
+
export declare type Protocol = "http" | "https";
|
|
2100
|
+
|
|
2101
|
+
export interface RedirectAllRequestsTo {
|
|
2102
|
+
|
|
2103
|
+
HostName: string | undefined;
|
|
2104
|
+
|
|
2105
|
+
Protocol?: Protocol | string;
|
|
2106
|
+
}
|
|
2107
|
+
export declare namespace RedirectAllRequestsTo {
|
|
2108
|
+
|
|
2109
|
+
const filterSensitiveLog: (obj: RedirectAllRequestsTo) => any;
|
|
2110
|
+
}
|
|
2111
|
+
|
|
2112
|
+
export interface Condition {
|
|
2113
|
+
|
|
2114
|
+
HttpErrorCodeReturnedEquals?: string;
|
|
2115
|
+
|
|
2116
|
+
KeyPrefixEquals?: string;
|
|
2117
|
+
}
|
|
2118
|
+
export declare namespace Condition {
|
|
2119
|
+
|
|
2120
|
+
const filterSensitiveLog: (obj: Condition) => any;
|
|
2121
|
+
}
|
|
2122
|
+
|
|
2123
|
+
export interface Redirect {
|
|
2124
|
+
|
|
2125
|
+
HostName?: string;
|
|
2126
|
+
|
|
2127
|
+
HttpRedirectCode?: string;
|
|
2128
|
+
|
|
2129
|
+
Protocol?: Protocol | string;
|
|
2130
|
+
|
|
2131
|
+
ReplaceKeyPrefixWith?: string;
|
|
2132
|
+
|
|
2133
|
+
ReplaceKeyWith?: string;
|
|
2134
|
+
}
|
|
2135
|
+
export declare namespace Redirect {
|
|
2136
|
+
|
|
2137
|
+
const filterSensitiveLog: (obj: Redirect) => any;
|
|
2138
|
+
}
|
|
2139
|
+
|
|
2140
|
+
export interface RoutingRule {
|
|
2141
|
+
|
|
2142
|
+
Condition?: Condition;
|
|
2143
|
+
|
|
2144
|
+
Redirect: Redirect | undefined;
|
|
2145
|
+
}
|
|
2146
|
+
export declare namespace RoutingRule {
|
|
2147
|
+
|
|
2148
|
+
const filterSensitiveLog: (obj: RoutingRule) => any;
|
|
2149
|
+
}
|
|
2150
|
+
export interface GetBucketWebsiteOutput {
|
|
2151
|
+
|
|
2152
|
+
RedirectAllRequestsTo?: RedirectAllRequestsTo;
|
|
2153
|
+
|
|
2154
|
+
IndexDocument?: IndexDocument;
|
|
2155
|
+
|
|
2156
|
+
ErrorDocument?: ErrorDocument;
|
|
2157
|
+
|
|
2158
|
+
RoutingRules?: RoutingRule[];
|
|
2159
|
+
}
|
|
2160
|
+
export declare namespace GetBucketWebsiteOutput {
|
|
2161
|
+
|
|
2162
|
+
const filterSensitiveLog: (obj: GetBucketWebsiteOutput) => any;
|
|
2163
|
+
}
|
|
2164
|
+
export interface GetBucketWebsiteRequest {
|
|
2165
|
+
|
|
2166
|
+
Bucket: string | undefined;
|
|
2167
|
+
|
|
2168
|
+
ExpectedBucketOwner?: string;
|
|
2169
|
+
}
|
|
2170
|
+
export declare namespace GetBucketWebsiteRequest {
|
|
2171
|
+
|
|
2172
|
+
const filterSensitiveLog: (obj: GetBucketWebsiteRequest) => any;
|
|
2173
|
+
}
|
|
2174
|
+
export declare type ReplicationStatus = "COMPLETE" | "FAILED" | "PENDING" | "REPLICA";
|
|
2175
|
+
export interface GetObjectOutput {
|
|
2176
|
+
|
|
2177
|
+
Body?: Readable | ReadableStream | Blob;
|
|
2178
|
+
|
|
2179
|
+
DeleteMarker?: boolean;
|
|
2180
|
+
|
|
2181
|
+
AcceptRanges?: string;
|
|
2182
|
+
|
|
2183
|
+
Expiration?: string;
|
|
2184
|
+
|
|
2185
|
+
Restore?: string;
|
|
2186
|
+
|
|
2187
|
+
LastModified?: Date;
|
|
2188
|
+
|
|
2189
|
+
ContentLength?: number;
|
|
2190
|
+
|
|
2191
|
+
ETag?: string;
|
|
2192
|
+
|
|
2193
|
+
ChecksumCRC32?: string;
|
|
2194
|
+
|
|
2195
|
+
ChecksumCRC32C?: string;
|
|
2196
|
+
|
|
2197
|
+
ChecksumSHA1?: string;
|
|
2198
|
+
|
|
2199
|
+
ChecksumSHA256?: string;
|
|
2200
|
+
|
|
2201
|
+
MissingMeta?: number;
|
|
2202
|
+
|
|
2203
|
+
VersionId?: string;
|
|
2204
|
+
|
|
2205
|
+
CacheControl?: string;
|
|
2206
|
+
|
|
2207
|
+
ContentDisposition?: string;
|
|
2208
|
+
|
|
2209
|
+
ContentEncoding?: string;
|
|
2210
|
+
|
|
2211
|
+
ContentLanguage?: string;
|
|
2212
|
+
|
|
2213
|
+
ContentRange?: string;
|
|
2214
|
+
|
|
2215
|
+
ContentType?: string;
|
|
2216
|
+
|
|
2217
|
+
Expires?: Date;
|
|
2218
|
+
|
|
2219
|
+
WebsiteRedirectLocation?: string;
|
|
2220
|
+
|
|
2221
|
+
ServerSideEncryption?: ServerSideEncryption | string;
|
|
2222
|
+
|
|
2223
|
+
Metadata?: {
|
|
2224
|
+
[key: string]: string;
|
|
2225
|
+
};
|
|
2226
|
+
|
|
2227
|
+
SSECustomerAlgorithm?: string;
|
|
2228
|
+
|
|
2229
|
+
SSECustomerKeyMD5?: string;
|
|
2230
|
+
|
|
2231
|
+
SSEKMSKeyId?: string;
|
|
2232
|
+
|
|
2233
|
+
BucketKeyEnabled?: boolean;
|
|
2234
|
+
|
|
2235
|
+
StorageClass?: StorageClass | string;
|
|
2236
|
+
|
|
2237
|
+
RequestCharged?: RequestCharged | string;
|
|
2238
|
+
|
|
2239
|
+
ReplicationStatus?: ReplicationStatus | string;
|
|
2240
|
+
|
|
2241
|
+
PartsCount?: number;
|
|
2242
|
+
|
|
2243
|
+
TagCount?: number;
|
|
2244
|
+
|
|
2245
|
+
ObjectLockMode?: ObjectLockMode | string;
|
|
2246
|
+
|
|
2247
|
+
ObjectLockRetainUntilDate?: Date;
|
|
2248
|
+
|
|
2249
|
+
ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus | string;
|
|
2250
|
+
}
|
|
2251
|
+
export declare namespace GetObjectOutput {
|
|
2252
|
+
|
|
2253
|
+
const filterSensitiveLog: (obj: GetObjectOutput) => any;
|
|
2254
|
+
}
|
|
2255
|
+
export declare enum ChecksumMode {
|
|
2256
|
+
ENABLED = "ENABLED"
|
|
2257
|
+
}
|
|
2258
|
+
export interface GetObjectRequest {
|
|
2259
|
+
|
|
2260
|
+
Bucket: string | undefined;
|
|
2261
|
+
|
|
2262
|
+
IfMatch?: string;
|
|
2263
|
+
|
|
2264
|
+
IfModifiedSince?: Date;
|
|
2265
|
+
|
|
2266
|
+
IfNoneMatch?: string;
|
|
2267
|
+
|
|
2268
|
+
IfUnmodifiedSince?: Date;
|
|
2269
|
+
|
|
2270
|
+
Key: string | undefined;
|
|
2271
|
+
|
|
2272
|
+
Range?: string;
|
|
2273
|
+
|
|
2274
|
+
ResponseCacheControl?: string;
|
|
2275
|
+
|
|
2276
|
+
ResponseContentDisposition?: string;
|
|
2277
|
+
|
|
2278
|
+
ResponseContentEncoding?: string;
|
|
2279
|
+
|
|
2280
|
+
ResponseContentLanguage?: string;
|
|
2281
|
+
|
|
2282
|
+
ResponseContentType?: string;
|
|
2283
|
+
|
|
2284
|
+
ResponseExpires?: Date;
|
|
2285
|
+
|
|
2286
|
+
VersionId?: string;
|
|
2287
|
+
|
|
2288
|
+
SSECustomerAlgorithm?: string;
|
|
2289
|
+
|
|
2290
|
+
SSECustomerKey?: string;
|
|
2291
|
+
|
|
2292
|
+
SSECustomerKeyMD5?: string;
|
|
2293
|
+
|
|
2294
|
+
RequestPayer?: RequestPayer | string;
|
|
2295
|
+
|
|
2296
|
+
PartNumber?: number;
|
|
2297
|
+
|
|
2298
|
+
ExpectedBucketOwner?: string;
|
|
2299
|
+
|
|
2300
|
+
ChecksumMode?: ChecksumMode | string;
|
|
2301
|
+
}
|
|
2302
|
+
export declare namespace GetObjectRequest {
|
|
2303
|
+
|
|
2304
|
+
const filterSensitiveLog: (obj: GetObjectRequest) => any;
|
|
2305
|
+
}
|
|
2306
|
+
|
|
2307
|
+
export declare class InvalidObjectState extends __BaseException {
|
|
2308
|
+
readonly name: "InvalidObjectState";
|
|
2309
|
+
readonly $fault: "client";
|
|
2310
|
+
StorageClass?: StorageClass | string;
|
|
2311
|
+
AccessTier?: IntelligentTieringAccessTier | string;
|
|
2312
|
+
|
|
2313
|
+
constructor(opts: __ExceptionOptionType<InvalidObjectState, __BaseException>);
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
export declare class NoSuchKey extends __BaseException {
|
|
2317
|
+
readonly name: "NoSuchKey";
|
|
2318
|
+
readonly $fault: "client";
|
|
2319
|
+
|
|
2320
|
+
constructor(opts: __ExceptionOptionType<NoSuchKey, __BaseException>);
|
|
2321
|
+
}
|
|
2322
|
+
export interface GetObjectAclOutput {
|
|
2323
|
+
|
|
2324
|
+
Owner?: Owner;
|
|
2325
|
+
|
|
2326
|
+
Grants?: Grant[];
|
|
2327
|
+
|
|
2328
|
+
RequestCharged?: RequestCharged | string;
|
|
2329
|
+
}
|
|
2330
|
+
export declare namespace GetObjectAclOutput {
|
|
2331
|
+
|
|
2332
|
+
const filterSensitiveLog: (obj: GetObjectAclOutput) => any;
|
|
2333
|
+
}
|
|
2334
|
+
export interface GetObjectAclRequest {
|
|
2335
|
+
|
|
2336
|
+
Bucket: string | undefined;
|
|
2337
|
+
|
|
2338
|
+
Key: string | undefined;
|
|
2339
|
+
|
|
2340
|
+
VersionId?: string;
|
|
2341
|
+
|
|
2342
|
+
RequestPayer?: RequestPayer | string;
|
|
2343
|
+
|
|
2344
|
+
ExpectedBucketOwner?: string;
|
|
2345
|
+
}
|
|
2346
|
+
export declare namespace GetObjectAclRequest {
|
|
2347
|
+
|
|
2348
|
+
const filterSensitiveLog: (obj: GetObjectAclRequest) => any;
|
|
2349
|
+
}
|
|
2350
|
+
|
|
2351
|
+
export interface Checksum {
|
|
2352
|
+
|
|
2353
|
+
ChecksumCRC32?: string;
|
|
2354
|
+
|
|
2355
|
+
ChecksumCRC32C?: string;
|
|
2356
|
+
|
|
2357
|
+
ChecksumSHA1?: string;
|
|
2358
|
+
|
|
2359
|
+
ChecksumSHA256?: string;
|
|
2360
|
+
}
|
|
2361
|
+
export declare namespace Checksum {
|
|
2362
|
+
|
|
2363
|
+
const filterSensitiveLog: (obj: Checksum) => any;
|
|
2364
|
+
}
|
|
2365
|
+
|
|
2366
|
+
export interface ObjectPart {
|
|
2367
|
+
|
|
2368
|
+
PartNumber?: number;
|
|
2369
|
+
|
|
2370
|
+
Size?: number;
|
|
2371
|
+
|
|
2372
|
+
ChecksumCRC32?: string;
|
|
2373
|
+
|
|
2374
|
+
ChecksumCRC32C?: string;
|
|
2375
|
+
|
|
2376
|
+
ChecksumSHA1?: string;
|
|
2377
|
+
|
|
2378
|
+
ChecksumSHA256?: string;
|
|
2379
|
+
}
|
|
2380
|
+
export declare namespace ObjectPart {
|
|
2381
|
+
|
|
2382
|
+
const filterSensitiveLog: (obj: ObjectPart) => any;
|
|
2383
|
+
}
|
|
2384
|
+
|
|
2385
|
+
export interface GetObjectAttributesParts {
|
|
2386
|
+
|
|
2387
|
+
TotalPartsCount?: number;
|
|
2388
|
+
|
|
2389
|
+
PartNumberMarker?: string;
|
|
2390
|
+
|
|
2391
|
+
NextPartNumberMarker?: string;
|
|
2392
|
+
|
|
2393
|
+
MaxParts?: number;
|
|
2394
|
+
|
|
2395
|
+
IsTruncated?: boolean;
|
|
2396
|
+
|
|
2397
|
+
Parts?: ObjectPart[];
|
|
2398
|
+
}
|
|
2399
|
+
export declare namespace GetObjectAttributesParts {
|
|
2400
|
+
|
|
2401
|
+
const filterSensitiveLog: (obj: GetObjectAttributesParts) => any;
|
|
2402
|
+
}
|
|
2403
|
+
export interface GetObjectAttributesOutput {
|
|
2404
|
+
|
|
2405
|
+
DeleteMarker?: boolean;
|
|
2406
|
+
|
|
2407
|
+
LastModified?: Date;
|
|
2408
|
+
|
|
2409
|
+
VersionId?: string;
|
|
2410
|
+
|
|
2411
|
+
RequestCharged?: RequestCharged | string;
|
|
2412
|
+
|
|
2413
|
+
ETag?: string;
|
|
2414
|
+
|
|
2415
|
+
Checksum?: Checksum;
|
|
2416
|
+
|
|
2417
|
+
ObjectParts?: GetObjectAttributesParts;
|
|
2418
|
+
|
|
2419
|
+
StorageClass?: StorageClass | string;
|
|
2420
|
+
|
|
2421
|
+
ObjectSize?: number;
|
|
2422
|
+
}
|
|
2423
|
+
export declare namespace GetObjectAttributesOutput {
|
|
2424
|
+
|
|
2425
|
+
const filterSensitiveLog: (obj: GetObjectAttributesOutput) => any;
|
|
2426
|
+
}
|
|
2427
|
+
export declare enum ObjectAttributes {
|
|
2428
|
+
CHECKSUM = "Checksum",
|
|
2429
|
+
ETAG = "ETag",
|
|
2430
|
+
OBJECT_PARTS = "ObjectParts",
|
|
2431
|
+
OBJECT_SIZE = "ObjectSize",
|
|
2432
|
+
STORAGE_CLASS = "StorageClass"
|
|
2433
|
+
}
|
|
2434
|
+
export interface GetObjectAttributesRequest {
|
|
2435
|
+
|
|
2436
|
+
Bucket: string | undefined;
|
|
2437
|
+
|
|
2438
|
+
Key: string | undefined;
|
|
2439
|
+
|
|
2440
|
+
VersionId?: string;
|
|
2441
|
+
|
|
2442
|
+
MaxParts?: number;
|
|
2443
|
+
|
|
2444
|
+
PartNumberMarker?: string;
|
|
2445
|
+
|
|
2446
|
+
SSECustomerAlgorithm?: string;
|
|
2447
|
+
|
|
2448
|
+
SSECustomerKey?: string;
|
|
2449
|
+
|
|
2450
|
+
SSECustomerKeyMD5?: string;
|
|
2451
|
+
|
|
2452
|
+
RequestPayer?: RequestPayer | string;
|
|
2453
|
+
|
|
2454
|
+
ExpectedBucketOwner?: string;
|
|
2455
|
+
|
|
2456
|
+
ObjectAttributes: (ObjectAttributes | string)[] | undefined;
|
|
2457
|
+
}
|
|
2458
|
+
export declare namespace GetObjectAttributesRequest {
|
|
2459
|
+
|
|
2460
|
+
const filterSensitiveLog: (obj: GetObjectAttributesRequest) => any;
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
export interface ObjectLockLegalHold {
|
|
2464
|
+
|
|
2465
|
+
Status?: ObjectLockLegalHoldStatus | string;
|
|
2466
|
+
}
|
|
2467
|
+
export declare namespace ObjectLockLegalHold {
|
|
2468
|
+
|
|
2469
|
+
const filterSensitiveLog: (obj: ObjectLockLegalHold) => any;
|
|
2470
|
+
}
|
|
2471
|
+
export interface GetObjectLegalHoldOutput {
|
|
2472
|
+
|
|
2473
|
+
LegalHold?: ObjectLockLegalHold;
|
|
2474
|
+
}
|
|
2475
|
+
export declare namespace GetObjectLegalHoldOutput {
|
|
2476
|
+
|
|
2477
|
+
const filterSensitiveLog: (obj: GetObjectLegalHoldOutput) => any;
|
|
2478
|
+
}
|
|
2479
|
+
export interface GetObjectLegalHoldRequest {
|
|
2480
|
+
|
|
2481
|
+
Bucket: string | undefined;
|
|
2482
|
+
|
|
2483
|
+
Key: string | undefined;
|
|
2484
|
+
|
|
2485
|
+
VersionId?: string;
|
|
2486
|
+
|
|
2487
|
+
RequestPayer?: RequestPayer | string;
|
|
2488
|
+
|
|
2489
|
+
ExpectedBucketOwner?: string;
|
|
2490
|
+
}
|
|
2491
|
+
export declare namespace GetObjectLegalHoldRequest {
|
|
2492
|
+
|
|
2493
|
+
const filterSensitiveLog: (obj: GetObjectLegalHoldRequest) => any;
|
|
2494
|
+
}
|
|
2495
|
+
export declare type ObjectLockEnabled = "Enabled";
|
|
2496
|
+
export declare type ObjectLockRetentionMode = "COMPLIANCE" | "GOVERNANCE";
|
|
2497
|
+
|
|
2498
|
+
export interface DefaultRetention {
|
|
2499
|
+
|
|
2500
|
+
Mode?: ObjectLockRetentionMode | string;
|
|
2501
|
+
|
|
2502
|
+
Days?: number;
|
|
2503
|
+
|
|
2504
|
+
Years?: number;
|
|
2505
|
+
}
|
|
2506
|
+
export declare namespace DefaultRetention {
|
|
2507
|
+
|
|
2508
|
+
const filterSensitiveLog: (obj: DefaultRetention) => any;
|
|
2509
|
+
}
|
|
2510
|
+
|
|
2511
|
+
export interface ObjectLockRule {
|
|
2512
|
+
|
|
2513
|
+
DefaultRetention?: DefaultRetention;
|
|
2514
|
+
}
|
|
2515
|
+
export declare namespace ObjectLockRule {
|
|
2516
|
+
|
|
2517
|
+
const filterSensitiveLog: (obj: ObjectLockRule) => any;
|
|
2518
|
+
}
|
|
2519
|
+
|
|
2520
|
+
export interface ObjectLockConfiguration {
|
|
2521
|
+
|
|
2522
|
+
ObjectLockEnabled?: ObjectLockEnabled | string;
|
|
2523
|
+
|
|
2524
|
+
Rule?: ObjectLockRule;
|
|
2525
|
+
}
|
|
2526
|
+
export declare namespace ObjectLockConfiguration {
|
|
2527
|
+
|
|
2528
|
+
const filterSensitiveLog: (obj: ObjectLockConfiguration) => any;
|
|
2529
|
+
}
|
|
2530
|
+
export interface GetObjectLockConfigurationOutput {
|
|
2531
|
+
|
|
2532
|
+
ObjectLockConfiguration?: ObjectLockConfiguration;
|
|
2533
|
+
}
|
|
2534
|
+
export declare namespace GetObjectLockConfigurationOutput {
|
|
2535
|
+
|
|
2536
|
+
const filterSensitiveLog: (obj: GetObjectLockConfigurationOutput) => any;
|
|
2537
|
+
}
|
|
2538
|
+
export interface GetObjectLockConfigurationRequest {
|
|
2539
|
+
|
|
2540
|
+
Bucket: string | undefined;
|
|
2541
|
+
|
|
2542
|
+
ExpectedBucketOwner?: string;
|
|
2543
|
+
}
|
|
2544
|
+
export declare namespace GetObjectLockConfigurationRequest {
|
|
2545
|
+
|
|
2546
|
+
const filterSensitiveLog: (obj: GetObjectLockConfigurationRequest) => any;
|
|
2547
|
+
}
|
|
2548
|
+
|
|
2549
|
+
export interface ObjectLockRetention {
|
|
2550
|
+
|
|
2551
|
+
Mode?: ObjectLockRetentionMode | string;
|
|
2552
|
+
|
|
2553
|
+
RetainUntilDate?: Date;
|
|
2554
|
+
}
|
|
2555
|
+
export declare namespace ObjectLockRetention {
|
|
2556
|
+
|
|
2557
|
+
const filterSensitiveLog: (obj: ObjectLockRetention) => any;
|
|
2558
|
+
}
|
|
2559
|
+
export interface GetObjectRetentionOutput {
|
|
2560
|
+
|
|
2561
|
+
Retention?: ObjectLockRetention;
|
|
2562
|
+
}
|
|
2563
|
+
export declare namespace GetObjectRetentionOutput {
|
|
2564
|
+
|
|
2565
|
+
const filterSensitiveLog: (obj: GetObjectRetentionOutput) => any;
|
|
2566
|
+
}
|
|
2567
|
+
export interface GetObjectRetentionRequest {
|
|
2568
|
+
|
|
2569
|
+
Bucket: string | undefined;
|
|
2570
|
+
|
|
2571
|
+
Key: string | undefined;
|
|
2572
|
+
|
|
2573
|
+
VersionId?: string;
|
|
2574
|
+
|
|
2575
|
+
RequestPayer?: RequestPayer | string;
|
|
2576
|
+
|
|
2577
|
+
ExpectedBucketOwner?: string;
|
|
2578
|
+
}
|
|
2579
|
+
export declare namespace GetObjectRetentionRequest {
|
|
2580
|
+
|
|
2581
|
+
const filterSensitiveLog: (obj: GetObjectRetentionRequest) => any;
|
|
2582
|
+
}
|
|
2583
|
+
export interface GetObjectTaggingOutput {
|
|
2584
|
+
|
|
2585
|
+
VersionId?: string;
|
|
2586
|
+
|
|
2587
|
+
TagSet: Tag[] | undefined;
|
|
2588
|
+
}
|
|
2589
|
+
export declare namespace GetObjectTaggingOutput {
|
|
2590
|
+
|
|
2591
|
+
const filterSensitiveLog: (obj: GetObjectTaggingOutput) => any;
|
|
2592
|
+
}
|
|
2593
|
+
export interface GetObjectTaggingRequest {
|
|
2594
|
+
|
|
2595
|
+
Bucket: string | undefined;
|
|
2596
|
+
|
|
2597
|
+
Key: string | undefined;
|
|
2598
|
+
|
|
2599
|
+
VersionId?: string;
|
|
2600
|
+
|
|
2601
|
+
ExpectedBucketOwner?: string;
|
|
2602
|
+
|
|
2603
|
+
RequestPayer?: RequestPayer | string;
|
|
2604
|
+
}
|
|
2605
|
+
export declare namespace GetObjectTaggingRequest {
|
|
2606
|
+
|
|
2607
|
+
const filterSensitiveLog: (obj: GetObjectTaggingRequest) => any;
|
|
2608
|
+
}
|
|
2609
|
+
export interface GetObjectTorrentOutput {
|
|
2610
|
+
|
|
2611
|
+
Body?: Readable | ReadableStream | Blob;
|
|
2612
|
+
|
|
2613
|
+
RequestCharged?: RequestCharged | string;
|
|
2614
|
+
}
|
|
2615
|
+
export declare namespace GetObjectTorrentOutput {
|
|
2616
|
+
|
|
2617
|
+
const filterSensitiveLog: (obj: GetObjectTorrentOutput) => any;
|
|
2618
|
+
}
|
|
2619
|
+
export interface GetObjectTorrentRequest {
|
|
2620
|
+
|
|
2621
|
+
Bucket: string | undefined;
|
|
2622
|
+
|
|
2623
|
+
Key: string | undefined;
|
|
2624
|
+
|
|
2625
|
+
RequestPayer?: RequestPayer | string;
|
|
2626
|
+
|
|
2627
|
+
ExpectedBucketOwner?: string;
|
|
2628
|
+
}
|
|
2629
|
+
export declare namespace GetObjectTorrentRequest {
|
|
2630
|
+
|
|
2631
|
+
const filterSensitiveLog: (obj: GetObjectTorrentRequest) => any;
|
|
2632
|
+
}
|
|
2633
|
+
|
|
2634
|
+
export interface PublicAccessBlockConfiguration {
|
|
2635
|
+
|
|
2636
|
+
BlockPublicAcls?: boolean;
|
|
2637
|
+
|
|
2638
|
+
IgnorePublicAcls?: boolean;
|
|
2639
|
+
|
|
2640
|
+
BlockPublicPolicy?: boolean;
|
|
2641
|
+
|
|
2642
|
+
RestrictPublicBuckets?: boolean;
|
|
2643
|
+
}
|
|
2644
|
+
export declare namespace PublicAccessBlockConfiguration {
|
|
2645
|
+
|
|
2646
|
+
const filterSensitiveLog: (obj: PublicAccessBlockConfiguration) => any;
|
|
2647
|
+
}
|
|
2648
|
+
export interface GetPublicAccessBlockOutput {
|
|
2649
|
+
|
|
2650
|
+
PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration;
|
|
2651
|
+
}
|
|
2652
|
+
export declare namespace GetPublicAccessBlockOutput {
|
|
2653
|
+
|
|
2654
|
+
const filterSensitiveLog: (obj: GetPublicAccessBlockOutput) => any;
|
|
2655
|
+
}
|
|
2656
|
+
export interface GetPublicAccessBlockRequest {
|
|
2657
|
+
|
|
2658
|
+
Bucket: string | undefined;
|
|
2659
|
+
|
|
2660
|
+
ExpectedBucketOwner?: string;
|
|
2661
|
+
}
|
|
2662
|
+
export declare namespace GetPublicAccessBlockRequest {
|
|
2663
|
+
|
|
2664
|
+
const filterSensitiveLog: (obj: GetPublicAccessBlockRequest) => any;
|
|
2665
|
+
}
|
|
2666
|
+
export interface HeadBucketRequest {
|
|
2667
|
+
|
|
2668
|
+
Bucket: string | undefined;
|
|
2669
|
+
|
|
2670
|
+
ExpectedBucketOwner?: string;
|
|
2671
|
+
}
|
|
2672
|
+
export declare namespace HeadBucketRequest {
|
|
2673
|
+
|
|
2674
|
+
const filterSensitiveLog: (obj: HeadBucketRequest) => any;
|
|
2675
|
+
}
|
|
2676
|
+
|
|
2677
|
+
export declare class NotFound extends __BaseException {
|
|
2678
|
+
readonly name: "NotFound";
|
|
2679
|
+
readonly $fault: "client";
|
|
2680
|
+
|
|
2681
|
+
constructor(opts: __ExceptionOptionType<NotFound, __BaseException>);
|
|
2682
|
+
}
|
|
2683
|
+
export declare type ArchiveStatus = "ARCHIVE_ACCESS" | "DEEP_ARCHIVE_ACCESS";
|
|
2684
|
+
export interface HeadObjectOutput {
|
|
2685
|
+
|
|
2686
|
+
DeleteMarker?: boolean;
|
|
2687
|
+
|
|
2688
|
+
AcceptRanges?: string;
|
|
2689
|
+
|
|
2690
|
+
Expiration?: string;
|
|
2691
|
+
|
|
2692
|
+
Restore?: string;
|
|
2693
|
+
|
|
2694
|
+
ArchiveStatus?: ArchiveStatus | string;
|
|
2695
|
+
|
|
2696
|
+
LastModified?: Date;
|
|
2697
|
+
|
|
2698
|
+
ContentLength?: number;
|
|
2699
|
+
|
|
2700
|
+
ChecksumCRC32?: string;
|
|
2701
|
+
|
|
2702
|
+
ChecksumCRC32C?: string;
|
|
2703
|
+
|
|
2704
|
+
ChecksumSHA1?: string;
|
|
2705
|
+
|
|
2706
|
+
ChecksumSHA256?: string;
|
|
2707
|
+
|
|
2708
|
+
ETag?: string;
|
|
2709
|
+
|
|
2710
|
+
MissingMeta?: number;
|
|
2711
|
+
|
|
2712
|
+
VersionId?: string;
|
|
2713
|
+
|
|
2714
|
+
CacheControl?: string;
|
|
2715
|
+
|
|
2716
|
+
ContentDisposition?: string;
|
|
2717
|
+
|
|
2718
|
+
ContentEncoding?: string;
|
|
2719
|
+
|
|
2720
|
+
ContentLanguage?: string;
|
|
2721
|
+
|
|
2722
|
+
ContentType?: string;
|
|
2723
|
+
|
|
2724
|
+
Expires?: Date;
|
|
2725
|
+
|
|
2726
|
+
WebsiteRedirectLocation?: string;
|
|
2727
|
+
|
|
2728
|
+
ServerSideEncryption?: ServerSideEncryption | string;
|
|
2729
|
+
|
|
2730
|
+
Metadata?: {
|
|
2731
|
+
[key: string]: string;
|
|
2732
|
+
};
|
|
2733
|
+
|
|
2734
|
+
SSECustomerAlgorithm?: string;
|
|
2735
|
+
|
|
2736
|
+
SSECustomerKeyMD5?: string;
|
|
2737
|
+
|
|
2738
|
+
SSEKMSKeyId?: string;
|
|
2739
|
+
|
|
2740
|
+
BucketKeyEnabled?: boolean;
|
|
2741
|
+
|
|
2742
|
+
StorageClass?: StorageClass | string;
|
|
2743
|
+
|
|
2744
|
+
RequestCharged?: RequestCharged | string;
|
|
2745
|
+
|
|
2746
|
+
ReplicationStatus?: ReplicationStatus | string;
|
|
2747
|
+
|
|
2748
|
+
PartsCount?: number;
|
|
2749
|
+
|
|
2750
|
+
ObjectLockMode?: ObjectLockMode | string;
|
|
2751
|
+
|
|
2752
|
+
ObjectLockRetainUntilDate?: Date;
|
|
2753
|
+
|
|
2754
|
+
ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus | string;
|
|
2755
|
+
}
|
|
2756
|
+
export declare namespace HeadObjectOutput {
|
|
2757
|
+
|
|
2758
|
+
const filterSensitiveLog: (obj: HeadObjectOutput) => any;
|
|
2759
|
+
}
|
|
2760
|
+
export interface HeadObjectRequest {
|
|
2761
|
+
|
|
2762
|
+
Bucket: string | undefined;
|
|
2763
|
+
|
|
2764
|
+
IfMatch?: string;
|
|
2765
|
+
|
|
2766
|
+
IfModifiedSince?: Date;
|
|
2767
|
+
|
|
2768
|
+
IfNoneMatch?: string;
|
|
2769
|
+
|
|
2770
|
+
IfUnmodifiedSince?: Date;
|
|
2771
|
+
|
|
2772
|
+
Key: string | undefined;
|
|
2773
|
+
|
|
2774
|
+
Range?: string;
|
|
2775
|
+
|
|
2776
|
+
VersionId?: string;
|
|
2777
|
+
|
|
2778
|
+
SSECustomerAlgorithm?: string;
|
|
2779
|
+
|
|
2780
|
+
SSECustomerKey?: string;
|
|
2781
|
+
|
|
2782
|
+
SSECustomerKeyMD5?: string;
|
|
2783
|
+
|
|
2784
|
+
RequestPayer?: RequestPayer | string;
|
|
2785
|
+
|
|
2786
|
+
PartNumber?: number;
|
|
2787
|
+
|
|
2788
|
+
ExpectedBucketOwner?: string;
|
|
2789
|
+
|
|
2790
|
+
ChecksumMode?: ChecksumMode | string;
|
|
2791
|
+
}
|
|
2792
|
+
export declare namespace HeadObjectRequest {
|
|
2793
|
+
|
|
2794
|
+
const filterSensitiveLog: (obj: HeadObjectRequest) => any;
|
|
2795
|
+
}
|
|
2796
|
+
export interface ListBucketAnalyticsConfigurationsOutput {
|
|
2797
|
+
|
|
2798
|
+
IsTruncated?: boolean;
|
|
2799
|
+
|
|
2800
|
+
ContinuationToken?: string;
|
|
2801
|
+
|
|
2802
|
+
NextContinuationToken?: string;
|
|
2803
|
+
|
|
2804
|
+
AnalyticsConfigurationList?: AnalyticsConfiguration[];
|
|
2805
|
+
}
|
|
2806
|
+
export declare namespace ListBucketAnalyticsConfigurationsOutput {
|
|
2807
|
+
|
|
2808
|
+
const filterSensitiveLog: (obj: ListBucketAnalyticsConfigurationsOutput) => any;
|
|
2809
|
+
}
|
|
2810
|
+
export interface ListBucketAnalyticsConfigurationsRequest {
|
|
2811
|
+
|
|
2812
|
+
Bucket: string | undefined;
|
|
2813
|
+
|
|
2814
|
+
ContinuationToken?: string;
|
|
2815
|
+
|
|
2816
|
+
ExpectedBucketOwner?: string;
|
|
2817
|
+
}
|
|
2818
|
+
export declare namespace ListBucketAnalyticsConfigurationsRequest {
|
|
2819
|
+
|
|
2820
|
+
const filterSensitiveLog: (obj: ListBucketAnalyticsConfigurationsRequest) => any;
|
|
2821
|
+
}
|
|
2822
|
+
export interface ListBucketIntelligentTieringConfigurationsOutput {
|
|
2823
|
+
|
|
2824
|
+
IsTruncated?: boolean;
|
|
2825
|
+
|
|
2826
|
+
ContinuationToken?: string;
|
|
2827
|
+
|
|
2828
|
+
NextContinuationToken?: string;
|
|
2829
|
+
|
|
2830
|
+
IntelligentTieringConfigurationList?: IntelligentTieringConfiguration[];
|
|
2831
|
+
}
|
|
2832
|
+
export declare namespace ListBucketIntelligentTieringConfigurationsOutput {
|
|
2833
|
+
|
|
2834
|
+
const filterSensitiveLog: (obj: ListBucketIntelligentTieringConfigurationsOutput) => any;
|
|
2835
|
+
}
|
|
2836
|
+
export interface ListBucketIntelligentTieringConfigurationsRequest {
|
|
2837
|
+
|
|
2838
|
+
Bucket: string | undefined;
|
|
2839
|
+
|
|
2840
|
+
ContinuationToken?: string;
|
|
2841
|
+
}
|
|
2842
|
+
export declare namespace ListBucketIntelligentTieringConfigurationsRequest {
|
|
2843
|
+
|
|
2844
|
+
const filterSensitiveLog: (obj: ListBucketIntelligentTieringConfigurationsRequest) => any;
|
|
2845
|
+
}
|
|
2846
|
+
export interface ListBucketInventoryConfigurationsOutput {
|
|
2847
|
+
|
|
2848
|
+
ContinuationToken?: string;
|
|
2849
|
+
|
|
2850
|
+
InventoryConfigurationList?: InventoryConfiguration[];
|
|
2851
|
+
|
|
2852
|
+
IsTruncated?: boolean;
|
|
2853
|
+
|
|
2854
|
+
NextContinuationToken?: string;
|
|
2855
|
+
}
|
|
2856
|
+
export declare namespace ListBucketInventoryConfigurationsOutput {
|
|
2857
|
+
|
|
2858
|
+
const filterSensitiveLog: (obj: ListBucketInventoryConfigurationsOutput) => any;
|
|
2859
|
+
}
|
|
2860
|
+
export interface ListBucketInventoryConfigurationsRequest {
|
|
2861
|
+
|
|
2862
|
+
Bucket: string | undefined;
|
|
2863
|
+
|
|
2864
|
+
ContinuationToken?: string;
|
|
2865
|
+
|
|
2866
|
+
ExpectedBucketOwner?: string;
|
|
2867
|
+
}
|
|
2868
|
+
export declare namespace ListBucketInventoryConfigurationsRequest {
|
|
2869
|
+
|
|
2870
|
+
const filterSensitiveLog: (obj: ListBucketInventoryConfigurationsRequest) => any;
|
|
2871
|
+
}
|
|
2872
|
+
export interface ListBucketMetricsConfigurationsOutput {
|
|
2873
|
+
|
|
2874
|
+
IsTruncated?: boolean;
|
|
2875
|
+
|
|
2876
|
+
ContinuationToken?: string;
|
|
2877
|
+
|
|
2878
|
+
NextContinuationToken?: string;
|
|
2879
|
+
|
|
2880
|
+
MetricsConfigurationList?: MetricsConfiguration[];
|
|
2881
|
+
}
|
|
2882
|
+
export declare namespace ListBucketMetricsConfigurationsOutput {
|
|
2883
|
+
|
|
2884
|
+
const filterSensitiveLog: (obj: ListBucketMetricsConfigurationsOutput) => any;
|
|
2885
|
+
}
|
|
2886
|
+
export interface ListBucketMetricsConfigurationsRequest {
|
|
2887
|
+
|
|
2888
|
+
Bucket: string | undefined;
|
|
2889
|
+
|
|
2890
|
+
ContinuationToken?: string;
|
|
2891
|
+
|
|
2892
|
+
ExpectedBucketOwner?: string;
|
|
2893
|
+
}
|
|
2894
|
+
export declare namespace ListBucketMetricsConfigurationsRequest {
|
|
2895
|
+
|
|
2896
|
+
const filterSensitiveLog: (obj: ListBucketMetricsConfigurationsRequest) => any;
|
|
2897
|
+
}
|
|
2898
|
+
|
|
2899
|
+
export interface Bucket {
|
|
2900
|
+
|
|
2901
|
+
Name?: string;
|
|
2902
|
+
|
|
2903
|
+
CreationDate?: Date;
|
|
2904
|
+
}
|
|
2905
|
+
export declare namespace Bucket {
|
|
2906
|
+
|
|
2907
|
+
const filterSensitiveLog: (obj: Bucket) => any;
|
|
2908
|
+
}
|
|
2909
|
+
export interface ListBucketsOutput {
|
|
2910
|
+
|
|
2911
|
+
Buckets?: Bucket[];
|
|
2912
|
+
|
|
2913
|
+
Owner?: Owner;
|
|
2914
|
+
}
|
|
2915
|
+
export declare namespace ListBucketsOutput {
|
|
2916
|
+
|
|
2917
|
+
const filterSensitiveLog: (obj: ListBucketsOutput) => any;
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
export interface CommonPrefix {
|
|
2921
|
+
|
|
2922
|
+
Prefix?: string;
|
|
2923
|
+
}
|
|
2924
|
+
export declare namespace CommonPrefix {
|
|
2925
|
+
|
|
2926
|
+
const filterSensitiveLog: (obj: CommonPrefix) => any;
|
|
2927
|
+
}
|
|
2928
|
+
export declare type EncodingType = "url";
|
|
2929
|
+
|
|
2930
|
+
export interface Initiator {
|
|
2931
|
+
|
|
2932
|
+
ID?: string;
|
|
2933
|
+
|
|
2934
|
+
DisplayName?: string;
|
|
2935
|
+
}
|
|
2936
|
+
export declare namespace Initiator {
|
|
2937
|
+
|
|
2938
|
+
const filterSensitiveLog: (obj: Initiator) => any;
|
|
2939
|
+
}
|
|
2940
|
+
|
|
2941
|
+
export interface MultipartUpload {
|
|
2942
|
+
|
|
2943
|
+
UploadId?: string;
|
|
2944
|
+
|
|
2945
|
+
Key?: string;
|
|
2946
|
+
|
|
2947
|
+
Initiated?: Date;
|
|
2948
|
+
|
|
2949
|
+
StorageClass?: StorageClass | string;
|
|
2950
|
+
|
|
2951
|
+
Owner?: Owner;
|
|
2952
|
+
|
|
2953
|
+
Initiator?: Initiator;
|
|
2954
|
+
|
|
2955
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
2956
|
+
}
|
|
2957
|
+
export declare namespace MultipartUpload {
|
|
2958
|
+
|
|
2959
|
+
const filterSensitiveLog: (obj: MultipartUpload) => any;
|
|
2960
|
+
}
|
|
2961
|
+
export interface ListMultipartUploadsOutput {
|
|
2962
|
+
|
|
2963
|
+
Bucket?: string;
|
|
2964
|
+
|
|
2965
|
+
KeyMarker?: string;
|
|
2966
|
+
|
|
2967
|
+
UploadIdMarker?: string;
|
|
2968
|
+
|
|
2969
|
+
NextKeyMarker?: string;
|
|
2970
|
+
|
|
2971
|
+
Prefix?: string;
|
|
2972
|
+
|
|
2973
|
+
Delimiter?: string;
|
|
2974
|
+
|
|
2975
|
+
NextUploadIdMarker?: string;
|
|
2976
|
+
|
|
2977
|
+
MaxUploads?: number;
|
|
2978
|
+
|
|
2979
|
+
IsTruncated?: boolean;
|
|
2980
|
+
|
|
2981
|
+
Uploads?: MultipartUpload[];
|
|
2982
|
+
|
|
2983
|
+
CommonPrefixes?: CommonPrefix[];
|
|
2984
|
+
|
|
2985
|
+
EncodingType?: EncodingType | string;
|
|
2986
|
+
}
|
|
2987
|
+
export declare namespace ListMultipartUploadsOutput {
|
|
2988
|
+
|
|
2989
|
+
const filterSensitiveLog: (obj: ListMultipartUploadsOutput) => any;
|
|
2990
|
+
}
|
|
2991
|
+
export interface ListMultipartUploadsRequest {
|
|
2992
|
+
|
|
2993
|
+
Bucket: string | undefined;
|
|
2994
|
+
|
|
2995
|
+
Delimiter?: string;
|
|
2996
|
+
|
|
2997
|
+
EncodingType?: EncodingType | string;
|
|
2998
|
+
|
|
2999
|
+
KeyMarker?: string;
|
|
3000
|
+
|
|
3001
|
+
MaxUploads?: number;
|
|
3002
|
+
|
|
3003
|
+
Prefix?: string;
|
|
3004
|
+
|
|
3005
|
+
UploadIdMarker?: string;
|
|
3006
|
+
|
|
3007
|
+
ExpectedBucketOwner?: string;
|
|
3008
|
+
}
|
|
3009
|
+
export declare namespace ListMultipartUploadsRequest {
|
|
3010
|
+
|
|
3011
|
+
const filterSensitiveLog: (obj: ListMultipartUploadsRequest) => any;
|
|
3012
|
+
}
|
|
3013
|
+
export declare type ObjectStorageClass = "DEEP_ARCHIVE" | "GLACIER" | "GLACIER_IR" | "INTELLIGENT_TIERING" | "ONEZONE_IA" | "OUTPOSTS" | "REDUCED_REDUNDANCY" | "STANDARD" | "STANDARD_IA";
|
|
3014
|
+
|
|
3015
|
+
export interface _Object {
|
|
3016
|
+
|
|
3017
|
+
Key?: string;
|
|
3018
|
+
|
|
3019
|
+
LastModified?: Date;
|
|
3020
|
+
|
|
3021
|
+
ETag?: string;
|
|
3022
|
+
|
|
3023
|
+
ChecksumAlgorithm?: (ChecksumAlgorithm | string)[];
|
|
3024
|
+
|
|
3025
|
+
Size?: number;
|
|
3026
|
+
|
|
3027
|
+
StorageClass?: ObjectStorageClass | string;
|
|
3028
|
+
|
|
3029
|
+
Owner?: Owner;
|
|
3030
|
+
}
|
|
3031
|
+
export declare namespace _Object {
|
|
3032
|
+
|
|
3033
|
+
const filterSensitiveLog: (obj: _Object) => any;
|
|
3034
|
+
}
|
|
3035
|
+
export interface ListObjectsOutput {
|
|
3036
|
+
|
|
3037
|
+
IsTruncated?: boolean;
|
|
3038
|
+
|
|
3039
|
+
Marker?: string;
|
|
3040
|
+
|
|
3041
|
+
NextMarker?: string;
|
|
3042
|
+
|
|
3043
|
+
Contents?: _Object[];
|
|
3044
|
+
|
|
3045
|
+
Name?: string;
|
|
3046
|
+
|
|
3047
|
+
Prefix?: string;
|
|
3048
|
+
|
|
3049
|
+
Delimiter?: string;
|
|
3050
|
+
|
|
3051
|
+
MaxKeys?: number;
|
|
3052
|
+
|
|
3053
|
+
CommonPrefixes?: CommonPrefix[];
|
|
3054
|
+
|
|
3055
|
+
EncodingType?: EncodingType | string;
|
|
3056
|
+
}
|
|
3057
|
+
export declare namespace ListObjectsOutput {
|
|
3058
|
+
|
|
3059
|
+
const filterSensitiveLog: (obj: ListObjectsOutput) => any;
|
|
3060
|
+
}
|
|
3061
|
+
export interface ListObjectsRequest {
|
|
3062
|
+
|
|
3063
|
+
Bucket: string | undefined;
|
|
3064
|
+
|
|
3065
|
+
Delimiter?: string;
|
|
3066
|
+
|
|
3067
|
+
EncodingType?: EncodingType | string;
|
|
3068
|
+
|
|
3069
|
+
Marker?: string;
|
|
3070
|
+
|
|
3071
|
+
MaxKeys?: number;
|
|
3072
|
+
|
|
3073
|
+
Prefix?: string;
|
|
3074
|
+
|
|
3075
|
+
RequestPayer?: RequestPayer | string;
|
|
3076
|
+
|
|
3077
|
+
ExpectedBucketOwner?: string;
|
|
3078
|
+
}
|
|
3079
|
+
export declare namespace ListObjectsRequest {
|
|
3080
|
+
|
|
3081
|
+
const filterSensitiveLog: (obj: ListObjectsRequest) => any;
|
|
3082
|
+
}
|
|
3083
|
+
|
|
3084
|
+
export declare class NoSuchBucket extends __BaseException {
|
|
3085
|
+
readonly name: "NoSuchBucket";
|
|
3086
|
+
readonly $fault: "client";
|
|
3087
|
+
|
|
3088
|
+
constructor(opts: __ExceptionOptionType<NoSuchBucket, __BaseException>);
|
|
3089
|
+
}
|
|
3090
|
+
export interface ListObjectsV2Output {
|
|
3091
|
+
|
|
3092
|
+
IsTruncated?: boolean;
|
|
3093
|
+
|
|
3094
|
+
Contents?: _Object[];
|
|
3095
|
+
|
|
3096
|
+
Name?: string;
|
|
3097
|
+
|
|
3098
|
+
Prefix?: string;
|
|
3099
|
+
|
|
3100
|
+
Delimiter?: string;
|
|
3101
|
+
|
|
3102
|
+
MaxKeys?: number;
|
|
3103
|
+
|
|
3104
|
+
CommonPrefixes?: CommonPrefix[];
|
|
3105
|
+
|
|
3106
|
+
EncodingType?: EncodingType | string;
|
|
3107
|
+
|
|
3108
|
+
KeyCount?: number;
|
|
3109
|
+
|
|
3110
|
+
ContinuationToken?: string;
|
|
3111
|
+
|
|
3112
|
+
NextContinuationToken?: string;
|
|
3113
|
+
|
|
3114
|
+
StartAfter?: string;
|
|
3115
|
+
}
|
|
3116
|
+
export declare namespace ListObjectsV2Output {
|
|
3117
|
+
|
|
3118
|
+
const filterSensitiveLog: (obj: ListObjectsV2Output) => any;
|
|
3119
|
+
}
|
|
3120
|
+
export interface ListObjectsV2Request {
|
|
3121
|
+
|
|
3122
|
+
Bucket: string | undefined;
|
|
3123
|
+
|
|
3124
|
+
Delimiter?: string;
|
|
3125
|
+
|
|
3126
|
+
EncodingType?: EncodingType | string;
|
|
3127
|
+
|
|
3128
|
+
MaxKeys?: number;
|
|
3129
|
+
|
|
3130
|
+
Prefix?: string;
|
|
3131
|
+
|
|
3132
|
+
ContinuationToken?: string;
|
|
3133
|
+
|
|
3134
|
+
FetchOwner?: boolean;
|
|
3135
|
+
|
|
3136
|
+
StartAfter?: string;
|
|
3137
|
+
|
|
3138
|
+
RequestPayer?: RequestPayer | string;
|
|
3139
|
+
|
|
3140
|
+
ExpectedBucketOwner?: string;
|
|
3141
|
+
}
|
|
3142
|
+
export declare namespace ListObjectsV2Request {
|
|
3143
|
+
|
|
3144
|
+
const filterSensitiveLog: (obj: ListObjectsV2Request) => any;
|
|
3145
|
+
}
|
|
3146
|
+
|
|
3147
|
+
export interface DeleteMarkerEntry {
|
|
3148
|
+
|
|
3149
|
+
Owner?: Owner;
|
|
3150
|
+
|
|
3151
|
+
Key?: string;
|
|
3152
|
+
|
|
3153
|
+
VersionId?: string;
|
|
3154
|
+
|
|
3155
|
+
IsLatest?: boolean;
|
|
3156
|
+
|
|
3157
|
+
LastModified?: Date;
|
|
3158
|
+
}
|
|
3159
|
+
export declare namespace DeleteMarkerEntry {
|
|
3160
|
+
|
|
3161
|
+
const filterSensitiveLog: (obj: DeleteMarkerEntry) => any;
|
|
3162
|
+
}
|
|
3163
|
+
export declare type ObjectVersionStorageClass = "STANDARD";
|
|
3164
|
+
|
|
3165
|
+
export interface ObjectVersion {
|
|
3166
|
+
|
|
3167
|
+
ETag?: string;
|
|
3168
|
+
|
|
3169
|
+
ChecksumAlgorithm?: (ChecksumAlgorithm | string)[];
|
|
3170
|
+
|
|
3171
|
+
Size?: number;
|
|
3172
|
+
|
|
3173
|
+
StorageClass?: ObjectVersionStorageClass | string;
|
|
3174
|
+
|
|
3175
|
+
Key?: string;
|
|
3176
|
+
|
|
3177
|
+
VersionId?: string;
|
|
3178
|
+
|
|
3179
|
+
IsLatest?: boolean;
|
|
3180
|
+
|
|
3181
|
+
LastModified?: Date;
|
|
3182
|
+
|
|
3183
|
+
Owner?: Owner;
|
|
3184
|
+
}
|
|
3185
|
+
export declare namespace ObjectVersion {
|
|
3186
|
+
|
|
3187
|
+
const filterSensitiveLog: (obj: ObjectVersion) => any;
|
|
3188
|
+
}
|
|
3189
|
+
export interface ListObjectVersionsOutput {
|
|
3190
|
+
|
|
3191
|
+
IsTruncated?: boolean;
|
|
3192
|
+
|
|
3193
|
+
KeyMarker?: string;
|
|
3194
|
+
|
|
3195
|
+
VersionIdMarker?: string;
|
|
3196
|
+
|
|
3197
|
+
NextKeyMarker?: string;
|
|
3198
|
+
|
|
3199
|
+
NextVersionIdMarker?: string;
|
|
3200
|
+
|
|
3201
|
+
Versions?: ObjectVersion[];
|
|
3202
|
+
|
|
3203
|
+
DeleteMarkers?: DeleteMarkerEntry[];
|
|
3204
|
+
|
|
3205
|
+
Name?: string;
|
|
3206
|
+
|
|
3207
|
+
Prefix?: string;
|
|
3208
|
+
|
|
3209
|
+
Delimiter?: string;
|
|
3210
|
+
|
|
3211
|
+
MaxKeys?: number;
|
|
3212
|
+
|
|
3213
|
+
CommonPrefixes?: CommonPrefix[];
|
|
3214
|
+
|
|
3215
|
+
EncodingType?: EncodingType | string;
|
|
3216
|
+
}
|
|
3217
|
+
export declare namespace ListObjectVersionsOutput {
|
|
3218
|
+
|
|
3219
|
+
const filterSensitiveLog: (obj: ListObjectVersionsOutput) => any;
|
|
3220
|
+
}
|
|
3221
|
+
export interface ListObjectVersionsRequest {
|
|
3222
|
+
|
|
3223
|
+
Bucket: string | undefined;
|
|
3224
|
+
|
|
3225
|
+
Delimiter?: string;
|
|
3226
|
+
|
|
3227
|
+
EncodingType?: EncodingType | string;
|
|
3228
|
+
|
|
3229
|
+
KeyMarker?: string;
|
|
3230
|
+
|
|
3231
|
+
MaxKeys?: number;
|
|
3232
|
+
|
|
3233
|
+
Prefix?: string;
|
|
3234
|
+
|
|
3235
|
+
VersionIdMarker?: string;
|
|
3236
|
+
|
|
3237
|
+
ExpectedBucketOwner?: string;
|
|
3238
|
+
}
|
|
3239
|
+
export declare namespace ListObjectVersionsRequest {
|
|
3240
|
+
|
|
3241
|
+
const filterSensitiveLog: (obj: ListObjectVersionsRequest) => any;
|
|
3242
|
+
}
|
|
3243
|
+
|
|
3244
|
+
export interface Part {
|
|
3245
|
+
|
|
3246
|
+
PartNumber?: number;
|
|
3247
|
+
|
|
3248
|
+
LastModified?: Date;
|
|
3249
|
+
|
|
3250
|
+
ETag?: string;
|
|
3251
|
+
|
|
3252
|
+
Size?: number;
|
|
3253
|
+
|
|
3254
|
+
ChecksumCRC32?: string;
|
|
3255
|
+
|
|
3256
|
+
ChecksumCRC32C?: string;
|
|
3257
|
+
|
|
3258
|
+
ChecksumSHA1?: string;
|
|
3259
|
+
|
|
3260
|
+
ChecksumSHA256?: string;
|
|
3261
|
+
}
|
|
3262
|
+
export declare namespace Part {
|
|
3263
|
+
|
|
3264
|
+
const filterSensitiveLog: (obj: Part) => any;
|
|
3265
|
+
}
|
|
3266
|
+
export interface ListPartsOutput {
|
|
3267
|
+
|
|
3268
|
+
AbortDate?: Date;
|
|
3269
|
+
|
|
3270
|
+
AbortRuleId?: string;
|
|
3271
|
+
|
|
3272
|
+
Bucket?: string;
|
|
3273
|
+
|
|
3274
|
+
Key?: string;
|
|
3275
|
+
|
|
3276
|
+
UploadId?: string;
|
|
3277
|
+
|
|
3278
|
+
PartNumberMarker?: string;
|
|
3279
|
+
|
|
3280
|
+
NextPartNumberMarker?: string;
|
|
3281
|
+
|
|
3282
|
+
MaxParts?: number;
|
|
3283
|
+
|
|
3284
|
+
IsTruncated?: boolean;
|
|
3285
|
+
|
|
3286
|
+
Parts?: Part[];
|
|
3287
|
+
|
|
3288
|
+
Initiator?: Initiator;
|
|
3289
|
+
|
|
3290
|
+
Owner?: Owner;
|
|
3291
|
+
|
|
3292
|
+
StorageClass?: StorageClass | string;
|
|
3293
|
+
|
|
3294
|
+
RequestCharged?: RequestCharged | string;
|
|
3295
|
+
|
|
3296
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3297
|
+
}
|
|
3298
|
+
export declare namespace ListPartsOutput {
|
|
3299
|
+
|
|
3300
|
+
const filterSensitiveLog: (obj: ListPartsOutput) => any;
|
|
3301
|
+
}
|
|
3302
|
+
export interface ListPartsRequest {
|
|
3303
|
+
|
|
3304
|
+
Bucket: string | undefined;
|
|
3305
|
+
|
|
3306
|
+
Key: string | undefined;
|
|
3307
|
+
|
|
3308
|
+
MaxParts?: number;
|
|
3309
|
+
|
|
3310
|
+
PartNumberMarker?: string;
|
|
3311
|
+
|
|
3312
|
+
UploadId: string | undefined;
|
|
3313
|
+
|
|
3314
|
+
RequestPayer?: RequestPayer | string;
|
|
3315
|
+
|
|
3316
|
+
ExpectedBucketOwner?: string;
|
|
3317
|
+
|
|
3318
|
+
SSECustomerAlgorithm?: string;
|
|
3319
|
+
|
|
3320
|
+
SSECustomerKey?: string;
|
|
3321
|
+
|
|
3322
|
+
SSECustomerKeyMD5?: string;
|
|
3323
|
+
}
|
|
3324
|
+
export declare namespace ListPartsRequest {
|
|
3325
|
+
|
|
3326
|
+
const filterSensitiveLog: (obj: ListPartsRequest) => any;
|
|
3327
|
+
}
|
|
3328
|
+
export interface PutBucketAccelerateConfigurationRequest {
|
|
3329
|
+
|
|
3330
|
+
Bucket: string | undefined;
|
|
3331
|
+
|
|
3332
|
+
AccelerateConfiguration: AccelerateConfiguration | undefined;
|
|
3333
|
+
|
|
3334
|
+
ExpectedBucketOwner?: string;
|
|
3335
|
+
|
|
3336
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3337
|
+
}
|
|
3338
|
+
export declare namespace PutBucketAccelerateConfigurationRequest {
|
|
3339
|
+
|
|
3340
|
+
const filterSensitiveLog: (obj: PutBucketAccelerateConfigurationRequest) => any;
|
|
3341
|
+
}
|
|
3342
|
+
export interface PutBucketAclRequest {
|
|
3343
|
+
|
|
3344
|
+
ACL?: BucketCannedACL | string;
|
|
3345
|
+
|
|
3346
|
+
AccessControlPolicy?: AccessControlPolicy;
|
|
3347
|
+
|
|
3348
|
+
Bucket: string | undefined;
|
|
3349
|
+
|
|
3350
|
+
ContentMD5?: string;
|
|
3351
|
+
|
|
3352
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3353
|
+
|
|
3354
|
+
GrantFullControl?: string;
|
|
3355
|
+
|
|
3356
|
+
GrantRead?: string;
|
|
3357
|
+
|
|
3358
|
+
GrantReadACP?: string;
|
|
3359
|
+
|
|
3360
|
+
GrantWrite?: string;
|
|
3361
|
+
|
|
3362
|
+
GrantWriteACP?: string;
|
|
3363
|
+
|
|
3364
|
+
ExpectedBucketOwner?: string;
|
|
3365
|
+
}
|
|
3366
|
+
export declare namespace PutBucketAclRequest {
|
|
3367
|
+
|
|
3368
|
+
const filterSensitiveLog: (obj: PutBucketAclRequest) => any;
|
|
3369
|
+
}
|
|
3370
|
+
export interface PutBucketAnalyticsConfigurationRequest {
|
|
3371
|
+
|
|
3372
|
+
Bucket: string | undefined;
|
|
3373
|
+
|
|
3374
|
+
Id: string | undefined;
|
|
3375
|
+
|
|
3376
|
+
AnalyticsConfiguration: AnalyticsConfiguration | undefined;
|
|
3377
|
+
|
|
3378
|
+
ExpectedBucketOwner?: string;
|
|
3379
|
+
}
|
|
3380
|
+
export declare namespace PutBucketAnalyticsConfigurationRequest {
|
|
3381
|
+
|
|
3382
|
+
const filterSensitiveLog: (obj: PutBucketAnalyticsConfigurationRequest) => any;
|
|
3383
|
+
}
|
|
3384
|
+
|
|
3385
|
+
export interface CORSConfiguration {
|
|
3386
|
+
|
|
3387
|
+
CORSRules: CORSRule[] | undefined;
|
|
3388
|
+
}
|
|
3389
|
+
export declare namespace CORSConfiguration {
|
|
3390
|
+
|
|
3391
|
+
const filterSensitiveLog: (obj: CORSConfiguration) => any;
|
|
3392
|
+
}
|
|
3393
|
+
export interface PutBucketCorsRequest {
|
|
3394
|
+
|
|
3395
|
+
Bucket: string | undefined;
|
|
3396
|
+
|
|
3397
|
+
CORSConfiguration: CORSConfiguration | undefined;
|
|
3398
|
+
|
|
3399
|
+
ContentMD5?: string;
|
|
3400
|
+
|
|
3401
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3402
|
+
|
|
3403
|
+
ExpectedBucketOwner?: string;
|
|
3404
|
+
}
|
|
3405
|
+
export declare namespace PutBucketCorsRequest {
|
|
3406
|
+
|
|
3407
|
+
const filterSensitiveLog: (obj: PutBucketCorsRequest) => any;
|
|
3408
|
+
}
|
|
3409
|
+
export interface PutBucketEncryptionRequest {
|
|
3410
|
+
|
|
3411
|
+
Bucket: string | undefined;
|
|
3412
|
+
|
|
3413
|
+
ContentMD5?: string;
|
|
3414
|
+
|
|
3415
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3416
|
+
|
|
3417
|
+
ServerSideEncryptionConfiguration: ServerSideEncryptionConfiguration | undefined;
|
|
3418
|
+
|
|
3419
|
+
ExpectedBucketOwner?: string;
|
|
3420
|
+
}
|
|
3421
|
+
export declare namespace PutBucketEncryptionRequest {
|
|
3422
|
+
|
|
3423
|
+
const filterSensitiveLog: (obj: PutBucketEncryptionRequest) => any;
|
|
3424
|
+
}
|
|
3425
|
+
export interface PutBucketIntelligentTieringConfigurationRequest {
|
|
3426
|
+
|
|
3427
|
+
Bucket: string | undefined;
|
|
3428
|
+
|
|
3429
|
+
Id: string | undefined;
|
|
3430
|
+
|
|
3431
|
+
IntelligentTieringConfiguration: IntelligentTieringConfiguration | undefined;
|
|
3432
|
+
}
|
|
3433
|
+
export declare namespace PutBucketIntelligentTieringConfigurationRequest {
|
|
3434
|
+
|
|
3435
|
+
const filterSensitiveLog: (obj: PutBucketIntelligentTieringConfigurationRequest) => any;
|
|
3436
|
+
}
|
|
3437
|
+
export interface PutBucketInventoryConfigurationRequest {
|
|
3438
|
+
|
|
3439
|
+
Bucket: string | undefined;
|
|
3440
|
+
|
|
3441
|
+
Id: string | undefined;
|
|
3442
|
+
|
|
3443
|
+
InventoryConfiguration: InventoryConfiguration | undefined;
|
|
3444
|
+
|
|
3445
|
+
ExpectedBucketOwner?: string;
|
|
3446
|
+
}
|
|
3447
|
+
export declare namespace PutBucketInventoryConfigurationRequest {
|
|
3448
|
+
|
|
3449
|
+
const filterSensitiveLog: (obj: PutBucketInventoryConfigurationRequest) => any;
|
|
3450
|
+
}
|
|
3451
|
+
|
|
3452
|
+
export interface BucketLifecycleConfiguration {
|
|
3453
|
+
|
|
3454
|
+
Rules: LifecycleRule[] | undefined;
|
|
3455
|
+
}
|
|
3456
|
+
export declare namespace BucketLifecycleConfiguration {
|
|
3457
|
+
|
|
3458
|
+
const filterSensitiveLog: (obj: BucketLifecycleConfiguration) => any;
|
|
3459
|
+
}
|
|
3460
|
+
export interface PutBucketLifecycleConfigurationRequest {
|
|
3461
|
+
|
|
3462
|
+
Bucket: string | undefined;
|
|
3463
|
+
|
|
3464
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3465
|
+
|
|
3466
|
+
LifecycleConfiguration?: BucketLifecycleConfiguration;
|
|
3467
|
+
|
|
3468
|
+
ExpectedBucketOwner?: string;
|
|
3469
|
+
}
|
|
3470
|
+
export declare namespace PutBucketLifecycleConfigurationRequest {
|
|
3471
|
+
|
|
3472
|
+
const filterSensitiveLog: (obj: PutBucketLifecycleConfigurationRequest) => any;
|
|
3473
|
+
}
|
|
3474
|
+
|
|
3475
|
+
export interface BucketLoggingStatus {
|
|
3476
|
+
|
|
3477
|
+
LoggingEnabled?: LoggingEnabled;
|
|
3478
|
+
}
|
|
3479
|
+
export declare namespace BucketLoggingStatus {
|
|
3480
|
+
|
|
3481
|
+
const filterSensitiveLog: (obj: BucketLoggingStatus) => any;
|
|
3482
|
+
}
|
|
3483
|
+
export interface PutBucketLoggingRequest {
|
|
3484
|
+
|
|
3485
|
+
Bucket: string | undefined;
|
|
3486
|
+
|
|
3487
|
+
BucketLoggingStatus: BucketLoggingStatus | undefined;
|
|
3488
|
+
|
|
3489
|
+
ContentMD5?: string;
|
|
3490
|
+
|
|
3491
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3492
|
+
|
|
3493
|
+
ExpectedBucketOwner?: string;
|
|
3494
|
+
}
|
|
3495
|
+
export declare namespace PutBucketLoggingRequest {
|
|
3496
|
+
|
|
3497
|
+
const filterSensitiveLog: (obj: PutBucketLoggingRequest) => any;
|
|
3498
|
+
}
|
|
3499
|
+
export interface PutBucketMetricsConfigurationRequest {
|
|
3500
|
+
|
|
3501
|
+
Bucket: string | undefined;
|
|
3502
|
+
|
|
3503
|
+
Id: string | undefined;
|
|
3504
|
+
|
|
3505
|
+
MetricsConfiguration: MetricsConfiguration | undefined;
|
|
3506
|
+
|
|
3507
|
+
ExpectedBucketOwner?: string;
|
|
3508
|
+
}
|
|
3509
|
+
export declare namespace PutBucketMetricsConfigurationRequest {
|
|
3510
|
+
|
|
3511
|
+
const filterSensitiveLog: (obj: PutBucketMetricsConfigurationRequest) => any;
|
|
3512
|
+
}
|
|
3513
|
+
export interface PutBucketNotificationConfigurationRequest {
|
|
3514
|
+
|
|
3515
|
+
Bucket: string | undefined;
|
|
3516
|
+
|
|
3517
|
+
NotificationConfiguration: NotificationConfiguration | undefined;
|
|
3518
|
+
|
|
3519
|
+
ExpectedBucketOwner?: string;
|
|
3520
|
+
|
|
3521
|
+
SkipDestinationValidation?: boolean;
|
|
3522
|
+
}
|
|
3523
|
+
export declare namespace PutBucketNotificationConfigurationRequest {
|
|
3524
|
+
|
|
3525
|
+
const filterSensitiveLog: (obj: PutBucketNotificationConfigurationRequest) => any;
|
|
3526
|
+
}
|
|
3527
|
+
export interface PutBucketOwnershipControlsRequest {
|
|
3528
|
+
|
|
3529
|
+
Bucket: string | undefined;
|
|
3530
|
+
|
|
3531
|
+
ContentMD5?: string;
|
|
3532
|
+
|
|
3533
|
+
ExpectedBucketOwner?: string;
|
|
3534
|
+
|
|
3535
|
+
OwnershipControls: OwnershipControls | undefined;
|
|
3536
|
+
}
|
|
3537
|
+
export declare namespace PutBucketOwnershipControlsRequest {
|
|
3538
|
+
|
|
3539
|
+
const filterSensitiveLog: (obj: PutBucketOwnershipControlsRequest) => any;
|
|
3540
|
+
}
|
|
3541
|
+
export interface PutBucketPolicyRequest {
|
|
3542
|
+
|
|
3543
|
+
Bucket: string | undefined;
|
|
3544
|
+
|
|
3545
|
+
ContentMD5?: string;
|
|
3546
|
+
|
|
3547
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3548
|
+
|
|
3549
|
+
ConfirmRemoveSelfBucketAccess?: boolean;
|
|
3550
|
+
|
|
3551
|
+
Policy: string | undefined;
|
|
3552
|
+
|
|
3553
|
+
ExpectedBucketOwner?: string;
|
|
3554
|
+
}
|
|
3555
|
+
export declare namespace PutBucketPolicyRequest {
|
|
3556
|
+
|
|
3557
|
+
const filterSensitiveLog: (obj: PutBucketPolicyRequest) => any;
|
|
3558
|
+
}
|
|
3559
|
+
export interface PutBucketReplicationRequest {
|
|
3560
|
+
|
|
3561
|
+
Bucket: string | undefined;
|
|
3562
|
+
|
|
3563
|
+
ContentMD5?: string;
|
|
3564
|
+
|
|
3565
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3566
|
+
|
|
3567
|
+
ReplicationConfiguration: ReplicationConfiguration | undefined;
|
|
3568
|
+
|
|
3569
|
+
Token?: string;
|
|
3570
|
+
|
|
3571
|
+
ExpectedBucketOwner?: string;
|
|
3572
|
+
}
|
|
3573
|
+
export declare namespace PutBucketReplicationRequest {
|
|
3574
|
+
|
|
3575
|
+
const filterSensitiveLog: (obj: PutBucketReplicationRequest) => any;
|
|
3576
|
+
}
|
|
3577
|
+
|
|
3578
|
+
export interface RequestPaymentConfiguration {
|
|
3579
|
+
|
|
3580
|
+
Payer: Payer | string | undefined;
|
|
3581
|
+
}
|
|
3582
|
+
export declare namespace RequestPaymentConfiguration {
|
|
3583
|
+
|
|
3584
|
+
const filterSensitiveLog: (obj: RequestPaymentConfiguration) => any;
|
|
3585
|
+
}
|
|
3586
|
+
export interface PutBucketRequestPaymentRequest {
|
|
3587
|
+
|
|
3588
|
+
Bucket: string | undefined;
|
|
3589
|
+
|
|
3590
|
+
ContentMD5?: string;
|
|
3591
|
+
|
|
3592
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3593
|
+
|
|
3594
|
+
RequestPaymentConfiguration: RequestPaymentConfiguration | undefined;
|
|
3595
|
+
|
|
3596
|
+
ExpectedBucketOwner?: string;
|
|
3597
|
+
}
|
|
3598
|
+
export declare namespace PutBucketRequestPaymentRequest {
|
|
3599
|
+
|
|
3600
|
+
const filterSensitiveLog: (obj: PutBucketRequestPaymentRequest) => any;
|
|
3601
|
+
}
|
|
3602
|
+
|
|
3603
|
+
export interface Tagging {
|
|
3604
|
+
|
|
3605
|
+
TagSet: Tag[] | undefined;
|
|
3606
|
+
}
|
|
3607
|
+
export declare namespace Tagging {
|
|
3608
|
+
|
|
3609
|
+
const filterSensitiveLog: (obj: Tagging) => any;
|
|
3610
|
+
}
|
|
3611
|
+
export interface PutBucketTaggingRequest {
|
|
3612
|
+
|
|
3613
|
+
Bucket: string | undefined;
|
|
3614
|
+
|
|
3615
|
+
ContentMD5?: string;
|
|
3616
|
+
|
|
3617
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3618
|
+
|
|
3619
|
+
Tagging: Tagging | undefined;
|
|
3620
|
+
|
|
3621
|
+
ExpectedBucketOwner?: string;
|
|
3622
|
+
}
|
|
3623
|
+
export declare namespace PutBucketTaggingRequest {
|
|
3624
|
+
|
|
3625
|
+
const filterSensitiveLog: (obj: PutBucketTaggingRequest) => any;
|
|
3626
|
+
}
|
|
3627
|
+
export declare type MFADelete = "Disabled" | "Enabled";
|
|
3628
|
+
|
|
3629
|
+
export interface VersioningConfiguration {
|
|
3630
|
+
|
|
3631
|
+
MFADelete?: MFADelete | string;
|
|
3632
|
+
|
|
3633
|
+
Status?: BucketVersioningStatus | string;
|
|
3634
|
+
}
|
|
3635
|
+
export declare namespace VersioningConfiguration {
|
|
3636
|
+
|
|
3637
|
+
const filterSensitiveLog: (obj: VersioningConfiguration) => any;
|
|
3638
|
+
}
|
|
3639
|
+
export interface PutBucketVersioningRequest {
|
|
3640
|
+
|
|
3641
|
+
Bucket: string | undefined;
|
|
3642
|
+
|
|
3643
|
+
ContentMD5?: string;
|
|
3644
|
+
|
|
3645
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3646
|
+
|
|
3647
|
+
MFA?: string;
|
|
3648
|
+
|
|
3649
|
+
VersioningConfiguration: VersioningConfiguration | undefined;
|
|
3650
|
+
|
|
3651
|
+
ExpectedBucketOwner?: string;
|
|
3652
|
+
}
|
|
3653
|
+
export declare namespace PutBucketVersioningRequest {
|
|
3654
|
+
|
|
3655
|
+
const filterSensitiveLog: (obj: PutBucketVersioningRequest) => any;
|
|
3656
|
+
}
|
|
3657
|
+
|
|
3658
|
+
export interface WebsiteConfiguration {
|
|
3659
|
+
|
|
3660
|
+
ErrorDocument?: ErrorDocument;
|
|
3661
|
+
|
|
3662
|
+
IndexDocument?: IndexDocument;
|
|
3663
|
+
|
|
3664
|
+
RedirectAllRequestsTo?: RedirectAllRequestsTo;
|
|
3665
|
+
|
|
3666
|
+
RoutingRules?: RoutingRule[];
|
|
3667
|
+
}
|
|
3668
|
+
export declare namespace WebsiteConfiguration {
|
|
3669
|
+
|
|
3670
|
+
const filterSensitiveLog: (obj: WebsiteConfiguration) => any;
|
|
3671
|
+
}
|
|
3672
|
+
export interface PutBucketWebsiteRequest {
|
|
3673
|
+
|
|
3674
|
+
Bucket: string | undefined;
|
|
3675
|
+
|
|
3676
|
+
ContentMD5?: string;
|
|
3677
|
+
|
|
3678
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3679
|
+
|
|
3680
|
+
WebsiteConfiguration: WebsiteConfiguration | undefined;
|
|
3681
|
+
|
|
3682
|
+
ExpectedBucketOwner?: string;
|
|
3683
|
+
}
|
|
3684
|
+
export declare namespace PutBucketWebsiteRequest {
|
|
3685
|
+
|
|
3686
|
+
const filterSensitiveLog: (obj: PutBucketWebsiteRequest) => any;
|
|
3687
|
+
}
|
|
3688
|
+
export interface PutObjectOutput {
|
|
3689
|
+
|
|
3690
|
+
Expiration?: string;
|
|
3691
|
+
|
|
3692
|
+
ETag?: string;
|
|
3693
|
+
|
|
3694
|
+
ChecksumCRC32?: string;
|
|
3695
|
+
|
|
3696
|
+
ChecksumCRC32C?: string;
|
|
3697
|
+
|
|
3698
|
+
ChecksumSHA1?: string;
|
|
3699
|
+
|
|
3700
|
+
ChecksumSHA256?: string;
|
|
3701
|
+
|
|
3702
|
+
ServerSideEncryption?: ServerSideEncryption | string;
|
|
3703
|
+
|
|
3704
|
+
VersionId?: string;
|
|
3705
|
+
|
|
3706
|
+
SSECustomerAlgorithm?: string;
|
|
3707
|
+
|
|
3708
|
+
SSECustomerKeyMD5?: string;
|
|
3709
|
+
|
|
3710
|
+
SSEKMSKeyId?: string;
|
|
3711
|
+
|
|
3712
|
+
SSEKMSEncryptionContext?: string;
|
|
3713
|
+
|
|
3714
|
+
BucketKeyEnabled?: boolean;
|
|
3715
|
+
|
|
3716
|
+
RequestCharged?: RequestCharged | string;
|
|
3717
|
+
}
|
|
3718
|
+
export declare namespace PutObjectOutput {
|
|
3719
|
+
|
|
3720
|
+
const filterSensitiveLog: (obj: PutObjectOutput) => any;
|
|
3721
|
+
}
|
|
3722
|
+
export interface PutObjectRequest {
|
|
3723
|
+
|
|
3724
|
+
ACL?: ObjectCannedACL | string;
|
|
3725
|
+
|
|
3726
|
+
Body?: Readable | ReadableStream | Blob;
|
|
3727
|
+
|
|
3728
|
+
Bucket: string | undefined;
|
|
3729
|
+
|
|
3730
|
+
CacheControl?: string;
|
|
3731
|
+
|
|
3732
|
+
ContentDisposition?: string;
|
|
3733
|
+
|
|
3734
|
+
ContentEncoding?: string;
|
|
3735
|
+
|
|
3736
|
+
ContentLanguage?: string;
|
|
3737
|
+
|
|
3738
|
+
ContentLength?: number;
|
|
3739
|
+
|
|
3740
|
+
ContentMD5?: string;
|
|
3741
|
+
|
|
3742
|
+
ContentType?: string;
|
|
3743
|
+
|
|
3744
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3745
|
+
|
|
3746
|
+
ChecksumCRC32?: string;
|
|
3747
|
+
|
|
3748
|
+
ChecksumCRC32C?: string;
|
|
3749
|
+
|
|
3750
|
+
ChecksumSHA1?: string;
|
|
3751
|
+
|
|
3752
|
+
ChecksumSHA256?: string;
|
|
3753
|
+
|
|
3754
|
+
Expires?: Date;
|
|
3755
|
+
|
|
3756
|
+
GrantFullControl?: string;
|
|
3757
|
+
|
|
3758
|
+
GrantRead?: string;
|
|
3759
|
+
|
|
3760
|
+
GrantReadACP?: string;
|
|
3761
|
+
|
|
3762
|
+
GrantWriteACP?: string;
|
|
3763
|
+
|
|
3764
|
+
Key: string | undefined;
|
|
3765
|
+
|
|
3766
|
+
Metadata?: {
|
|
3767
|
+
[key: string]: string;
|
|
3768
|
+
};
|
|
3769
|
+
|
|
3770
|
+
ServerSideEncryption?: ServerSideEncryption | string;
|
|
3771
|
+
|
|
3772
|
+
StorageClass?: StorageClass | string;
|
|
3773
|
+
|
|
3774
|
+
WebsiteRedirectLocation?: string;
|
|
3775
|
+
|
|
3776
|
+
SSECustomerAlgorithm?: string;
|
|
3777
|
+
|
|
3778
|
+
SSECustomerKey?: string;
|
|
3779
|
+
|
|
3780
|
+
SSECustomerKeyMD5?: string;
|
|
3781
|
+
|
|
3782
|
+
SSEKMSKeyId?: string;
|
|
3783
|
+
|
|
3784
|
+
SSEKMSEncryptionContext?: string;
|
|
3785
|
+
|
|
3786
|
+
BucketKeyEnabled?: boolean;
|
|
3787
|
+
|
|
3788
|
+
RequestPayer?: RequestPayer | string;
|
|
3789
|
+
|
|
3790
|
+
Tagging?: string;
|
|
3791
|
+
|
|
3792
|
+
ObjectLockMode?: ObjectLockMode | string;
|
|
3793
|
+
|
|
3794
|
+
ObjectLockRetainUntilDate?: Date;
|
|
3795
|
+
|
|
3796
|
+
ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus | string;
|
|
3797
|
+
|
|
3798
|
+
ExpectedBucketOwner?: string;
|
|
3799
|
+
}
|
|
3800
|
+
export declare namespace PutObjectRequest {
|
|
3801
|
+
|
|
3802
|
+
const filterSensitiveLog: (obj: PutObjectRequest) => any;
|
|
3803
|
+
}
|
|
3804
|
+
export interface PutObjectAclOutput {
|
|
3805
|
+
|
|
3806
|
+
RequestCharged?: RequestCharged | string;
|
|
3807
|
+
}
|
|
3808
|
+
export declare namespace PutObjectAclOutput {
|
|
3809
|
+
|
|
3810
|
+
const filterSensitiveLog: (obj: PutObjectAclOutput) => any;
|
|
3811
|
+
}
|
|
3812
|
+
export interface PutObjectAclRequest {
|
|
3813
|
+
|
|
3814
|
+
ACL?: ObjectCannedACL | string;
|
|
3815
|
+
|
|
3816
|
+
AccessControlPolicy?: AccessControlPolicy;
|
|
3817
|
+
|
|
3818
|
+
Bucket: string | undefined;
|
|
3819
|
+
|
|
3820
|
+
ContentMD5?: string;
|
|
3821
|
+
|
|
3822
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3823
|
+
|
|
3824
|
+
GrantFullControl?: string;
|
|
3825
|
+
|
|
3826
|
+
GrantRead?: string;
|
|
3827
|
+
|
|
3828
|
+
GrantReadACP?: string;
|
|
3829
|
+
|
|
3830
|
+
GrantWrite?: string;
|
|
3831
|
+
|
|
3832
|
+
GrantWriteACP?: string;
|
|
3833
|
+
|
|
3834
|
+
Key: string | undefined;
|
|
3835
|
+
|
|
3836
|
+
RequestPayer?: RequestPayer | string;
|
|
3837
|
+
|
|
3838
|
+
VersionId?: string;
|
|
3839
|
+
|
|
3840
|
+
ExpectedBucketOwner?: string;
|
|
3841
|
+
}
|
|
3842
|
+
export declare namespace PutObjectAclRequest {
|
|
3843
|
+
|
|
3844
|
+
const filterSensitiveLog: (obj: PutObjectAclRequest) => any;
|
|
3845
|
+
}
|
|
3846
|
+
export interface PutObjectLegalHoldOutput {
|
|
3847
|
+
|
|
3848
|
+
RequestCharged?: RequestCharged | string;
|
|
3849
|
+
}
|
|
3850
|
+
export declare namespace PutObjectLegalHoldOutput {
|
|
3851
|
+
|
|
3852
|
+
const filterSensitiveLog: (obj: PutObjectLegalHoldOutput) => any;
|
|
3853
|
+
}
|
|
3854
|
+
export interface PutObjectLegalHoldRequest {
|
|
3855
|
+
|
|
3856
|
+
Bucket: string | undefined;
|
|
3857
|
+
|
|
3858
|
+
Key: string | undefined;
|
|
3859
|
+
|
|
3860
|
+
LegalHold?: ObjectLockLegalHold;
|
|
3861
|
+
|
|
3862
|
+
RequestPayer?: RequestPayer | string;
|
|
3863
|
+
|
|
3864
|
+
VersionId?: string;
|
|
3865
|
+
|
|
3866
|
+
ContentMD5?: string;
|
|
3867
|
+
|
|
3868
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3869
|
+
|
|
3870
|
+
ExpectedBucketOwner?: string;
|
|
3871
|
+
}
|
|
3872
|
+
export declare namespace PutObjectLegalHoldRequest {
|
|
3873
|
+
|
|
3874
|
+
const filterSensitiveLog: (obj: PutObjectLegalHoldRequest) => any;
|
|
3875
|
+
}
|
|
3876
|
+
export interface PutObjectLockConfigurationOutput {
|
|
3877
|
+
|
|
3878
|
+
RequestCharged?: RequestCharged | string;
|
|
3879
|
+
}
|
|
3880
|
+
export declare namespace PutObjectLockConfigurationOutput {
|
|
3881
|
+
|
|
3882
|
+
const filterSensitiveLog: (obj: PutObjectLockConfigurationOutput) => any;
|
|
3883
|
+
}
|
|
3884
|
+
export interface PutObjectLockConfigurationRequest {
|
|
3885
|
+
|
|
3886
|
+
Bucket: string | undefined;
|
|
3887
|
+
|
|
3888
|
+
ObjectLockConfiguration?: ObjectLockConfiguration;
|
|
3889
|
+
|
|
3890
|
+
RequestPayer?: RequestPayer | string;
|
|
3891
|
+
|
|
3892
|
+
Token?: string;
|
|
3893
|
+
|
|
3894
|
+
ContentMD5?: string;
|
|
3895
|
+
|
|
3896
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | string;
|
|
3897
|
+
|
|
3898
|
+
ExpectedBucketOwner?: string;
|
|
3899
|
+
}
|
|
3900
|
+
export declare namespace PutObjectLockConfigurationRequest {
|
|
3901
|
+
|
|
3902
|
+
const filterSensitiveLog: (obj: PutObjectLockConfigurationRequest) => any;
|
|
3903
|
+
}
|