@aws-sdk/client-s3 3.1068.0 → 3.1070.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/README.md +35 -0
  2. package/dist-cjs/auth/httpAuthSchemeProvider.js +15 -19
  3. package/dist-cjs/endpoint/bdd.js +2 -5
  4. package/dist-cjs/endpoint/endpointResolver.js +7 -11
  5. package/dist-cjs/index.js +646 -535
  6. package/dist-cjs/models/S3ServiceException.js +4 -8
  7. package/dist-cjs/models/errors.js +106 -52
  8. package/dist-cjs/runtimeConfig.browser.js +29 -33
  9. package/dist-cjs/runtimeConfig.js +43 -47
  10. package/dist-cjs/runtimeConfig.native.js +4 -7
  11. package/dist-cjs/runtimeConfig.shared.js +25 -29
  12. package/dist-cjs/schemas/schemas_0.js +1256 -740
  13. package/dist-es/S3.js +12 -0
  14. package/dist-es/commands/DeleteObjectAnnotationCommand.js +23 -0
  15. package/dist-es/commands/GetObjectAnnotationCommand.js +28 -0
  16. package/dist-es/commands/ListObjectAnnotationsCommand.js +23 -0
  17. package/dist-es/commands/PutObjectAnnotationCommand.js +29 -0
  18. package/dist-es/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.js +27 -0
  19. package/dist-es/commands/index.js +5 -0
  20. package/dist-es/models/enums.js +12 -1
  21. package/dist-es/models/errors.js +76 -4
  22. package/dist-es/pagination/ListObjectAnnotationsPaginator.js +4 -0
  23. package/dist-es/pagination/index.js +1 -0
  24. package/dist-es/schemas/schemas_0.js +260 -100
  25. package/dist-types/S3.d.ts +42 -0
  26. package/dist-types/S3Client.d.ts +7 -2
  27. package/dist-types/commands/CopyObjectCommand.d.ts +1 -0
  28. package/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +27 -0
  29. package/dist-types/commands/DeleteObjectAnnotationCommand.d.ts +119 -0
  30. package/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +11 -0
  31. package/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +3 -3
  32. package/dist-types/commands/GetObjectAnnotationCommand.d.ts +141 -0
  33. package/dist-types/commands/ListObjectAnnotationsCommand.d.ts +138 -0
  34. package/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +3 -3
  35. package/dist-types/commands/PutObjectAnnotationCommand.d.ts +166 -0
  36. package/dist-types/commands/RenameObjectCommand.d.ts +1 -1
  37. package/dist-types/commands/RestoreObjectCommand.d.ts +1 -2
  38. package/dist-types/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +110 -0
  39. package/dist-types/commands/index.d.ts +5 -0
  40. package/dist-types/models/enums.d.ts +29 -2
  41. package/dist-types/models/errors.d.ts +76 -4
  42. package/dist-types/models/models_0.d.ts +925 -549
  43. package/dist-types/models/models_1.d.ts +380 -2
  44. package/dist-types/pagination/ListObjectAnnotationsPaginator.d.ts +7 -0
  45. package/dist-types/pagination/index.d.ts +1 -0
  46. package/dist-types/schemas/schemas_0.d.ts +24 -0
  47. package/dist-types/ts3.4/S3.d.ts +98 -0
  48. package/dist-types/ts3.4/S3Client.d.ts +30 -0
  49. package/dist-types/ts3.4/commands/DeleteObjectAnnotationCommand.d.ts +53 -0
  50. package/dist-types/ts3.4/commands/GetObjectAnnotationCommand.d.ts +61 -0
  51. package/dist-types/ts3.4/commands/ListObjectAnnotationsCommand.d.ts +53 -0
  52. package/dist-types/ts3.4/commands/PutObjectAnnotationCommand.d.ts +61 -0
  53. package/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +1 -2
  55. package/dist-types/ts3.4/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +49 -0
  56. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  57. package/dist-types/ts3.4/models/enums.d.ts +18 -3
  58. package/dist-types/ts3.4/models/errors.d.ts +41 -3
  59. package/dist-types/ts3.4/models/models_0.d.ts +138 -64
  60. package/dist-types/ts3.4/models/models_1.d.ts +75 -5
  61. package/dist-types/ts3.4/pagination/ListObjectAnnotationsPaginator.d.ts +11 -0
  62. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  63. package/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
  64. package/package.json +20 -20
