@aws-sdk/client-s3 3.936.0 → 3.937.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 (34) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +136 -12
  3. package/dist-es/S3.js +4 -0
  4. package/dist-es/commands/GetBucketAbacCommand.js +20 -0
  5. package/dist-es/commands/PutBucketAbacCommand.js +26 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/enums.js +4 -0
  8. package/dist-es/schemas/schemas_0.js +91 -12
  9. package/dist-types/S3.d.ts +14 -0
  10. package/dist-types/S3Client.d.ts +4 -2
  11. package/dist-types/commands/DeleteBucketTaggingCommand.d.ts +2 -1
  12. package/dist-types/commands/GetBucketAbacCommand.d.ts +77 -0
  13. package/dist-types/commands/GetBucketEncryptionCommand.d.ts +1 -1
  14. package/dist-types/commands/GetBucketTaggingCommand.d.ts +1 -0
  15. package/dist-types/commands/PutBucketAbacCommand.d.ts +78 -0
  16. package/dist-types/commands/PutBucketEncryptionCommand.d.ts +1 -1
  17. package/dist-types/commands/PutBucketTaggingCommand.d.ts +2 -1
  18. package/dist-types/commands/UploadPartCommand.d.ts +3 -0
  19. package/dist-types/commands/UploadPartCopyCommand.d.ts +3 -0
  20. package/dist-types/commands/index.d.ts +2 -0
  21. package/dist-types/models/enums.d.ts +12 -0
  22. package/dist-types/models/models_0.d.ts +73 -100
  23. package/dist-types/models/models_1.d.ts +101 -2
  24. package/dist-types/schemas/schemas_0.d.ts +6 -0
  25. package/dist-types/ts3.4/S3.d.ts +34 -0
  26. package/dist-types/ts3.4/S3Client.d.ts +12 -0
  27. package/dist-types/ts3.4/commands/GetBucketAbacCommand.d.ts +47 -0
  28. package/dist-types/ts3.4/commands/PutBucketAbacCommand.d.ts +45 -0
  29. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  30. package/dist-types/ts3.4/models/enums.d.ts +6 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +18 -22
  32. package/dist-types/ts3.4/models/models_1.d.ts +25 -2
  33. package/dist-types/ts3.4/schemas/schemas_0.d.ts +6 -0
  34. package/package.json +1 -1
@@ -1,6 +1,105 @@
1
1
  import { StreamingBlobTypes } from "@smithy/types";
