@aws-sdk/client-s3-control 3.777.0 → 3.779.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/README.md +32 -0
- package/dist-cjs/endpoint/endpointResolver.js +1 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/index.js +482 -201
- package/dist-es/S3Control.js +8 -0
- package/dist-es/commands/CreateAccessPointCommand.js +1 -0
- package/dist-es/commands/DeleteAccessPointScopeCommand.js +30 -0
- package/dist-es/commands/GetAccessPointScopeCommand.js +30 -0
- package/dist-es/commands/ListAccessPointsForDirectoryBucketsCommand.js +29 -0
- package/dist-es/commands/PutAccessPointScopeCommand.js +30 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoint/endpointResolver.js +1 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +10 -0
- package/dist-es/pagination/ListAccessPointsForDirectoryBucketsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restXml.js +221 -51
- package/dist-types/S3Control.d.ts +29 -0
- package/dist-types/S3ControlClient.d.ts +6 -2
- package/dist-types/commands/CreateAccessPointCommand.d.ts +16 -5
- package/dist-types/commands/DeleteAccessPointCommand.d.ts +1 -4
- package/dist-types/commands/DeleteAccessPointPolicyCommand.d.ts +1 -4
- package/dist-types/commands/DeleteAccessPointScopeCommand.d.ts +78 -0
- package/dist-types/commands/GetAccessPointCommand.d.ts +1 -4
- package/dist-types/commands/GetAccessPointPolicyCommand.d.ts +1 -4
- package/dist-types/commands/GetAccessPointScopeCommand.d.ts +84 -0
- package/dist-types/commands/ListAccessPointsForDirectoryBucketsCommand.d.ts +92 -0
- package/dist-types/commands/ListJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListMultiRegionAccessPointsCommand.d.ts +1 -1
- package/dist-types/commands/ListRegionalBucketsCommand.d.ts +1 -1
- package/dist-types/commands/ListStorageLensConfigurationsCommand.d.ts +1 -2
- package/dist-types/commands/PutAccessPointPolicyCommand.d.ts +1 -4
- package/dist-types/commands/PutAccessPointScopeCommand.d.ts +128 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +141 -147
- package/dist-types/models/models_1.d.ts +172 -3
- package/dist-types/pagination/ListAccessPointsForDirectoryBucketsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restXml.d.ts +36 -0
- package/dist-types/ts3.4/S3Control.d.ts +75 -0
- package/dist-types/ts3.4/S3ControlClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DeleteAccessPointScopeCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetAccessPointScopeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAccessPointsForDirectoryBucketsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListMultiRegionAccessPointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListRegionalBucketsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStorageLensConfigurationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/PutAccessPointScopeCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +38 -34
- package/dist-types/ts3.4/models/models_1.d.ts +42 -0
- package/dist-types/ts3.4/pagination/ListAccessPointsForDirectoryBucketsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +48 -0
- package/package.json +1 -1
|
@@ -18,6 +18,7 @@ import { DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput } from ".
|
|
|
18
18
|
import { DeleteAccessPointForObjectLambdaCommandInput, DeleteAccessPointForObjectLambdaCommandOutput } from "../commands/DeleteAccessPointForObjectLambdaCommand";
|
|
19
19
|
import { DeleteAccessPointPolicyCommandInput, DeleteAccessPointPolicyCommandOutput } from "../commands/DeleteAccessPointPolicyCommand";
|
|
20
20
|
import { DeleteAccessPointPolicyForObjectLambdaCommandInput, DeleteAccessPointPolicyForObjectLambdaCommandOutput } from "../commands/DeleteAccessPointPolicyForObjectLambdaCommand";
|
|
21
|
+
import { DeleteAccessPointScopeCommandInput, DeleteAccessPointScopeCommandOutput } from "../commands/DeleteAccessPointScopeCommand";
|
|
21
22
|
import { DeleteBucketCommandInput, DeleteBucketCommandOutput } from "../commands/DeleteBucketCommand";
|
|
22
23
|
import { DeleteBucketLifecycleConfigurationCommandInput, DeleteBucketLifecycleConfigurationCommandOutput } from "../commands/DeleteBucketLifecycleConfigurationCommand";
|
|
23
24
|
import { DeleteBucketPolicyCommandInput, DeleteBucketPolicyCommandOutput } from "../commands/DeleteBucketPolicyCommand";
|
|
@@ -44,6 +45,7 @@ import { GetAccessPointPolicyCommandInput, GetAccessPointPolicyCommandOutput } f
|
|
|
44
45
|
import { GetAccessPointPolicyForObjectLambdaCommandInput, GetAccessPointPolicyForObjectLambdaCommandOutput } from "../commands/GetAccessPointPolicyForObjectLambdaCommand";
|
|
45
46
|
import { GetAccessPointPolicyStatusCommandInput, GetAccessPointPolicyStatusCommandOutput } from "../commands/GetAccessPointPolicyStatusCommand";
|
|
46
47
|
import { GetAccessPointPolicyStatusForObjectLambdaCommandInput, GetAccessPointPolicyStatusForObjectLambdaCommandOutput } from "../commands/GetAccessPointPolicyStatusForObjectLambdaCommand";
|
|
48
|
+
import { GetAccessPointScopeCommandInput, GetAccessPointScopeCommandOutput } from "../commands/GetAccessPointScopeCommand";
|
|
47
49
|
import { GetBucketCommandInput, GetBucketCommandOutput } from "../commands/GetBucketCommand";
|
|
48
50
|
import { GetBucketLifecycleConfigurationCommandInput, GetBucketLifecycleConfigurationCommandOutput } from "../commands/GetBucketLifecycleConfigurationCommand";
|
|
49
51
|
import { GetBucketPolicyCommandInput, GetBucketPolicyCommandOutput } from "../commands/GetBucketPolicyCommand";
|
|
@@ -64,6 +66,7 @@ import { ListAccessGrantsCommandInput, ListAccessGrantsCommandOutput } from "../
|
|
|
64
66
|
import { ListAccessGrantsInstancesCommandInput, ListAccessGrantsInstancesCommandOutput } from "../commands/ListAccessGrantsInstancesCommand";
|
|
65
67
|
import { ListAccessGrantsLocationsCommandInput, ListAccessGrantsLocationsCommandOutput } from "../commands/ListAccessGrantsLocationsCommand";
|
|
66
68
|
import { ListAccessPointsCommandInput, ListAccessPointsCommandOutput } from "../commands/ListAccessPointsCommand";
|
|
69
|
+
import { ListAccessPointsForDirectoryBucketsCommandInput, ListAccessPointsForDirectoryBucketsCommandOutput } from "../commands/ListAccessPointsForDirectoryBucketsCommand";
|
|
67
70
|
import { ListAccessPointsForObjectLambdaCommandInput, ListAccessPointsForObjectLambdaCommandOutput } from "../commands/ListAccessPointsForObjectLambdaCommand";
|
|
68
71
|
import { ListCallerAccessGrantsCommandInput, ListCallerAccessGrantsCommandOutput } from "../commands/ListCallerAccessGrantsCommand";
|
|
69
72
|
import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
|
|
@@ -76,6 +79,7 @@ import { PutAccessGrantsInstanceResourcePolicyCommandInput, PutAccessGrantsInsta
|
|
|
76
79
|
import { PutAccessPointConfigurationForObjectLambdaCommandInput, PutAccessPointConfigurationForObjectLambdaCommandOutput } from "../commands/PutAccessPointConfigurationForObjectLambdaCommand";
|
|
77
80
|
import { PutAccessPointPolicyCommandInput, PutAccessPointPolicyCommandOutput } from "../commands/PutAccessPointPolicyCommand";
|
|
78
81
|
import { PutAccessPointPolicyForObjectLambdaCommandInput, PutAccessPointPolicyForObjectLambdaCommandOutput } from "../commands/PutAccessPointPolicyForObjectLambdaCommand";
|
|
82
|
+
import { PutAccessPointScopeCommandInput, PutAccessPointScopeCommandOutput } from "../commands/PutAccessPointScopeCommand";
|
|
79
83
|
import { PutBucketLifecycleConfigurationCommandInput, PutBucketLifecycleConfigurationCommandOutput } from "../commands/PutBucketLifecycleConfigurationCommand";
|
|
80
84
|
import { PutBucketPolicyCommandInput, PutBucketPolicyCommandOutput } from "../commands/PutBucketPolicyCommand";
|
|
81
85
|
import { PutBucketReplicationCommandInput, PutBucketReplicationCommandOutput } from "../commands/PutBucketReplicationCommand";
|
|
@@ -165,6 +169,10 @@ export declare const se_DeleteAccessPointPolicyCommand: (input: DeleteAccessPoin
|
|
|
165
169
|
* serializeAws_restXmlDeleteAccessPointPolicyForObjectLambdaCommand
|
|
166
170
|
*/
|
|
167
171
|
export declare const se_DeleteAccessPointPolicyForObjectLambdaCommand: (input: DeleteAccessPointPolicyForObjectLambdaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
172
|
+
/**
|
|
173
|
+
* serializeAws_restXmlDeleteAccessPointScopeCommand
|
|
174
|
+
*/
|
|
175
|
+
export declare const se_DeleteAccessPointScopeCommand: (input: DeleteAccessPointScopeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
168
176
|
/**
|
|
169
177
|
* serializeAws_restXmlDeleteBucketCommand
|
|
170
178
|
*/
|
|
@@ -269,6 +277,10 @@ export declare const se_GetAccessPointPolicyStatusCommand: (input: GetAccessPoin
|
|
|
269
277
|
* serializeAws_restXmlGetAccessPointPolicyStatusForObjectLambdaCommand
|
|
270
278
|
*/
|
|
271
279
|
export declare const se_GetAccessPointPolicyStatusForObjectLambdaCommand: (input: GetAccessPointPolicyStatusForObjectLambdaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
280
|
+
/**
|
|
281
|
+
* serializeAws_restXmlGetAccessPointScopeCommand
|
|
282
|
+
*/
|
|
283
|
+
export declare const se_GetAccessPointScopeCommand: (input: GetAccessPointScopeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
272
284
|
/**
|
|
273
285
|
* serializeAws_restXmlGetBucketCommand
|
|
274
286
|
*/
|
|
@@ -349,6 +361,10 @@ export declare const se_ListAccessGrantsLocationsCommand: (input: ListAccessGran
|
|
|
349
361
|
* serializeAws_restXmlListAccessPointsCommand
|
|
350
362
|
*/
|
|
351
363
|
export declare const se_ListAccessPointsCommand: (input: ListAccessPointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
364
|
+
/**
|
|
365
|
+
* serializeAws_restXmlListAccessPointsForDirectoryBucketsCommand
|
|
366
|
+
*/
|
|
367
|
+
export declare const se_ListAccessPointsForDirectoryBucketsCommand: (input: ListAccessPointsForDirectoryBucketsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
352
368
|
/**
|
|
353
369
|
* serializeAws_restXmlListAccessPointsForObjectLambdaCommand
|
|
354
370
|
*/
|
|
@@ -397,6 +413,10 @@ export declare const se_PutAccessPointPolicyCommand: (input: PutAccessPointPolic
|
|
|
397
413
|
* serializeAws_restXmlPutAccessPointPolicyForObjectLambdaCommand
|
|
398
414
|
*/
|
|
399
415
|
export declare const se_PutAccessPointPolicyForObjectLambdaCommand: (input: PutAccessPointPolicyForObjectLambdaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
416
|
+
/**
|
|
417
|
+
* serializeAws_restXmlPutAccessPointScopeCommand
|
|
418
|
+
*/
|
|
419
|
+
export declare const se_PutAccessPointScopeCommand: (input: PutAccessPointScopeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
400
420
|
/**
|
|
401
421
|
* serializeAws_restXmlPutBucketLifecycleConfigurationCommand
|
|
402
422
|
*/
|
|
@@ -537,6 +557,10 @@ export declare const de_DeleteAccessPointPolicyCommand: (output: __HttpResponse,
|
|
|
537
557
|
* deserializeAws_restXmlDeleteAccessPointPolicyForObjectLambdaCommand
|
|
538
558
|
*/
|
|
539
559
|
export declare const de_DeleteAccessPointPolicyForObjectLambdaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAccessPointPolicyForObjectLambdaCommandOutput>;
|
|
560
|
+
/**
|
|
561
|
+
* deserializeAws_restXmlDeleteAccessPointScopeCommand
|
|
562
|
+
*/
|
|
563
|
+
export declare const de_DeleteAccessPointScopeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAccessPointScopeCommandOutput>;
|
|
540
564
|
/**
|
|
541
565
|
* deserializeAws_restXmlDeleteBucketCommand
|
|
542
566
|
*/
|
|
@@ -641,6 +665,10 @@ export declare const de_GetAccessPointPolicyStatusCommand: (output: __HttpRespon
|
|
|
641
665
|
* deserializeAws_restXmlGetAccessPointPolicyStatusForObjectLambdaCommand
|
|
642
666
|
*/
|
|
643
667
|
export declare const de_GetAccessPointPolicyStatusForObjectLambdaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAccessPointPolicyStatusForObjectLambdaCommandOutput>;
|
|
668
|
+
/**
|
|
669
|
+
* deserializeAws_restXmlGetAccessPointScopeCommand
|
|
670
|
+
*/
|
|
671
|
+
export declare const de_GetAccessPointScopeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAccessPointScopeCommandOutput>;
|
|
644
672
|
/**
|
|
645
673
|
* deserializeAws_restXmlGetBucketCommand
|
|
646
674
|
*/
|
|
@@ -721,6 +749,10 @@ export declare const de_ListAccessGrantsLocationsCommand: (output: __HttpRespons
|
|
|
721
749
|
* deserializeAws_restXmlListAccessPointsCommand
|
|
722
750
|
*/
|
|
723
751
|
export declare const de_ListAccessPointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAccessPointsCommandOutput>;
|
|
752
|
+
/**
|
|
753
|
+
* deserializeAws_restXmlListAccessPointsForDirectoryBucketsCommand
|
|
754
|
+
*/
|
|
755
|
+
export declare const de_ListAccessPointsForDirectoryBucketsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAccessPointsForDirectoryBucketsCommandOutput>;
|
|
724
756
|
/**
|
|
725
757
|
* deserializeAws_restXmlListAccessPointsForObjectLambdaCommand
|
|
726
758
|
*/
|
|
@@ -769,6 +801,10 @@ export declare const de_PutAccessPointPolicyCommand: (output: __HttpResponse, co
|
|
|
769
801
|
* deserializeAws_restXmlPutAccessPointPolicyForObjectLambdaCommand
|
|
770
802
|
*/
|
|
771
803
|
export declare const de_PutAccessPointPolicyForObjectLambdaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAccessPointPolicyForObjectLambdaCommandOutput>;
|
|
804
|
+
/**
|
|
805
|
+
* deserializeAws_restXmlPutAccessPointScopeCommand
|
|
806
|
+
*/
|
|
807
|
+
export declare const de_PutAccessPointScopeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAccessPointScopeCommandOutput>;
|
|
772
808
|
/**
|
|
773
809
|
* deserializeAws_restXmlPutBucketLifecycleConfigurationCommand
|
|
774
810
|
*/
|
|
@@ -71,6 +71,10 @@ import {
|
|
|
71
71
|
DeleteAccessPointPolicyForObjectLambdaCommandInput,
|
|
72
72
|
DeleteAccessPointPolicyForObjectLambdaCommandOutput,
|
|
73
73
|
} from "./commands/DeleteAccessPointPolicyForObjectLambdaCommand";
|
|
74
|
+
import {
|
|
75
|
+
DeleteAccessPointScopeCommandInput,
|
|
76
|
+
DeleteAccessPointScopeCommandOutput,
|
|
77
|
+
} from "./commands/DeleteAccessPointScopeCommand";
|
|
74
78
|
import {
|
|
75
79
|
DeleteBucketCommandInput,
|
|
76
80
|
DeleteBucketCommandOutput,
|
|
@@ -175,6 +179,10 @@ import {
|
|
|
175
179
|
GetAccessPointPolicyStatusForObjectLambdaCommandInput,
|
|
176
180
|
GetAccessPointPolicyStatusForObjectLambdaCommandOutput,
|
|
177
181
|
} from "./commands/GetAccessPointPolicyStatusForObjectLambdaCommand";
|
|
182
|
+
import {
|
|
183
|
+
GetAccessPointScopeCommandInput,
|
|
184
|
+
GetAccessPointScopeCommandOutput,
|
|
185
|
+
} from "./commands/GetAccessPointScopeCommand";
|
|
178
186
|
import {
|
|
179
187
|
GetBucketCommandInput,
|
|
180
188
|
GetBucketCommandOutput,
|
|
@@ -255,6 +263,10 @@ import {
|
|
|
255
263
|
ListAccessPointsCommandInput,
|
|
256
264
|
ListAccessPointsCommandOutput,
|
|
257
265
|
} from "./commands/ListAccessPointsCommand";
|
|
266
|
+
import {
|
|
267
|
+
ListAccessPointsForDirectoryBucketsCommandInput,
|
|
268
|
+
ListAccessPointsForDirectoryBucketsCommandOutput,
|
|
269
|
+
} from "./commands/ListAccessPointsForDirectoryBucketsCommand";
|
|
258
270
|
import {
|
|
259
271
|
ListAccessPointsForObjectLambdaCommandInput,
|
|
260
272
|
ListAccessPointsForObjectLambdaCommandOutput,
|
|
@@ -303,6 +315,10 @@ import {
|
|
|
303
315
|
PutAccessPointPolicyForObjectLambdaCommandInput,
|
|
304
316
|
PutAccessPointPolicyForObjectLambdaCommandOutput,
|
|
305
317
|
} from "./commands/PutAccessPointPolicyForObjectLambdaCommand";
|
|
318
|
+
import {
|
|
319
|
+
PutAccessPointScopeCommandInput,
|
|
320
|
+
PutAccessPointScopeCommandOutput,
|
|
321
|
+
} from "./commands/PutAccessPointScopeCommand";
|
|
306
322
|
import {
|
|
307
323
|
PutBucketLifecycleConfigurationCommandInput,
|
|
308
324
|
PutBucketLifecycleConfigurationCommandOutput,
|
|
@@ -628,6 +644,19 @@ export interface S3Control {
|
|
|
628
644
|
data?: DeleteAccessPointPolicyForObjectLambdaCommandOutput
|
|
629
645
|
) => void
|
|
630
646
|
): void;
|
|
647
|
+
deleteAccessPointScope(
|
|
648
|
+
args: DeleteAccessPointScopeCommandInput,
|
|
649
|
+
options?: __HttpHandlerOptions
|
|
650
|
+
): Promise<DeleteAccessPointScopeCommandOutput>;
|
|
651
|
+
deleteAccessPointScope(
|
|
652
|
+
args: DeleteAccessPointScopeCommandInput,
|
|
653
|
+
cb: (err: any, data?: DeleteAccessPointScopeCommandOutput) => void
|
|
654
|
+
): void;
|
|
655
|
+
deleteAccessPointScope(
|
|
656
|
+
args: DeleteAccessPointScopeCommandInput,
|
|
657
|
+
options: __HttpHandlerOptions,
|
|
658
|
+
cb: (err: any, data?: DeleteAccessPointScopeCommandOutput) => void
|
|
659
|
+
): void;
|
|
631
660
|
deleteBucket(
|
|
632
661
|
args: DeleteBucketCommandInput,
|
|
633
662
|
options?: __HttpHandlerOptions
|
|
@@ -1018,6 +1047,19 @@ export interface S3Control {
|
|
|
1018
1047
|
data?: GetAccessPointPolicyStatusForObjectLambdaCommandOutput
|
|
1019
1048
|
) => void
|
|
1020
1049
|
): void;
|
|
1050
|
+
getAccessPointScope(
|
|
1051
|
+
args: GetAccessPointScopeCommandInput,
|
|
1052
|
+
options?: __HttpHandlerOptions
|
|
1053
|
+
): Promise<GetAccessPointScopeCommandOutput>;
|
|
1054
|
+
getAccessPointScope(
|
|
1055
|
+
args: GetAccessPointScopeCommandInput,
|
|
1056
|
+
cb: (err: any, data?: GetAccessPointScopeCommandOutput) => void
|
|
1057
|
+
): void;
|
|
1058
|
+
getAccessPointScope(
|
|
1059
|
+
args: GetAccessPointScopeCommandInput,
|
|
1060
|
+
options: __HttpHandlerOptions,
|
|
1061
|
+
cb: (err: any, data?: GetAccessPointScopeCommandOutput) => void
|
|
1062
|
+
): void;
|
|
1021
1063
|
getBucket(
|
|
1022
1064
|
args: GetBucketCommandInput,
|
|
1023
1065
|
options?: __HttpHandlerOptions
|
|
@@ -1295,6 +1337,26 @@ export interface S3Control {
|
|
|
1295
1337
|
options: __HttpHandlerOptions,
|
|
1296
1338
|
cb: (err: any, data?: ListAccessPointsCommandOutput) => void
|
|
1297
1339
|
): void;
|
|
1340
|
+
listAccessPointsForDirectoryBuckets(): Promise<ListAccessPointsForDirectoryBucketsCommandOutput>;
|
|
1341
|
+
listAccessPointsForDirectoryBuckets(
|
|
1342
|
+
args: ListAccessPointsForDirectoryBucketsCommandInput,
|
|
1343
|
+
options?: __HttpHandlerOptions
|
|
1344
|
+
): Promise<ListAccessPointsForDirectoryBucketsCommandOutput>;
|
|
1345
|
+
listAccessPointsForDirectoryBuckets(
|
|
1346
|
+
args: ListAccessPointsForDirectoryBucketsCommandInput,
|
|
1347
|
+
cb: (
|
|
1348
|
+
err: any,
|
|
1349
|
+
data?: ListAccessPointsForDirectoryBucketsCommandOutput
|
|
1350
|
+
) => void
|
|
1351
|
+
): void;
|
|
1352
|
+
listAccessPointsForDirectoryBuckets(
|
|
1353
|
+
args: ListAccessPointsForDirectoryBucketsCommandInput,
|
|
1354
|
+
options: __HttpHandlerOptions,
|
|
1355
|
+
cb: (
|
|
1356
|
+
err: any,
|
|
1357
|
+
data?: ListAccessPointsForDirectoryBucketsCommandOutput
|
|
1358
|
+
) => void
|
|
1359
|
+
): void;
|
|
1298
1360
|
listAccessPointsForObjectLambda(): Promise<ListAccessPointsForObjectLambdaCommandOutput>;
|
|
1299
1361
|
listAccessPointsForObjectLambda(
|
|
1300
1362
|
args: ListAccessPointsForObjectLambdaCommandInput,
|
|
@@ -1476,6 +1538,19 @@ export interface S3Control {
|
|
|
1476
1538
|
data?: PutAccessPointPolicyForObjectLambdaCommandOutput
|
|
1477
1539
|
) => void
|
|
1478
1540
|
): void;
|
|
1541
|
+
putAccessPointScope(
|
|
1542
|
+
args: PutAccessPointScopeCommandInput,
|
|
1543
|
+
options?: __HttpHandlerOptions
|
|
1544
|
+
): Promise<PutAccessPointScopeCommandOutput>;
|
|
1545
|
+
putAccessPointScope(
|
|
1546
|
+
args: PutAccessPointScopeCommandInput,
|
|
1547
|
+
cb: (err: any, data?: PutAccessPointScopeCommandOutput) => void
|
|
1548
|
+
): void;
|
|
1549
|
+
putAccessPointScope(
|
|
1550
|
+
args: PutAccessPointScopeCommandInput,
|
|
1551
|
+
options: __HttpHandlerOptions,
|
|
1552
|
+
cb: (err: any, data?: PutAccessPointScopeCommandOutput) => void
|
|
1553
|
+
): void;
|
|
1479
1554
|
putBucketLifecycleConfiguration(
|
|
1480
1555
|
args: PutBucketLifecycleConfigurationCommandInput,
|
|
1481
1556
|
options?: __HttpHandlerOptions
|
|
@@ -123,6 +123,10 @@ import {
|
|
|
123
123
|
DeleteAccessPointPolicyForObjectLambdaCommandInput,
|
|
124
124
|
DeleteAccessPointPolicyForObjectLambdaCommandOutput,
|
|
125
125
|
} from "./commands/DeleteAccessPointPolicyForObjectLambdaCommand";
|
|
126
|
+
import {
|
|
127
|
+
DeleteAccessPointScopeCommandInput,
|
|
128
|
+
DeleteAccessPointScopeCommandOutput,
|
|
129
|
+
} from "./commands/DeleteAccessPointScopeCommand";
|
|
126
130
|
import {
|
|
127
131
|
DeleteBucketCommandInput,
|
|
128
132
|
DeleteBucketCommandOutput,
|
|
@@ -227,6 +231,10 @@ import {
|
|
|
227
231
|
GetAccessPointPolicyStatusForObjectLambdaCommandInput,
|
|
228
232
|
GetAccessPointPolicyStatusForObjectLambdaCommandOutput,
|
|
229
233
|
} from "./commands/GetAccessPointPolicyStatusForObjectLambdaCommand";
|
|
234
|
+
import {
|
|
235
|
+
GetAccessPointScopeCommandInput,
|
|
236
|
+
GetAccessPointScopeCommandOutput,
|
|
237
|
+
} from "./commands/GetAccessPointScopeCommand";
|
|
230
238
|
import {
|
|
231
239
|
GetBucketCommandInput,
|
|
232
240
|
GetBucketCommandOutput,
|
|
@@ -307,6 +315,10 @@ import {
|
|
|
307
315
|
ListAccessPointsCommandInput,
|
|
308
316
|
ListAccessPointsCommandOutput,
|
|
309
317
|
} from "./commands/ListAccessPointsCommand";
|
|
318
|
+
import {
|
|
319
|
+
ListAccessPointsForDirectoryBucketsCommandInput,
|
|
320
|
+
ListAccessPointsForDirectoryBucketsCommandOutput,
|
|
321
|
+
} from "./commands/ListAccessPointsForDirectoryBucketsCommand";
|
|
310
322
|
import {
|
|
311
323
|
ListAccessPointsForObjectLambdaCommandInput,
|
|
312
324
|
ListAccessPointsForObjectLambdaCommandOutput,
|
|
@@ -355,6 +367,10 @@ import {
|
|
|
355
367
|
PutAccessPointPolicyForObjectLambdaCommandInput,
|
|
356
368
|
PutAccessPointPolicyForObjectLambdaCommandOutput,
|
|
357
369
|
} from "./commands/PutAccessPointPolicyForObjectLambdaCommand";
|
|
370
|
+
import {
|
|
371
|
+
PutAccessPointScopeCommandInput,
|
|
372
|
+
PutAccessPointScopeCommandOutput,
|
|
373
|
+
} from "./commands/PutAccessPointScopeCommand";
|
|
358
374
|
import {
|
|
359
375
|
PutBucketLifecycleConfigurationCommandInput,
|
|
360
376
|
PutBucketLifecycleConfigurationCommandOutput,
|
|
@@ -449,6 +465,7 @@ export type ServiceInputTypes =
|
|
|
449
465
|
| DeleteAccessPointForObjectLambdaCommandInput
|
|
450
466
|
| DeleteAccessPointPolicyCommandInput
|
|
451
467
|
| DeleteAccessPointPolicyForObjectLambdaCommandInput
|
|
468
|
+
| DeleteAccessPointScopeCommandInput
|
|
452
469
|
| DeleteBucketCommandInput
|
|
453
470
|
| DeleteBucketLifecycleConfigurationCommandInput
|
|
454
471
|
| DeleteBucketPolicyCommandInput
|
|
@@ -475,6 +492,7 @@ export type ServiceInputTypes =
|
|
|
475
492
|
| GetAccessPointPolicyForObjectLambdaCommandInput
|
|
476
493
|
| GetAccessPointPolicyStatusCommandInput
|
|
477
494
|
| GetAccessPointPolicyStatusForObjectLambdaCommandInput
|
|
495
|
+
| GetAccessPointScopeCommandInput
|
|
478
496
|
| GetBucketCommandInput
|
|
479
497
|
| GetBucketLifecycleConfigurationCommandInput
|
|
480
498
|
| GetBucketPolicyCommandInput
|
|
@@ -495,6 +513,7 @@ export type ServiceInputTypes =
|
|
|
495
513
|
| ListAccessGrantsInstancesCommandInput
|
|
496
514
|
| ListAccessGrantsLocationsCommandInput
|
|
497
515
|
| ListAccessPointsCommandInput
|
|
516
|
+
| ListAccessPointsForDirectoryBucketsCommandInput
|
|
498
517
|
| ListAccessPointsForObjectLambdaCommandInput
|
|
499
518
|
| ListCallerAccessGrantsCommandInput
|
|
500
519
|
| ListJobsCommandInput
|
|
@@ -507,6 +526,7 @@ export type ServiceInputTypes =
|
|
|
507
526
|
| PutAccessPointConfigurationForObjectLambdaCommandInput
|
|
508
527
|
| PutAccessPointPolicyCommandInput
|
|
509
528
|
| PutAccessPointPolicyForObjectLambdaCommandInput
|
|
529
|
+
| PutAccessPointScopeCommandInput
|
|
510
530
|
| PutBucketLifecycleConfigurationCommandInput
|
|
511
531
|
| PutBucketPolicyCommandInput
|
|
512
532
|
| PutBucketReplicationCommandInput
|
|
@@ -543,6 +563,7 @@ export type ServiceOutputTypes =
|
|
|
543
563
|
| DeleteAccessPointForObjectLambdaCommandOutput
|
|
544
564
|
| DeleteAccessPointPolicyCommandOutput
|
|
545
565
|
| DeleteAccessPointPolicyForObjectLambdaCommandOutput
|
|
566
|
+
| DeleteAccessPointScopeCommandOutput
|
|
546
567
|
| DeleteBucketCommandOutput
|
|
547
568
|
| DeleteBucketLifecycleConfigurationCommandOutput
|
|
548
569
|
| DeleteBucketPolicyCommandOutput
|
|
@@ -569,6 +590,7 @@ export type ServiceOutputTypes =
|
|
|
569
590
|
| GetAccessPointPolicyForObjectLambdaCommandOutput
|
|
570
591
|
| GetAccessPointPolicyStatusCommandOutput
|
|
571
592
|
| GetAccessPointPolicyStatusForObjectLambdaCommandOutput
|
|
593
|
+
| GetAccessPointScopeCommandOutput
|
|
572
594
|
| GetBucketCommandOutput
|
|
573
595
|
| GetBucketLifecycleConfigurationCommandOutput
|
|
574
596
|
| GetBucketPolicyCommandOutput
|
|
@@ -589,6 +611,7 @@ export type ServiceOutputTypes =
|
|
|
589
611
|
| ListAccessGrantsInstancesCommandOutput
|
|
590
612
|
| ListAccessGrantsLocationsCommandOutput
|
|
591
613
|
| ListAccessPointsCommandOutput
|
|
614
|
+
| ListAccessPointsForDirectoryBucketsCommandOutput
|
|
592
615
|
| ListAccessPointsForObjectLambdaCommandOutput
|
|
593
616
|
| ListCallerAccessGrantsCommandOutput
|
|
594
617
|
| ListJobsCommandOutput
|
|
@@ -601,6 +624,7 @@ export type ServiceOutputTypes =
|
|
|
601
624
|
| PutAccessPointConfigurationForObjectLambdaCommandOutput
|
|
602
625
|
| PutAccessPointPolicyCommandOutput
|
|
603
626
|
| PutAccessPointPolicyForObjectLambdaCommandOutput
|
|
627
|
+
| PutAccessPointScopeCommandOutput
|
|
604
628
|
| PutBucketLifecycleConfigurationCommandOutput
|
|
605
629
|
| PutBucketPolicyCommandOutput
|
|
606
630
|
| PutBucketReplicationCommandOutput
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteAccessPointScopeRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3ControlClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3ControlClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteAccessPointScopeCommandInput
|
|
12
|
+
extends DeleteAccessPointScopeRequest {}
|
|
13
|
+
export interface DeleteAccessPointScopeCommandOutput extends __MetadataBearer {}
|
|
14
|
+
declare const DeleteAccessPointScopeCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: DeleteAccessPointScopeCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
DeleteAccessPointScopeCommandInput,
|
|
19
|
+
DeleteAccessPointScopeCommandOutput,
|
|
20
|
+
S3ControlClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: DeleteAccessPointScopeCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DeleteAccessPointScopeCommandInput,
|
|
28
|
+
DeleteAccessPointScopeCommandOutput,
|
|
29
|
+
S3ControlClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
34
|
+
};
|
|
35
|
+
export declare class DeleteAccessPointScopeCommand extends DeleteAccessPointScopeCommand_base {
|
|
36
|
+
protected static __types: {
|
|
37
|
+
api: {
|
|
38
|
+
input: DeleteAccessPointScopeRequest;
|
|
39
|
+
output: {};
|
|
40
|
+
};
|
|
41
|
+
sdk: {
|
|
42
|
+
input: DeleteAccessPointScopeCommandInput;
|
|
43
|
+
output: DeleteAccessPointScopeCommandOutput;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetAccessPointScopeRequest,
|
|
5
|
+
GetAccessPointScopeResult,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3ControlClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3ControlClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetAccessPointScopeCommandInput
|
|
15
|
+
extends GetAccessPointScopeRequest {}
|
|
16
|
+
export interface GetAccessPointScopeCommandOutput
|
|
17
|
+
extends GetAccessPointScopeResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetAccessPointScopeCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetAccessPointScopeCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetAccessPointScopeCommandInput,
|
|
24
|
+
GetAccessPointScopeCommandOutput,
|
|
25
|
+
S3ControlClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetAccessPointScopeCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetAccessPointScopeCommandInput,
|
|
33
|
+
GetAccessPointScopeCommandOutput,
|
|
34
|
+
S3ControlClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetAccessPointScopeCommand extends GetAccessPointScopeCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetAccessPointScopeRequest;
|
|
44
|
+
output: GetAccessPointScopeResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetAccessPointScopeCommandInput;
|
|
48
|
+
output: GetAccessPointScopeCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListAccessPointsForDirectoryBucketsRequest,
|
|
5
|
+
ListAccessPointsForDirectoryBucketsResult,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3ControlClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3ControlClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListAccessPointsForDirectoryBucketsCommandInput
|
|
15
|
+
extends ListAccessPointsForDirectoryBucketsRequest {}
|
|
16
|
+
export interface ListAccessPointsForDirectoryBucketsCommandOutput
|
|
17
|
+
extends ListAccessPointsForDirectoryBucketsResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListAccessPointsForDirectoryBucketsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListAccessPointsForDirectoryBucketsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListAccessPointsForDirectoryBucketsCommandInput,
|
|
24
|
+
ListAccessPointsForDirectoryBucketsCommandOutput,
|
|
25
|
+
S3ControlClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListAccessPointsForDirectoryBucketsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListAccessPointsForDirectoryBucketsCommandInput,
|
|
33
|
+
ListAccessPointsForDirectoryBucketsCommandOutput,
|
|
34
|
+
S3ControlClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListAccessPointsForDirectoryBucketsCommand extends ListAccessPointsForDirectoryBucketsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListAccessPointsForDirectoryBucketsRequest;
|
|
44
|
+
output: ListAccessPointsForDirectoryBucketsResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListAccessPointsForDirectoryBucketsCommandInput;
|
|
48
|
+
output: ListAccessPointsForDirectoryBucketsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { ListJobsRequest
|
|
3
|
+
import { ListJobsRequest } from "../models/models_0";
|
|
4
|
+
import { ListJobsResult } from "../models/models_1";
|
|
4
5
|
import {
|
|
5
6
|
S3ControlClientResolvedConfig,
|
|
6
7
|
ServiceInputTypes,
|
|
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
3
3
|
import {
|
|
4
4
|
ListMultiRegionAccessPointsRequest,
|
|
5
5
|
ListMultiRegionAccessPointsResult,
|
|
6
|
-
} from "../models/
|
|
6
|
+
} from "../models/models_1";
|
|
7
7
|
import {
|
|
8
8
|
S3ControlClientResolvedConfig,
|
|
9
9
|
ServiceInputTypes,
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
ListStorageLensConfigurationsRequest,
|
|
5
|
+
ListStorageLensConfigurationsResult,
|
|
6
|
+
} from "../models/models_1";
|
|
5
7
|
import {
|
|
6
8
|
S3ControlClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { PutAccessPointScopeRequest } from "../models/models_1";
|
|
4
|
+
import {
|
|
5
|
+
S3ControlClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3ControlClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface PutAccessPointScopeCommandInput
|
|
12
|
+
extends PutAccessPointScopeRequest {}
|
|
13
|
+
export interface PutAccessPointScopeCommandOutput extends __MetadataBearer {}
|
|
14
|
+
declare const PutAccessPointScopeCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: PutAccessPointScopeCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
PutAccessPointScopeCommandInput,
|
|
19
|
+
PutAccessPointScopeCommandOutput,
|
|
20
|
+
S3ControlClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: PutAccessPointScopeCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
PutAccessPointScopeCommandInput,
|
|
28
|
+
PutAccessPointScopeCommandOutput,
|
|
29
|
+
S3ControlClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
34
|
+
};
|
|
35
|
+
export declare class PutAccessPointScopeCommand extends PutAccessPointScopeCommand_base {
|
|
36
|
+
protected static __types: {
|
|
37
|
+
api: {
|
|
38
|
+
input: PutAccessPointScopeRequest;
|
|
39
|
+
output: {};
|
|
40
|
+
};
|
|
41
|
+
sdk: {
|
|
42
|
+
input: PutAccessPointScopeCommandInput;
|
|
43
|
+
output: PutAccessPointScopeCommandOutput;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
}
|
|
@@ -16,6 +16,7 @@ export * from "./DeleteAccessPointCommand";
|
|
|
16
16
|
export * from "./DeleteAccessPointForObjectLambdaCommand";
|
|
17
17
|
export * from "./DeleteAccessPointPolicyCommand";
|
|
18
18
|
export * from "./DeleteAccessPointPolicyForObjectLambdaCommand";
|
|
19
|
+
export * from "./DeleteAccessPointScopeCommand";
|
|
19
20
|
export * from "./DeleteBucketCommand";
|
|
20
21
|
export * from "./DeleteBucketLifecycleConfigurationCommand";
|
|
21
22
|
export * from "./DeleteBucketPolicyCommand";
|
|
@@ -42,6 +43,7 @@ export * from "./GetAccessPointPolicyCommand";
|
|
|
42
43
|
export * from "./GetAccessPointPolicyForObjectLambdaCommand";
|
|
43
44
|
export * from "./GetAccessPointPolicyStatusCommand";
|
|
44
45
|
export * from "./GetAccessPointPolicyStatusForObjectLambdaCommand";
|
|
46
|
+
export * from "./GetAccessPointScopeCommand";
|
|
45
47
|
export * from "./GetBucketCommand";
|
|
46
48
|
export * from "./GetBucketLifecycleConfigurationCommand";
|
|
47
49
|
export * from "./GetBucketPolicyCommand";
|
|
@@ -62,6 +64,7 @@ export * from "./ListAccessGrantsCommand";
|
|
|
62
64
|
export * from "./ListAccessGrantsInstancesCommand";
|
|
63
65
|
export * from "./ListAccessGrantsLocationsCommand";
|
|
64
66
|
export * from "./ListAccessPointsCommand";
|
|
67
|
+
export * from "./ListAccessPointsForDirectoryBucketsCommand";
|
|
65
68
|
export * from "./ListAccessPointsForObjectLambdaCommand";
|
|
66
69
|
export * from "./ListCallerAccessGrantsCommand";
|
|
67
70
|
export * from "./ListJobsCommand";
|
|
@@ -74,6 +77,7 @@ export * from "./PutAccessGrantsInstanceResourcePolicyCommand";
|
|
|
74
77
|
export * from "./PutAccessPointConfigurationForObjectLambdaCommand";
|
|
75
78
|
export * from "./PutAccessPointPolicyCommand";
|
|
76
79
|
export * from "./PutAccessPointPolicyForObjectLambdaCommand";
|
|
80
|
+
export * from "./PutAccessPointScopeCommand";
|
|
77
81
|
export * from "./PutBucketLifecycleConfigurationCommand";
|
|
78
82
|
export * from "./PutBucketPolicyCommand";
|
|
79
83
|
export * from "./PutBucketReplicationCommand";
|