@@ -1,6 +1,328 @@
1
1
  import type { StreamingBlobTypes } from "@smithy/types";
2
- import type { ChecksumAlgorithm, CompressionType, ExpressionType, InventoryConfigurationState, ObjectLockLegalHoldStatus, ObjectLockMode, QuoteFields, ReplicationStatus, RequestCharged, RequestPayer, RestoreRequestType, ServerSideEncryption, StorageClass, Tier } from "./enums";
3
- import type { CSVInput, GlacierJobParameters, JSONInput, MetadataTableEncryptionConfiguration, OutputLocation, ParquetInput, RecordExpiration } from "./models_0";
2
+ import type { AnnotationConfigurationState, ChecksumAlgorithm, CompressionType, ExpressionType, FileHeaderInfo, InventoryConfigurationState, JSONType, ObjectCannedACL, ObjectLockLegalHoldStatus, ObjectLockMode, QuoteFields, ReplicationStatus, RequestCharged, RequestPayer, RestoreRequestType, ServerSideEncryption, StorageClass, Tier } from "./enums";
3
+ import type { Grant, MetadataTableEncryptionConfiguration, RecordExpiration, Tagging } from "./models_0";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface RenameObjectOutput {
8
+ }
9
+ /**
10
+ * @public
11
+ */
12
+ export interface RenameObjectRequest {
13
+ /**
14
+ * <p>The bucket name of the directory bucket containing the object.</p>
15
+ * <p> You must use virtual-hosted-style requests in the format
16
+ * <code>Bucket-name.s3express-zone-id.region-code.amazonaws.com</code>. Path-style requests are not
17
+ * supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must
18
+ * follow the format <code>bucket-base-name--zone-id--x-s3 </code> (for example,
19
+ * <code>amzn-s3-demo-bucket--usw2-az1--x-s3</code>). For information about bucket naming restrictions, see
20
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html">Directory bucket naming rules</a> in the <i>Amazon S3 User Guide</i>.</p>
21
+ * <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
22
+ * For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
23
+ * @public
24
+ */
25
+ Bucket: string | undefined;
26
+ /**
27
+ * <p>Key name of the object to rename.</p>
28
+ * @public
29
+ */
30
+ Key: string | undefined;
31
+ /**
32
+ * <p>Specifies the source for the rename operation. The value must be URL encoded.</p>
33
+ * @public
34
+ */
35
+ RenameSource: string | undefined;
36
+ /**
37
+ * <p>Renames the object only if the ETag (entity tag) value provided during the operation matches the
38
+ * ETag of the object in S3. The <code>If-Match</code> header field makes the request method conditional on
39
+ * ETags. If the ETag values do not match, the operation returns a <code>412 Precondition Failed</code>
40
+ * error.</p>
41
+ * <p>Expects the ETag value as a string.</p>
42
+ * @public
43
+ */
44
+ DestinationIfMatch?: string | undefined;
45
+ /**
46
+ * <p> Renames the object only if the destination does not already exist in the specified directory
47
+ * bucket. If the object does exist when you send a request with <code>If-None-Match:*</code>, the S3 API
48
+ * will return a <code>412 Precondition Failed</code> error, preventing an overwrite. The
49
+ * <code>If-None-Match</code> header prevents overwrites of existing data by validating that there's not
50
+ * an object with the same key name already in your directory bucket.</p>
51
+ * <p> Expects the <code>*</code> character (asterisk).</p>
52
+ * @public
53
+ */
54
+ DestinationIfNoneMatch?: string | undefined;
55
+ /**
56
+ * <p>Renames the object if the destination exists and if it has been modified since the specified
57
+ * time.</p>
58
+ * @public
59
+ */
60
+ DestinationIfModifiedSince?: Date | undefined;
61
+ /**
62
+ * <p>Renames the object if it hasn't been modified since the specified time.</p>
63
+ * @public
64
+ */
65
+ DestinationIfUnmodifiedSince?: Date | undefined;
66
+ /**
67
+ * <p>Renames the object if the source exists and if its entity tag (ETag) matches the specified ETag.
68
+ * </p>
69
+ * @public
70
+ */
71
+ SourceIfMatch?: string | undefined;
72
+ /**
73
+ * <p>Renames the object if the source exists and if its entity tag (ETag) is different than the specified
74
+ * ETag. If an asterisk (<code>*</code>) character is provided, the operation will fail and return a
75
+ * <code>412 Precondition Failed</code> error. </p>
76
+ * @public
77
+ */
78
+ SourceIfNoneMatch?: string | undefined;
79
+ /**
80
+ * <p>Renames the object if the source exists and if it has been modified since the specified time.</p>
81
+ * @public
82
+ */
83
+ SourceIfModifiedSince?: Date | undefined;
84
+ /**
85
+ * <p>Renames the object if the source exists and hasn't been modified since the specified time.</p>
86
+ * @public
87
+ */
88
+ SourceIfUnmodifiedSince?: Date | undefined;
89
+ /**
90
+ * <p> A unique string with a max of 64 ASCII characters in the ASCII range of 33 - 126.</p>
91
+ * <note>
92
+ * <p>
93
+ * <code>RenameObject</code> supports idempotency using a client token. To make an idempotent API request
94
+ * using <code>RenameObject</code>, specify a client token in the request. You should not reuse the same
95
+ * client token for other API requests. If you retry a request that completed successfully using the same
96
+ * client token and the same parameters, the retry succeeds without performing any further actions. If
97
+ * you retry a successful request using the same client token, but one or more of the parameters are
98
+ * different, the retry fails and an <code>IdempotentParameterMismatch</code> error is returned. </p>
99
+ * </note>
100
+ * @public
101
+ */
102
+ ClientToken?: string | undefined;
103
+ }
104
+ /**
105
+ * @public
106
+ */
107
+ export interface RestoreObjectOutput {
108
+ /**
109
+ * <p>If present, indicates that the requester was successfully charged for the request. For more
110
+ * information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/RequesterPaysBuckets.html">Using Requester Pays buckets for storage transfers and usage</a> in the <i>Amazon Simple
111
+ * Storage Service user guide</i>.</p>
112
+ * <note>
113
+ * <p>This functionality is not supported for directory buckets.</p>
114
+ * </note>
115
+ * @public
116
+ */
117
+ RequestCharged?: RequestCharged | undefined;
118
+ /**
119
+ * <p>Indicates the path in the provided S3 output location where Select results will be restored
120
+ * to.</p>
121
+ * @public
122
+ */
123
+ RestoreOutputPath?: string | undefined;
124
+ }
125
+ /**
126
+ * <p>Container for S3 Glacier job parameters.</p>
127
+ * @public
128
+ */
129
+ export interface GlacierJobParameters {
130
+ /**
131
+ * <p>Retrieval tier at which the restore will be processed.</p>
132
+ * @public
133
+ */
134
+ Tier: Tier | undefined;
135
+ }
136
+ /**
137
+ * <p>Contains the type of server-side encryption used.</p>
138
+ * @public
139
+ */
140
+ export interface Encryption {
141
+ /**
142
+ * <p>The server-side encryption algorithm used when storing job results in Amazon S3 (for example, AES256,
143
+ * <code>aws:kms</code>).</p>
144
+ * @public
145
+ */
146
+ EncryptionType: ServerSideEncryption | undefined;
147
+ /**
148
+ * <p>If the encryption type is <code>aws:kms</code>, this optional value specifies the ID of the
149
+ * symmetric encryption customer managed key to use for encryption of job results. Amazon S3 only supports symmetric
150
+ * encryption KMS keys. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html">Asymmetric keys in KMS</a> in the
151
+ * <i>Amazon Web Services Key Management Service Developer Guide</i>.</p>
152
+ * @public
153
+ */
154
+ KMSKeyId?: string | undefined;
155
+ /**
156
+ * <p>If the encryption type is <code>aws:kms</code>, this optional value can be used to specify the
157
+ * encryption context for the restore results.</p>
158
+ * @public
159
+ */
160
+ KMSContext?: string | undefined;
161
+ }
162
+ /**
163
+ * <p>A metadata key-value pair to store with an object.</p>
164
+ * @public
165
+ */
166
+ export interface MetadataEntry {
167
+ /**
168
+ * <p>Name of the object.</p>
169
+ * @public
170
+ */
171
+ Name?: string | undefined;
172
+ /**
173
+ * <p>Value of the object.</p>
174
+ * @public
175
+ */
176
+ Value?: string | undefined;
177
+ }
178
+ /**
179
+ * <p>Describes an Amazon S3 location that will receive the results of the restore request.</p>
180
+ * @public
181
+ */
182
+ export interface S3Location {
183
+ /**
184
+ * <p>The name of the bucket where the restore results will be placed.</p>
185
+ * @public
186
+ */
187
+ BucketName: string | undefined;
188
+ /**
189
+ * <p>The prefix that is prepended to the restore results for this request.</p>
190
+ * @public
191
+ */
192
+ Prefix: string | undefined;
193
+ /**
194
+ * <p>Contains the type of server-side encryption used.</p>
195
+ * @public
196
+ */
197
+ Encryption?: Encryption | undefined;
198
+ /**
199
+ * <p>The canned ACL to apply to the restore results.</p>
200
+ * @public
201
+ */
202
+ CannedACL?: ObjectCannedACL | undefined;
203
+ /**
204
+ * <p>A list of grants that control access to the staged results.</p>
205
+ * @public
206
+ */
207
+ AccessControlList?: Grant[] | undefined;
208
+ /**
209
+ * <p>The tag-set that is applied to the restore results.</p>
210
+ * @public
211
+ */
212
+ Tagging?: Tagging | undefined;
213
+ /**
214
+ * <p>A list of metadata to store with the restore results in S3.</p>
215
+ * @public
216
+ */
217
+ UserMetadata?: MetadataEntry[] | undefined;
218
+ /**
219
+ * <p>The class of storage used to store the restore results.</p>
220
+ * @public
221
+ */
222
+ StorageClass?: StorageClass | undefined;
223
+ }
224
+ /**
225
+ * <p>Describes the location where the restore job's output is stored.</p>
226
+ * @public
227
+ */
228
+ export interface OutputLocation {
229
+ /**
230
+ * <p>Describes an S3 location that will receive the results of the restore request.</p>
231
+ * @public
232
+ */
233
+ S3?: S3Location | undefined;
234
+ }
235
+ /**
236
+ * <p>Describes how an uncompressed comma-separated values (CSV)-formatted input object is
237
+ * formatted.</p>
238
+ * @public
239
+ */
240
+ export interface CSVInput {
241
+ /**
242
+ * <p>Describes the first line of input. Valid values are:</p>
243
+ * <ul>
244
+ * <li>
245
+ * <p>
246
+ * <code>NONE</code>: First line is not a header.</p>
247
+ * </li>
248
+ * <li>
249
+ * <p>
250
+ * <code>IGNORE</code>: First line is a header, but you can't use the header values to indicate the
251
+ * column in an expression. You can use column position (such as _1, _2, …) to indicate the column
252
+ * (<code>SELECT s._1 FROM OBJECT s</code>).</p>
253
+ * </li>
254
+ * <li>
255
+ * <p>
256
+ * <code>Use</code>: First line is a header, and you can use the header value to identify a column
257
+ * in an expression (<code>SELECT "name" FROM OBJECT</code>). </p>
258
+ * </li>
259
+ * </ul>
260
+ * @public
261
+ */
262
+ FileHeaderInfo?: FileHeaderInfo | undefined;
263
+ /**
264
+ * <p>A single character used to indicate that a row should be ignored when the character is present at
265
+ * the start of that row. You can specify any character to indicate a comment line. The default character
266
+ * is <code>#</code>.</p>
267
+ * <p>Default: <code>#</code>
268
+ * </p>
269
+ * @public
270
+ */
271
+ Comments?: string | undefined;
272
+ /**
273
+ * <p>A single character used for escaping the quotation mark character inside an already escaped value.
274
+ * For example, the value <code>""" a , b """</code> is parsed as <code>" a , b "</code>.</p>
275
+ * @public
276
+ */
277
+ QuoteEscapeCharacter?: string | undefined;
278
+ /**
279
+ * <p>A single character used to separate individual records in the input. Instead of the default value,
280
+ * you can specify an arbitrary delimiter.</p>
281
+ * @public
282
+ */
283
+ RecordDelimiter?: string | undefined;
284
+ /**
285
+ * <p>A single character used to separate individual fields in a record. You can specify an arbitrary
286
+ * delimiter.</p>
287
+ * @public
288
+ */
289
+ FieldDelimiter?: string | undefined;
290
+ /**
291
+ * <p>A single character used for escaping when the field delimiter is part of the value. For example, if
292
+ * the value is <code>a, b</code>, Amazon S3 wraps this field value in quotation marks, as follows: <code>" a ,
293
+ * b "</code>.</p>
294
+ * <p>Type: String</p>
295
+ * <p>Default: <code>"</code>
296
+ * </p>
297
+ * <p>Ancestors: <code>CSV</code>
298
+ * </p>
299
+ * @public
300
+ */
301
+ QuoteCharacter?: string | undefined;
302
+ /**
303
+ * <p>Specifies that CSV field values may contain quoted record delimiters and such records should be
304
+ * allowed. Default value is FALSE. Setting this value to TRUE may lower performance.</p>
305
+ * @public
306
+ */
307
+ AllowQuotedRecordDelimiter?: boolean | undefined;
308
+ }
309
+ /**
310
+ * <p>Specifies JSON as object's input serialization format.</p>
311
+ * @public
312
+ */
313
+ export interface JSONInput {
314
+ /**
315
+ * <p>The type of JSON. Valid values: Document, Lines.</p>
316
+ * @public
317
+ */
318
+ Type?: JSONType | undefined;
319
+ }
320
+ /**
321
+ * <p>Container for Parquet.</p>
322
+ * @public
323
+ */
324
+ export interface ParquetInput {
325
+ }
4
326
  /**
5
327
  * <p>Describes the serialization format of the object.</p>
6
328
  * @public
@@ -598,6 +920,62 @@ export interface SelectObjectContentRequest {
598
920
  */
