@@ -18,6 +18,11 @@ import {
18
18
CreateBucketCommandInput ,
19
19
CreateBucketCommandOutput ,
20
20
} from "./commands/CreateBucketCommand" ;
21
+ import {
22
+ CreateBucketMetadataTableConfigurationCommand ,
23
+ CreateBucketMetadataTableConfigurationCommandInput ,
24
+ CreateBucketMetadataTableConfigurationCommandOutput ,
25
+ } from "./commands/CreateBucketMetadataTableConfigurationCommand" ;
21
26
import {
22
27
CreateMultipartUploadCommand ,
23
28
CreateMultipartUploadCommandInput ,
@@ -63,6 +68,11 @@ import {
63
68
DeleteBucketLifecycleCommandInput ,
64
69
DeleteBucketLifecycleCommandOutput ,
65
70
} from "./commands/DeleteBucketLifecycleCommand" ;
71
+ import {
72
+ DeleteBucketMetadataTableConfigurationCommand ,
73
+ DeleteBucketMetadataTableConfigurationCommandInput ,
74
+ DeleteBucketMetadataTableConfigurationCommandOutput ,
75
+ } from "./commands/DeleteBucketMetadataTableConfigurationCommand" ;
66
76
import {
67
77
DeleteBucketMetricsConfigurationCommand ,
68
78
DeleteBucketMetricsConfigurationCommandInput ,
@@ -163,6 +173,11 @@ import {
163
173
GetBucketLoggingCommandInput ,
164
174
GetBucketLoggingCommandOutput ,
165
175
} from "./commands/GetBucketLoggingCommand" ;
176
+ import {
177
+ GetBucketMetadataTableConfigurationCommand ,
178
+ GetBucketMetadataTableConfigurationCommandInput ,
179
+ GetBucketMetadataTableConfigurationCommandOutput ,
180
+ } from "./commands/GetBucketMetadataTableConfigurationCommand" ;
166
181
import {
167
182
GetBucketMetricsConfigurationCommand ,
168
183
GetBucketMetricsConfigurationCommandInput ,
@@ -448,6 +463,7 @@ const commands = {
448
463
CompleteMultipartUploadCommand,
449
464
CopyObjectCommand,
450
465
CreateBucketCommand,
466
+ CreateBucketMetadataTableConfigurationCommand,
451
467
CreateMultipartUploadCommand,
452
468
CreateSessionCommand,
453
469
DeleteBucketCommand,
@@ -457,6 +473,7 @@ const commands = {
457
473
DeleteBucketIntelligentTieringConfigurationCommand,
458
474
DeleteBucketInventoryConfigurationCommand,
459
475
DeleteBucketLifecycleCommand,
476
+ DeleteBucketMetadataTableConfigurationCommand,
460
477
DeleteBucketMetricsConfigurationCommand,
461
478
DeleteBucketOwnershipControlsCommand,
462
479
DeleteBucketPolicyCommand,
@@ -477,6 +494,7 @@ const commands = {
477
494
GetBucketLifecycleConfigurationCommand,
478
495
GetBucketLocationCommand,
479
496
GetBucketLoggingCommand,
497
+ GetBucketMetadataTableConfigurationCommand,
480
498
GetBucketMetricsConfigurationCommand,
481
499
GetBucketNotificationConfigurationCommand,
482
500
GetBucketOwnershipControlsCommand,
@@ -598,6 +616,23 @@ export interface S3 {
598
616
cb : ( err : any , data ?: CreateBucketCommandOutput ) => void
599
617
) : void ;
600
618
619
+ /**
620
+ * @see {@link CreateBucketMetadataTableConfigurationCommand }
621
+ */
622
+ createBucketMetadataTableConfiguration (
623
+ args : CreateBucketMetadataTableConfigurationCommandInput ,
624
+ options ?: __HttpHandlerOptions
625
+ ) : Promise < CreateBucketMetadataTableConfigurationCommandOutput > ;
626
+ createBucketMetadataTableConfiguration (
627
+ args : CreateBucketMetadataTableConfigurationCommandInput ,
628
+ cb : ( err : any , data ?: CreateBucketMetadataTableConfigurationCommandOutput ) => void
629
+ ) : void ;
630
+ createBucketMetadataTableConfiguration (
631
+ args : CreateBucketMetadataTableConfigurationCommandInput ,
632
+ options : __HttpHandlerOptions ,
633
+ cb : ( err : any , data ?: CreateBucketMetadataTableConfigurationCommandOutput ) => void
634
+ ) : void ;
635
+
601
636
/**
602
637
* @see {@link CreateMultipartUploadCommand }
603
638
*/
@@ -739,6 +774,23 @@ export interface S3 {
739
774
cb : ( err : any , data ?: DeleteBucketLifecycleCommandOutput ) => void
740
775
) : void ;
741
776
777
+ /**
778
+ * @see {@link DeleteBucketMetadataTableConfigurationCommand }
779
+ */
780
+ deleteBucketMetadataTableConfiguration (
781
+ args : DeleteBucketMetadataTableConfigurationCommandInput ,
782
+ options ?: __HttpHandlerOptions
783
+ ) : Promise < DeleteBucketMetadataTableConfigurationCommandOutput > ;
784
+ deleteBucketMetadataTableConfiguration (
785
+ args : DeleteBucketMetadataTableConfigurationCommandInput ,
786
+ cb : ( err : any , data ?: DeleteBucketMetadataTableConfigurationCommandOutput ) => void
787
+ ) : void ;
788
+ deleteBucketMetadataTableConfiguration (
789
+ args : DeleteBucketMetadataTableConfigurationCommandInput ,
790
+ options : __HttpHandlerOptions ,
791
+ cb : ( err : any , data ?: DeleteBucketMetadataTableConfigurationCommandOutput ) => void
792
+ ) : void ;
793
+
742
794
/**
743
795
* @see {@link DeleteBucketMetricsConfigurationCommand }
744
796
*/
@@ -1055,6 +1107,23 @@ export interface S3 {
1055
1107
cb : ( err : any , data ?: GetBucketLoggingCommandOutput ) => void
1056
1108
) : void ;
1057
1109
1110
+ /**
1111
+ * @see {@link GetBucketMetadataTableConfigurationCommand }
1112
+ */
1113
+ getBucketMetadataTableConfiguration (
1114
+ args : GetBucketMetadataTableConfigurationCommandInput ,
1115
+ options ?: __HttpHandlerOptions
1116
+ ) : Promise < GetBucketMetadataTableConfigurationCommandOutput > ;
1117
+ getBucketMetadataTableConfiguration (
1118
+ args : GetBucketMetadataTableConfigurationCommandInput ,
1119
+ cb : ( err : any , data ?: GetBucketMetadataTableConfigurationCommandOutput ) => void
1120
+ ) : void ;
1121
+ getBucketMetadataTableConfiguration (
1122
+ args : GetBucketMetadataTableConfigurationCommandInput ,
1123
+ options : __HttpHandlerOptions ,
1124
+ cb : ( err : any , data ?: GetBucketMetadataTableConfigurationCommandOutput ) => void
1125
+ ) : void ;
1126
+
1058
1127
/**
1059
1128
* @see {@link GetBucketMetricsConfigurationCommand }
1060
1129
*/
0 commit comments