2
- import { ChecksumAlgorithm, ExpressionType, InventoryConfigurationState, ObjectLockLegalHoldStatus, ObjectLockMode, ReplicationStatus, RequestCharged, RequestPayer, RestoreRequestType, ServerSideEncryption, StorageClass, Tier } from "./enums";
3
- import { GlacierJobParameters, InputSerialization, MetadataTableEncryptionConfiguration, OutputLocation, OutputSerialization, RecordExpiration } from "./models_0";
2
+ import { ChecksumAlgorithm, CompressionType, ExpressionType, InventoryConfigurationState, ObjectLockLegalHoldStatus, ObjectLockMode, QuoteFields, ReplicationStatus, RequestCharged, RequestPayer, RestoreRequestType, ServerSideEncryption, StorageClass, Tier } from "./enums";
3
+ import { CSVInput, GlacierJobParameters, JSONInput, MetadataTableEncryptionConfiguration, OutputLocation, ParquetInput, RecordExpiration } from "./models_0";
4
+ /**
5
+ * <p>Describes the serialization format of the object.</p>
6
+ * @public
7
+ */
8
+ export interface InputSerialization {
9
+ /**
10
+ * <p>Describes the serialization of a CSV-encoded object.</p>
11
+ * @public
12
+ */
13
+ CSV?: CSVInput | undefined;
14
+ /**
15
+ * <p>Specifies object's compression format. Valid values: NONE, GZIP, BZIP2. Default Value: NONE.</p>
16
+ * @public
17
+ */
18
+ CompressionType?: CompressionType | undefined;
19
+ /**
20
+ * <p>Specifies JSON as object's input serialization format.</p>
21
+ * @public
22
+ */
23
+ JSON?: JSONInput | undefined;
24
+ /**
25
+ * <p>Specifies Parquet as object's input serialization format.</p>
26
+ * @public
27
+ */
28
+ Parquet?: ParquetInput | undefined;
29
+ }
30
+ /**
31
+ * <p>Describes how uncompressed comma-separated values (CSV)-formatted results are formatted.</p>
32
+ * @public
33
+ */
34
+ export interface CSVOutput {
35
+ /**
36
+ * <p>Indicates whether to use quotation marks around output fields. </p>
37
+ * <ul>
38
+ * <li>
39
+ * <p>
40
+ * <code>ALWAYS</code>: Always use quotation marks for output fields.</p>
41
+ * </li>
42
+ * <li>
43
+ * <p>
44
+ * <code>ASNEEDED</code>: Use quotation marks for output fields when needed.</p>
45
+ * </li>
46
+ * </ul>
47
+ * @public
48
+ */
49
+ QuoteFields?: QuoteFields | undefined;
50
+ /**
51
+ * <p>The single character used for escaping the quote character inside an already escaped value.</p>
52
+ * @public
53
+ */
54
+ QuoteEscapeCharacter?: string | undefined;
55
+ /**
56
+ * <p>A single character used to separate individual records in the output. Instead of the default value,
57
+ * you can specify an arbitrary delimiter.</p>
58
+ * @public
59
+ */
60
+ RecordDelimiter?: string | undefined;
61
+ /**
62
+ * <p>The value used to separate individual fields in a record. You can specify an arbitrary
63
+ * delimiter.</p>
64
+ * @public
65
+ */
66
+ FieldDelimiter?: string | undefined;
67
+ /**
68
+ * <p>A single character used for escaping when the field delimiter is part of the value. For example, if
69
+ * the value is <code>a, b</code>, Amazon S3 wraps this field value in quotation marks, as follows: <code>" a ,
70
+ * b "</code>.</p>
71
+ * @public
72
+ */
73
+ QuoteCharacter?: string | undefined;
74
+ }
75
+ /**
76
+ * <p>Specifies JSON as request's output serialization format.</p>
77
+ * @public
78
+ */
79
+ export interface JSONOutput {
80
+ /**
81
+ * <p>The value used to separate individual records in the output. If no value is specified, Amazon S3 uses a
82
+ * newline character ('\n').</p>
83
+ * @public
84
+ */
85
+ RecordDelimiter?: string | undefined;
86
+ }
87
+ /**
88
+ * <p>Describes how results of the Select job are serialized.</p>
89
+ * @public
90
+ */
91
+ export interface OutputSerialization {
92
+ /**
93
+ * <p>Describes the serialization of CSV-encoded Select results.</p>
94
+ * @public
95
+ */
96
+ CSV?: CSVOutput | undefined;
97
+ /**
98
+ * <p>Specifies JSON as request's output serialization format.</p>
99
+ * @public
100
+ */
101
+ JSON?: JSONOutput | undefined;
102
+ }
4
103
  /**
5
104
  * <important>
6
105
  * <p>Amazon S3 Select is no longer available to new customers. Existing customers of Amazon S3 Select can
@@ -5,6 +5,7 @@ export declare var SSECustomerKey: StaticSimpleSchema;
5
5
  export declare var SSEKMSEncryptionContext: StaticSimpleSchema;
6
6
  export declare var SSEKMSKeyId: StaticSimpleSchema;
7
7
  export declare var StreamingBlob: StaticSimpleSchema;
8
+ export declare var AbacStatus: StaticStructureSchema;
8
9
  export declare var AbortIncompleteMultipartUpload: StaticStructureSchema;
9
10
  export declare var AbortMultipartUploadOutput: StaticStructureSchema;
10
11
  export declare var AbortMultipartUploadRequest: StaticStructureSchema;
@@ -86,6 +87,8 @@ export declare var ErrorDocument: StaticStructureSchema;
86
87
  export declare var EventBridgeConfiguration: StaticStructureSchema;
87
88
  export declare var ExistingObjectReplication: StaticStructureSchema;
88
89
  export declare var FilterRule: StaticStructureSchema;
90
+ export declare var GetBucketAbacOutput: StaticStructureSchema;
91
+ export declare var GetBucketAbacRequest: StaticStructureSchema;
89
92
  export declare var GetBucketAccelerateConfigurationOutput: StaticStructureSchema;
90
93
  export declare var GetBucketAccelerateConfigurationRequest: StaticStructureSchema;
91
94
  export declare var GetBucketAclOutput: StaticStructureSchema;
@@ -250,6 +253,7 @@ export declare var PolicyStatus: StaticStructureSchema;
250
253
  export declare var Progress: StaticStructureSchema;
251
254
  export declare var ProgressEvent: StaticStructureSchema;
252
255
  export declare var PublicAccessBlockConfiguration: StaticStructureSchema;
256
+ export declare var PutBucketAbacRequest: StaticStructureSchema;
253
257
  export declare var PutBucketAccelerateConfigurationRequest: StaticStructureSchema;
254
258
  export declare var PutBucketAclRequest: StaticStructureSchema;
255
259
  export declare var PutBucketAnalyticsConfigurationRequest: StaticStructureSchema;
@@ -417,6 +421,7 @@ export declare var DeleteObject: StaticOperationSchema;
417
421
  export declare var DeleteObjects: StaticOperationSchema;
418
422
  export declare var DeleteObjectTagging: StaticOperationSchema;
419
423
  export declare var DeletePublicAccessBlock: StaticOperationSchema;
424
+ export declare var GetBucketAbac: StaticOperationSchema;
420
425
  export declare var GetBucketAccelerateConfiguration: StaticOperationSchema;
421
426
  export declare var GetBucketAcl: StaticOperationSchema;
422
427
  export declare var GetBucketAnalyticsConfiguration: StaticOperationSchema;
@@ -461,6 +466,7 @@ export declare var ListObjects: StaticOperationSchema;
461
466
  export declare var ListObjectsV2: StaticOperationSchema;
462
467
  export declare var ListObjectVersions: StaticOperationSchema;
463
468
  export declare var ListParts: StaticOperationSchema;
469
+ export declare var PutBucketAbac: StaticOperationSchema;
464
470
  export declare var PutBucketAccelerateConfiguration: StaticOperationSchema;
465
471
  export declare var PutBucketAcl: StaticOperationSchema;
466
472
  export declare var PutBucketAnalyticsConfiguration: StaticOperationSchema;
@@ -107,6 +107,10 @@ import {
107
107
  DeletePublicAccessBlockCommandInput,
108
108
  DeletePublicAccessBlockCommandOutput,
109
109
  } from "./commands/DeletePublicAccessBlockCommand";
110
+ import {
111
+ GetBucketAbacCommandInput,
112
+ GetBucketAbacCommandOutput,
113
+ } from "./commands/GetBucketAbacCommand";
110
114
  import {
111
115
  GetBucketAccelerateConfigurationCommandInput,
112
116
  GetBucketAccelerateConfigurationCommandOutput,
@@ -283,6 +287,10 @@ import {
283
287
  ListPartsCommandInput,
284
288
  ListPartsCommandOutput,
285
289
  } from "./commands/ListPartsCommand";
290
+ import {
291
+ PutBucketAbacCommandInput,
292
+ PutBucketAbacCommandOutput,
293
+ } from "./commands/PutBucketAbacCommand";
286
294
  import {
287
295
  PutBucketAccelerateConfigurationCommandInput,
288
296
  PutBucketAccelerateConfigurationCommandOutput,
@@ -810,6 +818,19 @@ export interface S3 {
810
818
  options: __HttpHandlerOptions,
811
819
  cb: (err: any, data?: DeletePublicAccessBlockCommandOutput) => void
812
820
  ): void;
821
+ getBucketAbac(
822
+ args: GetBucketAbacCommandInput,
823
+ options?: __HttpHandlerOptions
824
+ ): Promise<GetBucketAbacCommandOutput>;
825
+ getBucketAbac(
826
+ args: GetBucketAbacCommandInput,
827
+ cb: (err: any, data?: GetBucketAbacCommandOutput) => void
828
+ ): void;
829
+ getBucketAbac(
830
+ args: GetBucketAbacCommandInput,
831
+ options: __HttpHandlerOptions,
832
+ cb: (err: any, data?: GetBucketAbacCommandOutput) => void
833
+ ): void;
813
834
  getBucketAccelerateConfiguration(
814
835
  args: GetBucketAccelerateConfigurationCommandInput,
815
836
  options?: __HttpHandlerOptions
@@ -1420,6 +1441,19 @@ export interface S3 {
1420
1441
  options: __HttpHandlerOptions,
1421
1442
  cb: (err: any, data?: ListPartsCommandOutput) => void
1422
1443
  ): void;
1444
+ putBucketAbac(
1445
+ args: PutBucketAbacCommandInput,
1446
+ options?: __HttpHandlerOptions
1447
+ ): Promise<PutBucketAbacCommandOutput>;
1448
+ putBucketAbac(
1449
+ args: PutBucketAbacCommandInput,
1450
+ cb: (err: any, data?: PutBucketAbacCommandOutput) => void
1451
+ ): void;
1452
+ putBucketAbac(
1453
+ args: PutBucketAbacCommandInput,
1454
+ options: __HttpHandlerOptions,
1455
+ cb: (err: any, data?: PutBucketAbacCommandOutput) => void
1456
+ ): void;
1423
1457
  putBucketAccelerateConfiguration(
1424
1458
  args: PutBucketAccelerateConfigurationCommandInput,
1425
1459
  options?: __HttpHandlerOptions
@@ -170,6 +170,10 @@ import {
170
170
  DeletePublicAccessBlockCommandInput,
171
171
  DeletePublicAccessBlockCommandOutput,
172
172
  } from "./commands/DeletePublicAccessBlockCommand";
173
+ import {
174
+ GetBucketAbacCommandInput,
175
+ GetBucketAbacCommandOutput,
176
+ } from "./commands/GetBucketAbacCommand";
173
177
  import {
174
178
  GetBucketAccelerateConfigurationCommandInput,
175
179
  GetBucketAccelerateConfigurationCommandOutput,
@@ -346,6 +350,10 @@ import {
346
350
  ListPartsCommandInput,
347
351
  ListPartsCommandOutput,
348
352
  } from "./commands/ListPartsCommand";
353
+ import {
354
+ PutBucketAbacCommandInput,
355
+ PutBucketAbacCommandOutput,
356
+ } from "./commands/PutBucketAbacCommand";
349
357
  import {
350
358
  PutBucketAccelerateConfigurationCommandInput,
351
359
  PutBucketAccelerateConfigurationCommandOutput,
@@ -513,6 +521,7 @@ export type ServiceInputTypes =
513
521
  | DeleteObjectTaggingCommandInput
514
522
  | DeleteObjectsCommandInput
515
523
  | DeletePublicAccessBlockCommandInput
524
+ | GetBucketAbacCommandInput
516
525
  | GetBucketAccelerateConfigurationCommandInput
517
526
  | GetBucketAclCommandInput
518
527
  | GetBucketAnalyticsConfigurationCommandInput
@@ -557,6 +566,7 @@ export type ServiceInputTypes =
557
566
  | ListObjectsCommandInput
558
567
  | ListObjectsV2CommandInput
559
568
  | ListPartsCommandInput
569
+ | PutBucketAbacCommandInput
560
570
  | PutBucketAccelerateConfigurationCommandInput
561
571
  | PutBucketAclCommandInput
562
572
  | PutBucketAnalyticsConfigurationCommandInput
@@ -618,6 +628,7 @@ export type ServiceOutputTypes =
618
628
  | DeleteObjectTaggingCommandOutput
619
629
  | DeleteObjectsCommandOutput
620
630
  | DeletePublicAccessBlockCommandOutput
631
+ | GetBucketAbacCommandOutput
621
632
  | GetBucketAccelerateConfigurationCommandOutput
622
633
  | GetBucketAclCommandOutput
623
634
  | GetBucketAnalyticsConfigurationCommandOutput
@@ -662,6 +673,7 @@ export type ServiceOutputTypes =
662
673
  | ListObjectsCommandOutput
663
674
  | ListObjectsV2CommandOutput
664
675
  | ListPartsCommandOutput
676
+ | PutBucketAbacCommandOutput
665
677
  | PutBucketAccelerateConfigurationCommandOutput
666
678
  | PutBucketAclCommandOutput
667
679
  | PutBucketAnalyticsConfigurationCommandOutput
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetBucketAbacOutput, GetBucketAbacRequest } from "../models/models_0";
4
+ import {
5
+ S3ClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../S3Client";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetBucketAbacCommandInput extends GetBucketAbacRequest {}
12
+ export interface GetBucketAbacCommandOutput
13
+ extends GetBucketAbacOutput,
14
+ __MetadataBearer {}
15
+ declare const GetBucketAbacCommand_base: {
16
+ new (
17
+ input: GetBucketAbacCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetBucketAbacCommandInput,
20
+ GetBucketAbacCommandOutput,
21
+ S3ClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: GetBucketAbacCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetBucketAbacCommandInput,
29
+ GetBucketAbacCommandOutput,
30
+ S3ClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetBucketAbacCommand extends GetBucketAbacCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetBucketAbacRequest;
40
+ output: GetBucketAbacOutput;
41
+ };
42
+ sdk: {
43
+ input: GetBucketAbacCommandInput;
44
+ output: GetBucketAbacCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,45 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { PutBucketAbacRequest } from "../models/models_0";
4
+ import {
5
+ S3ClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../S3Client";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface PutBucketAbacCommandInput extends PutBucketAbacRequest {}
12
+ export interface PutBucketAbacCommandOutput extends __MetadataBearer {}
13
+ declare const PutBucketAbacCommand_base: {
14
+ new (
15
+ input: PutBucketAbacCommandInput
16
+ ): import("@smithy/smithy-client").CommandImpl<
17
+ PutBucketAbacCommandInput,
18
+ PutBucketAbacCommandOutput,
19
+ S3ClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ input: PutBucketAbacCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ PutBucketAbacCommandInput,
27
+ PutBucketAbacCommandOutput,
28
+ S3ClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
+ };
34
+ export declare class PutBucketAbacCommand extends PutBucketAbacCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: PutBucketAbacRequest;
38
+ output: {};
39
+ };
40
+ sdk: {
41
+ input: PutBucketAbacCommandInput;
42
+ output: PutBucketAbacCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -25,6 +25,7 @@ export * from "./DeleteObjectCommand";
25
25
  export * from "./DeleteObjectTaggingCommand";
26
26
  export * from "./DeleteObjectsCommand";
27
27
  export * from "./DeletePublicAccessBlockCommand";
28
+ export * from "./GetBucketAbacCommand";
28
29
  export * from "./GetBucketAccelerateConfigurationCommand";
29
30
  export * from "./GetBucketAclCommand";
30
31
  export * from "./GetBucketAnalyticsConfigurationCommand";
@@ -69,6 +70,7 @@ export * from "./ListObjectVersionsCommand";
69
70
  export * from "./ListObjectsCommand";
70
71
  export * from "./ListObjectsV2Command";
71
72
  export * from "./ListPartsCommand";
73
+ export * from "./PutBucketAbacCommand";
72
74
  export * from "./PutBucketAccelerateConfigurationCommand";
73
75
  export * from "./PutBucketAclCommand";
74
76
  export * from "./PutBucketAnalyticsConfigurationCommand";
@@ -1,3 +1,9 @@
1
+ export declare const BucketAbacStatus: {
2
+ readonly Disabled: "Disabled";
3
+ readonly Enabled: "Enabled";
4
+ };
5
+ export type BucketAbacStatus =
6
+ (typeof BucketAbacStatus)[keyof typeof BucketAbacStatus];
1
7
  export declare const RequestCharged: {
2
8
  readonly requester: "requester";
3
9
  };
@@ -2,6 +2,7 @@ import { StreamingBlobTypes } from "@smithy/types";
2
2
  import {
3
3
  AnalyticsS3ExportFileFormat,
4
4
  ArchiveStatus,
5
+ BucketAbacStatus,
5
6
  BucketAccelerateStatus,
6
7
  BucketCannedACL,
7
8
  BucketLocationConstraint,
@@ -11,7 +12,6 @@ import {
11
12
  ChecksumAlgorithm,
12
13
  ChecksumMode,
13
14
  ChecksumType,
14
- CompressionType,
15
15
  DataRedundancy,
16
16
  DeleteMarkerReplicationStatus,
17
17
  EncodingType,
@@ -50,7 +50,6 @@ import {
50
50
  Payer,
51
51
  Permission,
52
52
  Protocol,
53
- QuoteFields,
54
53
  ReplicaModificationsStatus,
55
54
  ReplicationRuleStatus,
56
55
  ReplicationStatus,
@@ -70,6 +69,9 @@ import {
70
69
  TransitionStorageClass,
71
70
  Type,
72
71
  } from "./enums";
72
+ export interface AbacStatus {
73
+ Status?: BucketAbacStatus | undefined;
74
+ }
73
75
  export interface AbortIncompleteMultipartUpload {
74
76
  DaysAfterInitiation?: number | undefined;
75
77
  }
@@ -503,6 +505,13 @@ export interface DeletePublicAccessBlockRequest {
503
505
  Bucket: string | undefined;
504
506
  ExpectedBucketOwner?: string | undefined;
505
507
  }
508
+ export interface GetBucketAbacOutput {
509
+ AbacStatus?: AbacStatus | undefined;
510
+ }
511
+ export interface GetBucketAbacRequest {
512
+ Bucket: string | undefined;
513
+ ExpectedBucketOwner?: string | undefined;
514
+ }
506
515
  export interface GetBucketAccelerateConfigurationOutput {
507
516
  Status?: BucketAccelerateStatus | undefined;
508
517
  RequestCharged?: RequestCharged | undefined;
@@ -1665,6 +1674,13 @@ export interface ListPartsRequest {
1665
1674
  SSECustomerKey?: string | undefined;
1666
1675
  SSECustomerKeyMD5?: string | undefined;
1667
1676
  }
1677
+ export interface PutBucketAbacRequest {
1678
+ Bucket: string | undefined;
1679
+ ContentMD5?: string | undefined;
1680
+ ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
1681
+ ExpectedBucketOwner?: string | undefined;
1682
+ AbacStatus: AbacStatus | undefined;
1683
+ }
1668
1684
  export interface PutBucketAccelerateConfigurationRequest {
1669
1685
  Bucket: string | undefined;
1670
1686
  AccelerateConfiguration: AccelerateConfiguration | undefined;
@@ -2025,23 +2041,3 @@ export interface JSONInput {
2025
2041
  Type?: JSONType | undefined;
2026
2042
  }
2027
2043
  export interface ParquetInput {}
2028
- export interface InputSerialization {
2029
- CSV?: CSVInput | undefined;
2030
- CompressionType?: CompressionType | undefined;
2031
- JSON?: JSONInput | undefined;
2032
- Parquet?: ParquetInput | undefined;
2033
- }
2034
- export interface CSVOutput {
2035
- QuoteFields?: QuoteFields | undefined;
2036
- QuoteEscapeCharacter?: string | undefined;
2037
- RecordDelimiter?: string | undefined;
2038
- FieldDelimiter?: string | undefined;
2039
- QuoteCharacter?: string | undefined;
2040
- }
2041
- export interface JSONOutput {
2042
- RecordDelimiter?: string | undefined;
2043
- }
2044
- export interface OutputSerialization {
2045
- CSV?: CSVOutput | undefined;
2046
- JSON?: JSONOutput | undefined;
2047
- }
@@ -1,10 +1,12 @@
1
1
  import { StreamingBlobTypes } from "@smithy/types";
2
2
  import {
3
3
  ChecksumAlgorithm,
4
+ CompressionType,
4
5
  ExpressionType,
5
6
  InventoryConfigurationState,
6
7
  ObjectLockLegalHoldStatus,
7
8
  ObjectLockMode,
9
+ QuoteFields,
8
10
  ReplicationStatus,
9
11
  RequestCharged,
10
12
  RequestPayer,
@@ -14,13 +16,34 @@ import {
14
16
  Tier,
15
17
  } from "./enums";
16
18
  import {
19
+ CSVInput,
17
20
  GlacierJobParameters,
18
- InputSerialization,
21
+ JSONInput,
19
22
  MetadataTableEncryptionConfiguration,
20
23
  OutputLocation,
21
- OutputSerialization,
24
+ ParquetInput,
22
25
  RecordExpiration,
23
26
  } from "./models_0";
27
+ export interface InputSerialization {
28
+ CSV?: CSVInput | undefined;
29
+ CompressionType?: CompressionType | undefined;
30
+ JSON?: JSONInput | undefined;
31
+ Parquet?: ParquetInput | undefined;
32
+ }
33
+ export interface CSVOutput {
34
+ QuoteFields?: QuoteFields | undefined;
35
+ QuoteEscapeCharacter?: string | undefined;
36
+ RecordDelimiter?: string | undefined;
37
+ FieldDelimiter?: string | undefined;
38
+ QuoteCharacter?: string | undefined;
39
+ }
40
+ export interface JSONOutput {
41
+ RecordDelimiter?: string | undefined;
42
+ }
43
+ export interface OutputSerialization {
44
+ CSV?: CSVOutput | undefined;
45
+ JSON?: JSONOutput | undefined;
46
+ }
24
47
  export interface SelectParameters {
25
48
  InputSerialization: InputSerialization | undefined;
26
49
  ExpressionType: ExpressionType | undefined;
@@ -11,6 +11,7 @@ export declare var SSECustomerKey: StaticSimpleSchema;
11
11
  export declare var SSEKMSEncryptionContext: StaticSimpleSchema;
12
12
  export declare var SSEKMSKeyId: StaticSimpleSchema;
13
13
  export declare var StreamingBlob: StaticSimpleSchema;
14
+ export declare var AbacStatus: StaticStructureSchema;
14
15
  export declare var AbortIncompleteMultipartUpload: StaticStructureSchema;
15
16
  export declare var AbortMultipartUploadOutput: StaticStructureSchema;
16
17
  export declare var AbortMultipartUploadRequest: StaticStructureSchema;
@@ -92,6 +93,8 @@ export declare var ErrorDocument: StaticStructureSchema;
92
93
  export declare var EventBridgeConfiguration: StaticStructureSchema;
93
94
  export declare var ExistingObjectReplication: StaticStructureSchema;
94
95
  export declare var FilterRule: StaticStructureSchema;
96
+ export declare var GetBucketAbacOutput: StaticStructureSchema;
97
+ export declare var GetBucketAbacRequest: StaticStructureSchema;
95
98
  export declare var GetBucketAccelerateConfigurationOutput: StaticStructureSchema;
96
99
  export declare var GetBucketAccelerateConfigurationRequest: StaticStructureSchema;
97
100
  export declare var GetBucketAclOutput: StaticStructureSchema;
@@ -256,6 +259,7 @@ export declare var PolicyStatus: StaticStructureSchema;
256
259
  export declare var Progress: StaticStructureSchema;
257
260
  export declare var ProgressEvent: StaticStructureSchema;
258
261
  export declare var PublicAccessBlockConfiguration: StaticStructureSchema;
262
+ export declare var PutBucketAbacRequest: StaticStructureSchema;
259
263
  export declare var PutBucketAccelerateConfigurationRequest: StaticStructureSchema;
260
264
  export declare var PutBucketAclRequest: StaticStructureSchema;
261
265
  export declare var PutBucketAnalyticsConfigurationRequest: StaticStructureSchema;
@@ -423,6 +427,7 @@ export declare var DeleteObject: StaticOperationSchema;
423
427
  export declare var DeleteObjects: StaticOperationSchema;
424
428
  export declare var DeleteObjectTagging: StaticOperationSchema;
425
429
  export declare var DeletePublicAccessBlock: StaticOperationSchema;
430
+ export declare var GetBucketAbac: StaticOperationSchema;
426
431
  export declare var GetBucketAccelerateConfiguration: StaticOperationSchema;
427
432
  export declare var GetBucketAcl: StaticOperationSchema;
428
433
  export declare var GetBucketAnalyticsConfiguration: StaticOperationSchema;
@@ -467,6 +472,7 @@ export declare var ListObjects: StaticOperationSchema;
467
472
  export declare var ListObjectsV2: StaticOperationSchema;
468
473
  export declare var ListObjectVersions: StaticOperationSchema;
469
474
  export declare var ListParts: StaticOperationSchema;
475
+ export declare var PutBucketAbac: StaticOperationSchema;
470
476
  export declare var PutBucketAccelerateConfiguration: StaticOperationSchema;
471
477
  export declare var PutBucketAcl: StaticOperationSchema;
472
478
  export declare var PutBucketAnalyticsConfiguration: StaticOperationSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-s3",
3
3
  "description": "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
4
- "version": "3.936.0",
4
+ "version": "3.937.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-s3",