599
921
  ExpectedBucketOwner?: string | undefined;
600
922
  }
923
+ /**
924
+ * <p>Specifies updates to apply to the annotation table configuration. Used as the request body for
925
+ * <code>UpdateBucketMetadataAnnotationTableConfiguration</code>.</p>
926
+ * @public
927
+ */
928
+ export interface AnnotationTableConfigurationUpdates {
929
+ /**
930
+ * <p>The new configuration state to apply.</p>
931
+ * @public
932
+ */
933
+ ConfigurationState: AnnotationConfigurationState | undefined;
934
+ /**
935
+ * <p>
936
+ * The encryption settings for an S3 Metadata journal table or inventory table configuration.
937
+ * </p>
938
+ * @public
939
+ */
940
+ EncryptionConfiguration?: MetadataTableEncryptionConfiguration | undefined;
941
+ /**
942
+ * <p>The new IAM role ARN to apply.</p>
943
+ * @public
944
+ */
945
+ Role?: string | undefined;
946
+ }
947
+ /**
948
+ * @public
949
+ */
950
+ export interface UpdateBucketMetadataAnnotationTableConfigurationRequest {
951
+ /**
952
+ * <p>The name of the bucket whose annotation table configuration to update.</p>
953
+ * <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
954
+ * For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
955
+ * @public
956
+ */
957
+ Bucket: string | undefined;
958
+ /**
959
+ * <p>Base64-encoded MD5 digest of the message body.</p>
960
+ * @public
961
+ */
962
+ ContentMD5?: string | undefined;
963
+ /**
964
+ * <p>Checksum algorithm for the request payload.</p>
965
+ * @public
966
+ */
967
+ ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
968
+ /**
969
+ * <p>The annotation table configuration updates to apply.</p>
970
+ * @public
971
+ */
972
+ AnnotationTableConfiguration: AnnotationTableConfigurationUpdates | undefined;
973
+ /**
974
+ * <p>The account ID of the expected bucket owner.</p>
975
+ * @public
976
+ */
977
+ ExpectedBucketOwner?: string | undefined;
978
+ }
601
979
  /**
602
980
  * <p>
603
981
  * The specified updates to the S3 Metadata inventory table configuration.
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListObjectAnnotationsCommandInput, ListObjectAnnotationsCommandOutput } from "../commands/ListObjectAnnotationsCommand";
3
+ import type { S3PaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListObjectAnnotations: (config: S3PaginationConfiguration, input: ListObjectAnnotationsCommandInput, ...rest: any[]) => Paginator<ListObjectAnnotationsCommandOutput>;
@@ -1,5 +1,6 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListBucketsPaginator";
3
3
  export * from "./ListDirectoryBucketsPaginator";
4
+ export * from "./ListObjectAnnotationsPaginator";
4
5
  export * from "./ListObjectsV2Paginator";
5
6
  export * from "./ListPartsPaginator";
@@ -2,13 +2,18 @@ import { TypeRegistry } from "@smithy/core/schema";
2
2
  import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
3
3
  export declare var S3ServiceException$: StaticErrorSchema;
4
4
  export declare var AccessDenied$: StaticErrorSchema;
5
+ export declare var AnnotationLimitExceeded$: StaticErrorSchema;
6
+ export declare var AnnotationNameTooLong$: StaticErrorSchema;
5
7
  export declare var BucketAlreadyExists$: StaticErrorSchema;
6
8
  export declare var BucketAlreadyOwnedByYou$: StaticErrorSchema;
7
9
  export declare var EncryptionTypeMismatch$: StaticErrorSchema;
8
10
  export declare var IdempotencyParameterMismatch$: StaticErrorSchema;
11
+ export declare var InvalidAnnotationName$: StaticErrorSchema;
9
12
  export declare var InvalidObjectState$: StaticErrorSchema;
13
+ export declare var InvalidPrefix$: StaticErrorSchema;
10
14
  export declare var InvalidRequest$: StaticErrorSchema;
11
15
  export declare var InvalidWriteOffset$: StaticErrorSchema;
16
+ export declare var NoSuchAnnotation$: StaticErrorSchema;
12
17
  export declare var NoSuchBucket$: StaticErrorSchema;
13
18
  export declare var NoSuchKey$: StaticErrorSchema;
14
19
  export declare var NoSuchUpload$: StaticErrorSchema;
@@ -16,6 +21,7 @@ export declare var NotFound$: StaticErrorSchema;
16
21
  export declare var ObjectAlreadyInActiveTierError$: StaticErrorSchema;
17
22
  export declare var ObjectNotInActiveTierError$: StaticErrorSchema;
18
23
  export declare var TooManyParts$: StaticErrorSchema;
24
+ export declare var UnsupportedMediaType$: StaticErrorSchema;
19
25
  /**
20
26
  * TypeRegistry instances containing modeled errors.
21
27
  * @internal
@@ -33,6 +39,10 @@ export declare var AnalyticsAndOperator$: StaticStructureSchema;
33
39
  export declare var AnalyticsConfiguration$: StaticStructureSchema;
34
40
  export declare var AnalyticsExportDestination$: StaticStructureSchema;
35
41
  export declare var AnalyticsS3BucketDestination$: StaticStructureSchema;
42
+ export declare var AnnotationEntry$: StaticStructureSchema;
43
+ export declare var AnnotationTableConfiguration$: StaticStructureSchema;
44
+ export declare var AnnotationTableConfigurationResult$: StaticStructureSchema;
45
+ export declare var AnnotationTableConfigurationUpdates$: StaticStructureSchema;
36
46
  export declare var BlockedEncryptionTypes$: StaticStructureSchema;
37
47
  export declare var Bucket$: StaticStructureSchema;
38
48
  export declare var BucketInfo$: StaticStructureSchema;
@@ -83,6 +93,8 @@ export declare var DeleteBucketWebsiteRequest$: StaticStructureSchema;
83
93
  export declare var DeletedObject$: StaticStructureSchema;
84
94
  export declare var DeleteMarkerEntry$: StaticStructureSchema;
85
95
  export declare var DeleteMarkerReplication$: StaticStructureSchema;
96
+ export declare var DeleteObjectAnnotationOutput$: StaticStructureSchema;
97
+ export declare var DeleteObjectAnnotationRequest$: StaticStructureSchema;
86
98
  export declare var DeleteObjectOutput$: StaticStructureSchema;
87
99
  export declare var DeleteObjectRequest$: StaticStructureSchema;
88
100
  export declare var DeleteObjectsOutput$: StaticStructureSchema;
@@ -150,6 +162,8 @@ export declare var GetBucketWebsiteOutput$: StaticStructureSchema;
150
162
  export declare var GetBucketWebsiteRequest$: StaticStructureSchema;
151
163
  export declare var GetObjectAclOutput$: StaticStructureSchema;
152
164
  export declare var GetObjectAclRequest$: StaticStructureSchema;
165
+ export declare var GetObjectAnnotationOutput$: StaticStructureSchema;
166
+ export declare var GetObjectAnnotationRequest$: StaticStructureSchema;
153
167
  export declare var GetObjectAttributesOutput$: StaticStructureSchema;
154
168
  export declare var GetObjectAttributesParts$: StaticStructureSchema;
155
169
  export declare var GetObjectAttributesRequest$: StaticStructureSchema;
@@ -213,6 +227,8 @@ export declare var ListDirectoryBucketsOutput$: StaticStructureSchema;
213
227
  export declare var ListDirectoryBucketsRequest$: StaticStructureSchema;
214
228
  export declare var ListMultipartUploadsOutput$: StaticStructureSchema;
215
229
  export declare var ListMultipartUploadsRequest$: StaticStructureSchema;
230
+ export declare var ListObjectAnnotationsOutput$: StaticStructureSchema;
231
+ export declare var ListObjectAnnotationsRequest$: StaticStructureSchema;
216
232
  export declare var ListObjectsOutput$: StaticStructureSchema;
217
233
  export declare var ListObjectsRequest$: StaticStructureSchema;
218
234
  export declare var ListObjectsV2Output$: StaticStructureSchema;
@@ -279,6 +295,8 @@ export declare var PutBucketVersioningRequest$: StaticStructureSchema;
279
295
  export declare var PutBucketWebsiteRequest$: StaticStructureSchema;
280
296
  export declare var PutObjectAclOutput$: StaticStructureSchema;
281
297
  export declare var PutObjectAclRequest$: StaticStructureSchema;
298
+ export declare var PutObjectAnnotationOutput$: StaticStructureSchema;
299
+ export declare var PutObjectAnnotationRequest$: StaticStructureSchema;
282
300
  export declare var PutObjectLegalHoldOutput$: StaticStructureSchema;
283
301
  export declare var PutObjectLegalHoldRequest$: StaticStructureSchema;
284
302
  export declare var PutObjectLockConfigurationOutput$: StaticStructureSchema;
@@ -340,6 +358,7 @@ export declare var TargetObjectKeyFormat$: StaticStructureSchema;
340
358
  export declare var Tiering$: StaticStructureSchema;
341
359
  export declare var TopicConfiguration$: StaticStructureSchema;
342
360
  export declare var Transition$: StaticStructureSchema;
361
+ export declare var UpdateBucketMetadataAnnotationTableConfigurationRequest$: StaticStructureSchema;
343
362
  export declare var UpdateBucketMetadataInventoryTableConfigurationRequest$: StaticStructureSchema;
344
363
  export declare var UpdateBucketMetadataJournalTableConfigurationRequest$: StaticStructureSchema;
345
364
  export declare var UpdateObjectEncryptionRequest$: StaticStructureSchema;
@@ -379,6 +398,7 @@ export declare var DeleteBucketReplication$: StaticOperationSchema;
379
398
  export declare var DeleteBucketTagging$: StaticOperationSchema;
380
399
  export declare var DeleteBucketWebsite$: StaticOperationSchema;
381
400
  export declare var DeleteObject$: StaticOperationSchema;
401
+ export declare var DeleteObjectAnnotation$: StaticOperationSchema;
382
402
  export declare var DeleteObjects$: StaticOperationSchema;
383
403
  export declare var DeleteObjectTagging$: StaticOperationSchema;
384
404
  export declare var DeletePublicAccessBlock$: StaticOperationSchema;
@@ -407,6 +427,7 @@ export declare var GetBucketVersioning$: StaticOperationSchema;
407
427
  export declare var GetBucketWebsite$: StaticOperationSchema;
408
428
  export declare var GetObject$: StaticOperationSchema;
409
429
  export declare var GetObjectAcl$: StaticOperationSchema;
430
+ export declare var GetObjectAnnotation$: StaticOperationSchema;
410
431
  export declare var GetObjectAttributes$: StaticOperationSchema;
411
432
  export declare var GetObjectLegalHold$: StaticOperationSchema;
412
433
  export declare var GetObjectLockConfiguration$: StaticOperationSchema;
@@ -423,6 +444,7 @@ export declare var ListBucketMetricsConfigurations$: StaticOperationSchema;
423
444
  export declare var ListBuckets$: StaticOperationSchema;
424
445
  export declare var ListDirectoryBuckets$: StaticOperationSchema;
425
446
  export declare var ListMultipartUploads$: StaticOperationSchema;
447
+ export declare var ListObjectAnnotations$: StaticOperationSchema;
426
448
  export declare var ListObjects$: StaticOperationSchema;
427
449
  export declare var ListObjectsV2$: StaticOperationSchema;
428
450
  export declare var ListObjectVersions$: StaticOperationSchema;
@@ -448,6 +470,7 @@ export declare var PutBucketVersioning$: StaticOperationSchema;
448
470
  export declare var PutBucketWebsite$: StaticOperationSchema;
449
471
  export declare var PutObject$: StaticOperationSchema;
450
472
  export declare var PutObjectAcl$: StaticOperationSchema;
473
+ export declare var PutObjectAnnotation$: StaticOperationSchema;
451
474
  export declare var PutObjectLegalHold$: StaticOperationSchema;
452
475
  export declare var PutObjectLockConfiguration$: StaticOperationSchema;
453
476
  export declare var PutObjectRetention$: StaticOperationSchema;
@@ -456,6 +479,7 @@ export declare var PutPublicAccessBlock$: StaticOperationSchema;
456
479
  export declare var RenameObject$: StaticOperationSchema;
457
480
  export declare var RestoreObject$: StaticOperationSchema;
458
481
  export declare var SelectObjectContent$: StaticOperationSchema;
482
+ export declare var UpdateBucketMetadataAnnotationTableConfiguration$: StaticOperationSchema;
459
483
  export declare var UpdateBucketMetadataInventoryTableConfiguration$: StaticOperationSchema;
460
484
  export declare var UpdateBucketMetadataJournalTableConfiguration$: StaticOperationSchema;
461
485
  export declare var UpdateObjectEncryption$: StaticOperationSchema;