@aws-sdk/client-s3 3.703.0 → 3.709.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 (52) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/index.js +330 -102
  3. package/dist-es/S3.js +6 -0
  4. package/dist-es/commands/CreateBucketMetadataTableConfigurationCommand.js +32 -0
  5. package/dist-es/commands/DeleteBucketMetadataTableConfigurationCommand.js +26 -0
  6. package/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +28 -0
  7. package/dist-es/commands/PutBucketEncryptionCommand.js +1 -1
  8. package/dist-es/commands/PutBucketInventoryConfigurationCommand.js +1 -1
  9. package/dist-es/commands/index.js +3 -0
  10. package/dist-es/models/models_0.js +0 -12
  11. package/dist-es/models/models_1.js +13 -0
  12. package/dist-es/protocols/Aws_restXml.js +157 -0
  13. package/dist-types/S3.d.ts +21 -0
  14. package/dist-types/S3Client.d.ts +5 -2
  15. package/dist-types/commands/CreateBucketCommand.d.ts +13 -13
  16. package/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +134 -0
  17. package/dist-types/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +95 -0
  18. package/dist-types/commands/DeleteObjectCommand.d.ts +10 -10
  19. package/dist-types/commands/DeleteObjectsCommand.d.ts +22 -22
  20. package/dist-types/commands/GetBucketMetadataTableConfigurationCommand.d.ts +111 -0
  21. package/dist-types/commands/GetObjectCommand.d.ts +19 -19
  22. package/dist-types/commands/GetObjectTaggingCommand.d.ts +19 -19
  23. package/dist-types/commands/PutBucketCorsCommand.d.ts +1 -1
  24. package/dist-types/commands/PutBucketEncryptionCommand.d.ts +1 -1
  25. package/dist-types/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +1 -1
  26. package/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +1 -1
  27. package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
  28. package/dist-types/commands/PutBucketLoggingCommand.d.ts +1 -1
  29. package/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +1 -1
  30. package/dist-types/commands/PutObjectCommand.d.ts +40 -40
  31. package/dist-types/commands/UploadPartCopyCommand.d.ts +13 -13
  32. package/dist-types/commands/index.d.ts +3 -0
  33. package/dist-types/models/models_0.d.ts +377 -352
  34. package/dist-types/models/models_1.d.ts +352 -1
  35. package/dist-types/protocols/Aws_restXml.d.ts +27 -0
  36. package/dist-types/ts3.4/S3.d.ts +69 -0
  37. package/dist-types/ts3.4/S3Client.d.ts +18 -0
  38. package/dist-types/ts3.4/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +47 -0
  39. package/dist-types/ts3.4/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +47 -0
  40. package/dist-types/ts3.4/commands/GetBucketMetadataTableConfigurationCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  49. package/dist-types/ts3.4/models/models_0.d.ts +47 -66
  50. package/dist-types/ts3.4/models/models_1.d.ts +74 -0
  51. package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +36 -0
  52. package/package.json +52 -52
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { CreateBucketMetadataTableConfigurationRequest } from "../models/models_0";
4
+ import {
5
+ S3ClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../S3Client";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface CreateBucketMetadataTableConfigurationCommandInput
12
+ extends CreateBucketMetadataTableConfigurationRequest {}
13
+ export interface CreateBucketMetadataTableConfigurationCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const CreateBucketMetadataTableConfigurationCommand_base: {
16
+ new (
17
+ input: CreateBucketMetadataTableConfigurationCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ CreateBucketMetadataTableConfigurationCommandInput,
20
+ CreateBucketMetadataTableConfigurationCommandOutput,
21
+ S3ClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: CreateBucketMetadataTableConfigurationCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ CreateBucketMetadataTableConfigurationCommandInput,
29
+ CreateBucketMetadataTableConfigurationCommandOutput,
30
+ S3ClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class CreateBucketMetadataTableConfigurationCommand extends CreateBucketMetadataTableConfigurationCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: CreateBucketMetadataTableConfigurationRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: CreateBucketMetadataTableConfigurationCommandInput;
44
+ output: CreateBucketMetadataTableConfigurationCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeleteBucketMetadataTableConfigurationRequest } from "../models/models_0";
4
+ import {
5
+ S3ClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../S3Client";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteBucketMetadataTableConfigurationCommandInput
12
+ extends DeleteBucketMetadataTableConfigurationRequest {}
13
+ export interface DeleteBucketMetadataTableConfigurationCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const DeleteBucketMetadataTableConfigurationCommand_base: {
16
+ new (
17
+ input: DeleteBucketMetadataTableConfigurationCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeleteBucketMetadataTableConfigurationCommandInput,
20
+ DeleteBucketMetadataTableConfigurationCommandOutput,
21
+ S3ClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: DeleteBucketMetadataTableConfigurationCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeleteBucketMetadataTableConfigurationCommandInput,
29
+ DeleteBucketMetadataTableConfigurationCommandOutput,
30
+ S3ClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeleteBucketMetadataTableConfigurationCommand extends DeleteBucketMetadataTableConfigurationCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DeleteBucketMetadataTableConfigurationRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: DeleteBucketMetadataTableConfigurationCommandInput;
44
+ output: DeleteBucketMetadataTableConfigurationCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetBucketMetadataTableConfigurationOutput,
5
+ GetBucketMetadataTableConfigurationRequest,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3ClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3Client";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetBucketMetadataTableConfigurationCommandInput
15
+ extends GetBucketMetadataTableConfigurationRequest {}
16
+ export interface GetBucketMetadataTableConfigurationCommandOutput
17
+ extends GetBucketMetadataTableConfigurationOutput,
18
+ __MetadataBearer {}
19
+ declare const GetBucketMetadataTableConfigurationCommand_base: {
20
+ new (
21
+ input: GetBucketMetadataTableConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetBucketMetadataTableConfigurationCommandInput,
24
+ GetBucketMetadataTableConfigurationCommandOutput,
25
+ S3ClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetBucketMetadataTableConfigurationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetBucketMetadataTableConfigurationCommandInput,
33
+ GetBucketMetadataTableConfigurationCommandOutput,
34
+ S3ClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetBucketMetadataTableConfigurationCommand extends GetBucketMetadataTableConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetBucketMetadataTableConfigurationRequest;
44
+ output: GetBucketMetadataTableConfigurationOutput;
45
+ };
46
+ sdk: {
47
+ input: GetBucketMetadataTableConfigurationCommandInput;
48
+ output: GetBucketMetadataTableConfigurationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { PutBucketCorsRequest } from "../models/models_0";
3
+ import { PutBucketCorsRequest } from "../models/models_1";
4
4
  import {
5
5
  S3ClientResolvedConfig,
6
6
  ServiceInputTypes,
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { PutBucketEncryptionRequest } from "../models/models_0";
3
+ import { PutBucketEncryptionRequest } from "../models/models_1";
4
4
  import {
5
5
  S3ClientResolvedConfig,
6
6
  ServiceInputTypes,
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { PutBucketIntelligentTieringConfigurationRequest } from "../models/models_0";
3
+ import { PutBucketIntelligentTieringConfigurationRequest } from "../models/models_1";
4
4
  import {
5
5
  S3ClientResolvedConfig,
6
6
  ServiceInputTypes,
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { PutBucketInventoryConfigurationRequest } from "../models/models_0";
3
+ import { PutBucketInventoryConfigurationRequest } from "../models/models_1";
4
4
  import {
5
5
  S3ClientResolvedConfig,
6
6
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  PutBucketLifecycleConfigurationOutput,
5
5
  PutBucketLifecycleConfigurationRequest,
6
- } from "../models/models_0";
6
+ } from "../models/models_1";
7
7
  import {
8
8
  S3ClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { PutBucketLoggingRequest } from "../models/models_0";
3
+ import { PutBucketLoggingRequest } from "../models/models_1";
4
4
  import {
5
5
  S3ClientResolvedConfig,
6
6
  ServiceInputTypes,
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { PutBucketMetricsConfigurationRequest } from "../models/models_0";
3
+ import { PutBucketMetricsConfigurationRequest } from "../models/models_1";
4
4
  import {
5
5
  S3ClientResolvedConfig,
6
6
  ServiceInputTypes,
@@ -2,6 +2,7 @@ export * from "./AbortMultipartUploadCommand";
2
2
  export * from "./CompleteMultipartUploadCommand";
3
3
  export * from "./CopyObjectCommand";
4
4
  export * from "./CreateBucketCommand";
5
+ export * from "./CreateBucketMetadataTableConfigurationCommand";
5
6
  export * from "./CreateMultipartUploadCommand";
6
7
  export * from "./CreateSessionCommand";
7
8
  export * from "./DeleteBucketAnalyticsConfigurationCommand";
@@ -11,6 +12,7 @@ export * from "./DeleteBucketEncryptionCommand";
11
12
  export * from "./DeleteBucketIntelligentTieringConfigurationCommand";
12
13
  export * from "./DeleteBucketInventoryConfigurationCommand";
13
14
  export * from "./DeleteBucketLifecycleCommand";
15
+ export * from "./DeleteBucketMetadataTableConfigurationCommand";
14
16
  export * from "./DeleteBucketMetricsConfigurationCommand";
15
17
  export * from "./DeleteBucketOwnershipControlsCommand";
16
18
  export * from "./DeleteBucketPolicyCommand";
@@ -31,6 +33,7 @@ export * from "./GetBucketInventoryConfigurationCommand";
31
33
  export * from "./GetBucketLifecycleConfigurationCommand";
32
34
  export * from "./GetBucketLocationCommand";
33
35
  export * from "./GetBucketLoggingCommand";
36
+ export * from "./GetBucketMetadataTableConfigurationCommand";
34
37
  export * from "./GetBucketMetricsConfigurationCommand";
35
38
  export * from "./GetBucketNotificationConfigurationCommand";
36
39
  export * from "./GetBucketOwnershipControlsCommand";
@@ -361,6 +361,20 @@ export interface CreateBucketRequest {
361
361
  ObjectLockEnabledForBucket?: boolean | undefined;
362
362
  ObjectOwnership?: ObjectOwnership | undefined;
363
363
  }
364
+ export interface S3TablesDestination {
365
+ TableBucketArn: string | undefined;
366
+ TableName: string | undefined;
367
+ }
368
+ export interface MetadataTableConfiguration {
369
+ S3TablesDestination: S3TablesDestination | undefined;
370
+ }
371
+ export interface CreateBucketMetadataTableConfigurationRequest {
372
+ Bucket: string | undefined;
373
+ ContentMD5?: string | undefined;
374
+ ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
375
+ MetadataTableConfiguration: MetadataTableConfiguration | undefined;
376
+ ExpectedBucketOwner?: string | undefined;
377
+ }
364
378
  export interface CreateMultipartUploadOutput {
365
379
  AbortDate?: Date | undefined;
366
380
  AbortRuleId?: string | undefined;
@@ -469,6 +483,10 @@ export interface DeleteBucketLifecycleRequest {
469
483
  Bucket: string | undefined;
470
484
  ExpectedBucketOwner?: string | undefined;
471
485
  }
486
+ export interface DeleteBucketMetadataTableConfigurationRequest {
487
+ Bucket: string | undefined;
488
+ ExpectedBucketOwner?: string | undefined;
489
+ }
472
490
  export interface DeleteBucketMetricsConfigurationRequest {
473
491
  Bucket: string | undefined;
474
492
  Id: string | undefined;
@@ -937,6 +955,35 @@ export interface GetBucketLoggingRequest {
937
955
  Bucket: string | undefined;
938
956
  ExpectedBucketOwner?: string | undefined;
939
957
  }
958
+ export interface ErrorDetails {
959
+ ErrorCode?: string | undefined;
960
+ ErrorMessage?: string | undefined;
961
+ }
962
+ export interface S3TablesDestinationResult {
963
+ TableBucketArn: string | undefined;
964
+ TableName: string | undefined;
965
+ TableArn: string | undefined;
966
+ TableNamespace: string | undefined;
967
+ }
968
+ export interface MetadataTableConfigurationResult {
969
+ S3TablesDestinationResult: S3TablesDestinationResult | undefined;
970
+ }
971
+ export interface GetBucketMetadataTableConfigurationResult {
972
+ MetadataTableConfigurationResult:
973
+ | MetadataTableConfigurationResult
974
+ | undefined;
975
+ Status: string | undefined;
976
+ Error?: ErrorDetails | undefined;
977
+ }
978
+ export interface GetBucketMetadataTableConfigurationOutput {
979
+ GetBucketMetadataTableConfigurationResult?:
980
+ | GetBucketMetadataTableConfigurationResult
981
+ | undefined;
982
+ }
983
+ export interface GetBucketMetadataTableConfigurationRequest {
984
+ Bucket: string | undefined;
985
+ ExpectedBucketOwner?: string | undefined;
986
+ }
940
987
  export interface MetricsAndOperator {
941
988
  Prefix?: string | undefined;
942
989
  Tags?: Tag[] | undefined;
@@ -1946,66 +1993,6 @@ export interface PutBucketAnalyticsConfigurationRequest {
1946
1993
  export interface CORSConfiguration {
1947
1994
  CORSRules: CORSRule[] | undefined;
1948
1995
  }
1949
- export interface PutBucketCorsRequest {
1950
- Bucket: string | undefined;
1951
- CORSConfiguration: CORSConfiguration | undefined;
1952
- ContentMD5?: string | undefined;
1953
- ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
1954
- ExpectedBucketOwner?: string | undefined;
1955
- }
1956
- export interface PutBucketEncryptionRequest {
1957
- Bucket: string | undefined;
1958
- ContentMD5?: string | undefined;
1959
- ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
1960
- ServerSideEncryptionConfiguration:
1961
- | ServerSideEncryptionConfiguration
1962
- | undefined;
1963
- ExpectedBucketOwner?: string | undefined;
1964
- }
1965
- export interface PutBucketIntelligentTieringConfigurationRequest {
1966
- Bucket: string | undefined;
1967
- Id: string | undefined;
1968
- IntelligentTieringConfiguration: IntelligentTieringConfiguration | undefined;
1969
- }
1970
- export interface PutBucketInventoryConfigurationRequest {
1971
- Bucket: string | undefined;
1972
- Id: string | undefined;
1973
- InventoryConfiguration: InventoryConfiguration | undefined;
1974
- ExpectedBucketOwner?: string | undefined;
1975
- }
1976
- export interface PutBucketLifecycleConfigurationOutput {
1977
- TransitionDefaultMinimumObjectSize?:
1978
- | TransitionDefaultMinimumObjectSize
1979
- | undefined;
1980
- }
1981
- export interface BucketLifecycleConfiguration {
1982
- Rules: LifecycleRule[] | undefined;
1983
- }
1984
- export interface PutBucketLifecycleConfigurationRequest {
1985
- Bucket: string | undefined;
1986
- ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
1987
- LifecycleConfiguration?: BucketLifecycleConfiguration | undefined;
1988
- ExpectedBucketOwner?: string | undefined;
1989
- TransitionDefaultMinimumObjectSize?:
1990
- | TransitionDefaultMinimumObjectSize
1991
- | undefined;
1992
- }
1993
- export interface BucketLoggingStatus {
1994
- LoggingEnabled?: LoggingEnabled | undefined;
1995
- }
1996
- export interface PutBucketLoggingRequest {
1997
- Bucket: string | undefined;
1998
- BucketLoggingStatus: BucketLoggingStatus | undefined;
1999
- ContentMD5?: string | undefined;
2000
- ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
2001
- ExpectedBucketOwner?: string | undefined;
2002
- }
2003
- export interface PutBucketMetricsConfigurationRequest {
2004
- Bucket: string | undefined;
2005
- Id: string | undefined;
2006
- MetricsConfiguration: MetricsConfiguration | undefined;
2007
- ExpectedBucketOwner?: string | undefined;
2008
- }
2009
1996
  export declare const CompleteMultipartUploadOutputFilterSensitiveLog: (
2010
1997
  obj: CompleteMultipartUploadOutput
2011
1998
  ) => any;
@@ -2085,9 +2072,3 @@ export declare const ListBucketInventoryConfigurationsOutputFilterSensitiveLog:
2085
2072
  export declare const ListPartsRequestFilterSensitiveLog: (
2086
2073
  obj: ListPartsRequest
2087
2074
  ) => any;
2088
- export declare const PutBucketEncryptionRequestFilterSensitiveLog: (
2089
- obj: PutBucketEncryptionRequest
2090
- ) => any;
2091
- export declare const PutBucketInventoryConfigurationRequestFilterSensitiveLog: (
2092
- obj: PutBucketInventoryConfigurationRequest
2093
- ) => any;
@@ -4,9 +4,15 @@ import {
4
4
  AccessControlPolicy,
5
5
  BucketVersioningStatus,
6
6
  ChecksumAlgorithm,
7
+ CORSConfiguration,
7
8
  ErrorDocument,
8
9
  Grant,
9
10
  IndexDocument,
11
+ IntelligentTieringConfiguration,
12
+ InventoryConfiguration,
13
+ LifecycleRule,
14
+ LoggingEnabled,
15
+ MetricsConfiguration,
10
16
  NotificationConfiguration,
11
17
  ObjectCannedACL,
12
18
  ObjectLockConfiguration,
@@ -24,10 +30,72 @@ import {
24
30
  RequestPayer,
25
31
  RoutingRule,
26
32
  ServerSideEncryption,
33
+ ServerSideEncryptionConfiguration,
27
34
  StorageClass,
28
35
  Tag,
36
+ TransitionDefaultMinimumObjectSize,
29
37
  } from "./models_0";
30
38
  import { S3ServiceException as __BaseException } from "./S3ServiceException";
39
+ export interface PutBucketCorsRequest {
40
+ Bucket: string | undefined;
41
+ CORSConfiguration: CORSConfiguration | undefined;
42
+ ContentMD5?: string | undefined;
43
+ ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
44
+ ExpectedBucketOwner?: string | undefined;
45
+ }
46
+ export interface PutBucketEncryptionRequest {
47
+ Bucket: string | undefined;
48
+ ContentMD5?: string | undefined;
49
+ ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
50
+ ServerSideEncryptionConfiguration:
51
+ | ServerSideEncryptionConfiguration
52
+ | undefined;
53
+ ExpectedBucketOwner?: string | undefined;
54
+ }
55
+ export interface PutBucketIntelligentTieringConfigurationRequest {
56
+ Bucket: string | undefined;
57
+ Id: string | undefined;
58
+ IntelligentTieringConfiguration: IntelligentTieringConfiguration | undefined;
59
+ }
60
+ export interface PutBucketInventoryConfigurationRequest {
61
+ Bucket: string | undefined;
62
+ Id: string | undefined;
63
+ InventoryConfiguration: InventoryConfiguration | undefined;
64
+ ExpectedBucketOwner?: string | undefined;
65
+ }
66
+ export interface PutBucketLifecycleConfigurationOutput {
67
+ TransitionDefaultMinimumObjectSize?:
68
+ | TransitionDefaultMinimumObjectSize
69
+ | undefined;
70
+ }
71
+ export interface BucketLifecycleConfiguration {
72
+ Rules: LifecycleRule[] | undefined;
73
+ }
74
+ export interface PutBucketLifecycleConfigurationRequest {
75
+ Bucket: string | undefined;
76
+ ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
77
+ LifecycleConfiguration?: BucketLifecycleConfiguration | undefined;
78
+ ExpectedBucketOwner?: string | undefined;
79
+ TransitionDefaultMinimumObjectSize?:
80
+ | TransitionDefaultMinimumObjectSize
81
+ | undefined;
82
+ }
83
+ export interface BucketLoggingStatus {
84
+ LoggingEnabled?: LoggingEnabled | undefined;
85
+ }
86
+ export interface PutBucketLoggingRequest {
87
+ Bucket: string | undefined;
88
+ BucketLoggingStatus: BucketLoggingStatus | undefined;
89
+ ContentMD5?: string | undefined;
90
+ ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
91
+ ExpectedBucketOwner?: string | undefined;
92
+ }
93
+ export interface PutBucketMetricsConfigurationRequest {
94
+ Bucket: string | undefined;
95
+ Id: string | undefined;
96
+ MetricsConfiguration: MetricsConfiguration | undefined;
97
+ ExpectedBucketOwner?: string | undefined;
98
+ }
31
99
  export interface PutBucketNotificationConfigurationRequest {
32
100
  Bucket: string | undefined;
33
101
  NotificationConfiguration: NotificationConfiguration | undefined;
@@ -625,6 +693,12 @@ export interface WriteGetObjectResponseRequest {
625
693
  VersionId?: string | undefined;
626
694
  BucketKeyEnabled?: boolean | undefined;
627
695
  }
696
+ export declare const PutBucketEncryptionRequestFilterSensitiveLog: (
697
+ obj: PutBucketEncryptionRequest
698
+ ) => any;
699
+ export declare const PutBucketInventoryConfigurationRequestFilterSensitiveLog: (
700
+ obj: PutBucketInventoryConfigurationRequest
701
+ ) => any;
628
702
  export declare const PutObjectOutputFilterSensitiveLog: (
629
703
  obj: PutObjectOutput
630
704
  ) => any;
@@ -23,6 +23,10 @@ import {
23
23
  CreateBucketCommandInput,
24
24
  CreateBucketCommandOutput,
25
25
  } from "../commands/CreateBucketCommand";
26
+ import {
27
+ CreateBucketMetadataTableConfigurationCommandInput,
28
+ CreateBucketMetadataTableConfigurationCommandOutput,
29
+ } from "../commands/CreateBucketMetadataTableConfigurationCommand";
26
30
  import {
27
31
  CreateMultipartUploadCommandInput,
28
32
  CreateMultipartUploadCommandOutput,
@@ -59,6 +63,10 @@ import {
59
63
  DeleteBucketLifecycleCommandInput,
60
64
  DeleteBucketLifecycleCommandOutput,
61
65
  } from "../commands/DeleteBucketLifecycleCommand";
66
+ import {
67
+ DeleteBucketMetadataTableConfigurationCommandInput,
68
+ DeleteBucketMetadataTableConfigurationCommandOutput,
69
+ } from "../commands/DeleteBucketMetadataTableConfigurationCommand";
62
70
  import {
63
71
  DeleteBucketMetricsConfigurationCommandInput,
64
72
  DeleteBucketMetricsConfigurationCommandOutput,
@@ -139,6 +147,10 @@ import {
139
147
  GetBucketLoggingCommandInput,
140
148
  GetBucketLoggingCommandOutput,
141
149
  } from "../commands/GetBucketLoggingCommand";
150
+ import {
151
+ GetBucketMetadataTableConfigurationCommandInput,
152
+ GetBucketMetadataTableConfigurationCommandOutput,
153
+ } from "../commands/GetBucketMetadataTableConfigurationCommand";
142
154
  import {
143
155
  GetBucketMetricsConfigurationCommandInput,
144
156
  GetBucketMetricsConfigurationCommandOutput,
@@ -403,6 +415,10 @@ export declare const se_CreateBucketCommand: (
403
415
  input: CreateBucketCommandInput,
404
416
  context: __SerdeContext
405
417
  ) => Promise<__HttpRequest>;
418
+ export declare const se_CreateBucketMetadataTableConfigurationCommand: (
419
+ input: CreateBucketMetadataTableConfigurationCommandInput,
420
+ context: __SerdeContext
421
+ ) => Promise<__HttpRequest>;
406
422
  export declare const se_CreateMultipartUploadCommand: (
407
423
  input: CreateMultipartUploadCommandInput,
408
424
  context: __SerdeContext
@@ -439,6 +455,10 @@ export declare const se_DeleteBucketLifecycleCommand: (
439
455
  input: DeleteBucketLifecycleCommandInput,
440
456
  context: __SerdeContext
441
457
  ) => Promise<__HttpRequest>;
458
+ export declare const se_DeleteBucketMetadataTableConfigurationCommand: (
459
+ input: DeleteBucketMetadataTableConfigurationCommandInput,
460
+ context: __SerdeContext
461
+ ) => Promise<__HttpRequest>;
442
462
  export declare const se_DeleteBucketMetricsConfigurationCommand: (
443
463
  input: DeleteBucketMetricsConfigurationCommandInput,
444
464
  context: __SerdeContext
@@ -519,6 +539,10 @@ export declare const se_GetBucketLoggingCommand: (
519
539
  input: GetBucketLoggingCommandInput,
520
540
  context: __SerdeContext
521
541
  ) => Promise<__HttpRequest>;
542
+ export declare const se_GetBucketMetadataTableConfigurationCommand: (
543
+ input: GetBucketMetadataTableConfigurationCommandInput,
544
+ context: __SerdeContext
545
+ ) => Promise<__HttpRequest>;
522
546
  export declare const se_GetBucketMetricsConfigurationCommand: (
523
547
  input: GetBucketMetricsConfigurationCommandInput,
524
548
  context: __SerdeContext
@@ -783,6 +807,10 @@ export declare const de_CreateBucketCommand: (
783
807
  output: __HttpResponse,
784
808
  context: __SerdeContext
785
809
  ) => Promise<CreateBucketCommandOutput>;
810
+ export declare const de_CreateBucketMetadataTableConfigurationCommand: (
811
+ output: __HttpResponse,
812
+ context: __SerdeContext
813
+ ) => Promise<CreateBucketMetadataTableConfigurationCommandOutput>;
786
814
  export declare const de_CreateMultipartUploadCommand: (
787
815
  output: __HttpResponse,
788
816
  context: __SerdeContext
@@ -819,6 +847,10 @@ export declare const de_DeleteBucketLifecycleCommand: (
819
847
  output: __HttpResponse,
820
848
  context: __SerdeContext
821
849
  ) => Promise<DeleteBucketLifecycleCommandOutput>;
850
+ export declare const de_DeleteBucketMetadataTableConfigurationCommand: (
851
+ output: __HttpResponse,
852
+ context: __SerdeContext
853
+ ) => Promise<DeleteBucketMetadataTableConfigurationCommandOutput>;
822
854
  export declare const de_DeleteBucketMetricsConfigurationCommand: (
823
855
  output: __HttpResponse,
824
856
  context: __SerdeContext
@@ -899,6 +931,10 @@ export declare const de_GetBucketLoggingCommand: (
899
931
  output: __HttpResponse,
900
932
  context: __SerdeContext
901
933
  ) => Promise<GetBucketLoggingCommandOutput>;
934
+ export declare const de_GetBucketMetadataTableConfigurationCommand: (
935
+ output: __HttpResponse,
936
+ context: __SerdeContext
937
+ ) => Promise<GetBucketMetadataTableConfigurationCommandOutput>;
902
938
  export declare const de_GetBucketMetricsConfigurationCommand: (
903
939
  output: __HttpResponse,
904
940
  context: __SerdeContext