@aws-sdk/client-s3-control 3.451.0 → 3.454.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 (61) hide show
  1. package/README.md +64 -0
  2. package/dist-cjs/S3Control.js +16 -0
  3. package/dist-cjs/commands/CreateStorageLensGroupCommand.js +56 -0
  4. package/dist-cjs/commands/DeleteStorageLensGroupCommand.js +56 -0
  5. package/dist-cjs/commands/GetStorageLensGroupCommand.js +56 -0
  6. package/dist-cjs/commands/ListStorageLensGroupsCommand.js +56 -0
  7. package/dist-cjs/commands/ListTagsForResourceCommand.js +56 -0
  8. package/dist-cjs/commands/TagResourceCommand.js +56 -0
  9. package/dist-cjs/commands/UntagResourceCommand.js +56 -0
  10. package/dist-cjs/commands/UpdateStorageLensGroupCommand.js +56 -0
  11. package/dist-cjs/commands/index.js +8 -0
  12. package/dist-cjs/pagination/ListStorageLensGroupsPaginator.js +28 -0
  13. package/dist-cjs/pagination/index.js +1 -0
  14. package/dist-cjs/protocols/Aws_restXml.js +968 -3
  15. package/dist-es/S3Control.js +16 -0
  16. package/dist-es/commands/CreateStorageLensGroupCommand.js +52 -0
  17. package/dist-es/commands/DeleteStorageLensGroupCommand.js +52 -0
  18. package/dist-es/commands/GetStorageLensGroupCommand.js +52 -0
  19. package/dist-es/commands/ListStorageLensGroupsCommand.js +52 -0
  20. package/dist-es/commands/ListTagsForResourceCommand.js +52 -0
  21. package/dist-es/commands/TagResourceCommand.js +52 -0
  22. package/dist-es/commands/UntagResourceCommand.js +52 -0
  23. package/dist-es/commands/UpdateStorageLensGroupCommand.js +52 -0
  24. package/dist-es/commands/index.js +8 -0
  25. package/dist-es/pagination/ListStorageLensGroupsPaginator.js +24 -0
  26. package/dist-es/pagination/index.js +1 -0
  27. package/dist-es/protocols/Aws_restXml.js +949 -0
  28. package/dist-types/S3Control.d.ts +56 -0
  29. package/dist-types/S3ControlClient.d.ts +10 -2
  30. package/dist-types/commands/CreateStorageLensGroupCommand.d.ts +159 -0
  31. package/dist-types/commands/DeleteBucketLifecycleConfigurationCommand.d.ts +3 -3
  32. package/dist-types/commands/DeleteStorageLensGroupCommand.d.ts +78 -0
  33. package/dist-types/commands/GetStorageLensConfigurationCommand.d.ts +10 -0
  34. package/dist-types/commands/GetStorageLensGroupCommand.d.ts +149 -0
  35. package/dist-types/commands/ListStorageLensGroupsCommand.d.ts +88 -0
  36. package/dist-types/commands/ListTagsForResourceCommand.d.ts +88 -0
  37. package/dist-types/commands/PutStorageLensConfigurationCommand.d.ts +10 -0
  38. package/dist-types/commands/TagResourceCommand.d.ts +86 -0
  39. package/dist-types/commands/UntagResourceCommand.d.ts +84 -0
  40. package/dist-types/commands/UpdateStorageLensGroupCommand.d.ts +148 -0
  41. package/dist-types/commands/index.d.ts +8 -0
  42. package/dist-types/models/models_0.d.ts +555 -7
  43. package/dist-types/pagination/ListStorageLensGroupsPaginator.d.ts +7 -0
  44. package/dist-types/pagination/index.d.ts +1 -0
  45. package/dist-types/protocols/Aws_restXml.d.ts +72 -0
  46. package/dist-types/ts3.4/S3Control.d.ts +136 -0
  47. package/dist-types/ts3.4/S3ControlClient.d.ts +50 -2
  48. package/dist-types/ts3.4/commands/CreateStorageLensGroupCommand.d.ts +37 -0
  49. package/dist-types/ts3.4/commands/DeleteStorageLensGroupCommand.d.ts +37 -0
  50. package/dist-types/ts3.4/commands/GetStorageLensGroupCommand.d.ts +39 -0
  51. package/dist-types/ts3.4/commands/ListStorageLensGroupsCommand.d.ts +42 -0
  52. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  53. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  54. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
  55. package/dist-types/ts3.4/commands/UpdateStorageLensGroupCommand.d.ts +37 -0
  56. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  57. package/dist-types/ts3.4/models/models_0.d.ts +101 -0
  58. package/dist-types/ts3.4/pagination/ListStorageLensGroupsPaginator.d.ts +11 -0
  59. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  60. package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +96 -0
  61. package/package.json +2 -2
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ ListStorageLensGroupsRequest,
11
+ ListStorageLensGroupsResult,
12
+ } from "../models/models_0";
13
+ import {
14
+ S3ControlClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../S3ControlClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListStorageLensGroupsCommandInput
20
+ extends ListStorageLensGroupsRequest {}
21
+ export interface ListStorageLensGroupsCommandOutput
22
+ extends ListStorageLensGroupsResult,
23
+ __MetadataBearer {}
24
+ export declare class ListStorageLensGroupsCommand extends $Command<
25
+ ListStorageLensGroupsCommandInput,
26
+ ListStorageLensGroupsCommandOutput,
27
+ S3ControlClientResolvedConfig
28
+ > {
29
+ readonly input: ListStorageLensGroupsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListStorageLensGroupsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: S3ControlClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListStorageLensGroupsCommandInput,
38
+ ListStorageLensGroupsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ ListTagsForResourceRequest,
11
+ ListTagsForResourceResult,
12
+ } from "../models/models_0";
13
+ import {
14
+ S3ControlClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../S3ControlClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListTagsForResourceCommandInput
20
+ extends ListTagsForResourceRequest {}
21
+ export interface ListTagsForResourceCommandOutput
22
+ extends ListTagsForResourceResult,
23
+ __MetadataBearer {}
24
+ export declare class ListTagsForResourceCommand extends $Command<
25
+ ListTagsForResourceCommandInput,
26
+ ListTagsForResourceCommandOutput,
27
+ S3ControlClientResolvedConfig
28
+ > {
29
+ readonly input: ListTagsForResourceCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListTagsForResourceCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: S3ControlClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { TagResourceRequest, TagResourceResult } from "../models/models_0";
10
+ import {
11
+ S3ControlClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../S3ControlClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface TagResourceCommandInput extends TagResourceRequest {}
17
+ export interface TagResourceCommandOutput
18
+ extends TagResourceResult,
19
+ __MetadataBearer {}
20
+ export declare class TagResourceCommand extends $Command<
21
+ TagResourceCommandInput,
22
+ TagResourceCommandOutput,
23
+ S3ControlClientResolvedConfig
24
+ > {
25
+ readonly input: TagResourceCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: TagResourceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: S3ControlClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { UntagResourceRequest, UntagResourceResult } from "../models/models_0";
10
+ import {
11
+ S3ControlClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../S3ControlClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
17
+ export interface UntagResourceCommandOutput
18
+ extends UntagResourceResult,
19
+ __MetadataBearer {}
20
+ export declare class UntagResourceCommand extends $Command<
21
+ UntagResourceCommandInput,
22
+ UntagResourceCommandOutput,
23
+ S3ControlClientResolvedConfig
24
+ > {
25
+ readonly input: UntagResourceCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: UntagResourceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: S3ControlClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { UpdateStorageLensGroupRequest } from "../models/models_0";
10
+ import {
11
+ S3ControlClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../S3ControlClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface UpdateStorageLensGroupCommandInput
17
+ extends UpdateStorageLensGroupRequest {}
18
+ export interface UpdateStorageLensGroupCommandOutput extends __MetadataBearer {}
19
+ export declare class UpdateStorageLensGroupCommand extends $Command<
20
+ UpdateStorageLensGroupCommandInput,
21
+ UpdateStorageLensGroupCommandOutput,
22
+ S3ControlClientResolvedConfig
23
+ > {
24
+ readonly input: UpdateStorageLensGroupCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: UpdateStorageLensGroupCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: S3ControlClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ UpdateStorageLensGroupCommandInput,
33
+ UpdateStorageLensGroupCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -3,6 +3,7 @@ export * from "./CreateAccessPointForObjectLambdaCommand";
3
3
  export * from "./CreateBucketCommand";
4
4
  export * from "./CreateJobCommand";
5
5
  export * from "./CreateMultiRegionAccessPointCommand";
6
+ export * from "./CreateStorageLensGroupCommand";
6
7
  export * from "./DeleteAccessPointCommand";
7
8
  export * from "./DeleteAccessPointForObjectLambdaCommand";
8
9
  export * from "./DeleteAccessPointPolicyCommand";
@@ -17,6 +18,7 @@ export * from "./DeleteMultiRegionAccessPointCommand";
17
18
  export * from "./DeletePublicAccessBlockCommand";
18
19
  export * from "./DeleteStorageLensConfigurationCommand";
19
20
  export * from "./DeleteStorageLensConfigurationTaggingCommand";
21
+ export * from "./DeleteStorageLensGroupCommand";
20
22
  export * from "./DescribeJobCommand";
21
23
  export * from "./DescribeMultiRegionAccessPointOperationCommand";
22
24
  export * from "./GetAccessPointCommand";
@@ -40,12 +42,15 @@ export * from "./GetMultiRegionAccessPointRoutesCommand";
40
42
  export * from "./GetPublicAccessBlockCommand";
41
43
  export * from "./GetStorageLensConfigurationCommand";
42
44
  export * from "./GetStorageLensConfigurationTaggingCommand";
45
+ export * from "./GetStorageLensGroupCommand";
43
46
  export * from "./ListAccessPointsCommand";
44
47
  export * from "./ListAccessPointsForObjectLambdaCommand";
45
48
  export * from "./ListJobsCommand";
46
49
  export * from "./ListMultiRegionAccessPointsCommand";
47
50
  export * from "./ListRegionalBucketsCommand";
48
51
  export * from "./ListStorageLensConfigurationsCommand";
52
+ export * from "./ListStorageLensGroupsCommand";
53
+ export * from "./ListTagsForResourceCommand";
49
54
  export * from "./PutAccessPointConfigurationForObjectLambdaCommand";
50
55
  export * from "./PutAccessPointPolicyCommand";
51
56
  export * from "./PutAccessPointPolicyForObjectLambdaCommand";
@@ -60,5 +65,8 @@ export * from "./PutPublicAccessBlockCommand";
60
65
  export * from "./PutStorageLensConfigurationCommand";
61
66
  export * from "./PutStorageLensConfigurationTaggingCommand";
62
67
  export * from "./SubmitMultiRegionAccessPointRoutesCommand";
68
+ export * from "./TagResourceCommand";
69
+ export * from "./UntagResourceCommand";
63
70
  export * from "./UpdateJobPriorityCommand";
64
71
  export * from "./UpdateJobStatusCommand";
72
+ export * from "./UpdateStorageLensGroupCommand";
@@ -58,12 +58,20 @@ export interface BucketLevel {
58
58
  AdvancedDataProtectionMetrics?: AdvancedDataProtectionMetrics;
59
59
  DetailedStatusCodesMetrics?: DetailedStatusCodesMetrics;
60
60
  }
61
+ export interface StorageLensGroupLevelSelectionCriteria {
62
+ Include?: string[];
63
+ Exclude?: string[];
64
+ }
65
+ export interface StorageLensGroupLevel {
66
+ SelectionCriteria?: StorageLensGroupLevelSelectionCriteria;
67
+ }
61
68
  export interface AccountLevel {
62
69
  ActivityMetrics?: ActivityMetrics;
63
70
  BucketLevel: BucketLevel | undefined;
64
71
  AdvancedCostOptimizationMetrics?: AdvancedCostOptimizationMetrics;
65
72
  AdvancedDataProtectionMetrics?: AdvancedDataProtectionMetrics;
66
73
  DetailedStatusCodesMetrics?: DetailedStatusCodesMetrics;
74
+ StorageLensGroupLevel?: StorageLensGroupLevel;
67
75
  }
68
76
  export interface AsyncErrorDetails {
69
77
  Code?: string;
@@ -603,6 +611,51 @@ export interface CreateMultiRegionAccessPointRequest {
603
611
  export interface CreateMultiRegionAccessPointResult {
604
612
  RequestTokenARN?: string;
605
613
  }
614
+ export interface MatchObjectAge {
615
+ DaysGreaterThan?: number;
616
+ DaysLessThan?: number;
617
+ }
618
+ export interface MatchObjectSize {
619
+ BytesGreaterThan?: number;
620
+ BytesLessThan?: number;
621
+ }
622
+ export interface StorageLensGroupAndOperator {
623
+ MatchAnyPrefix?: string[];
624
+ MatchAnySuffix?: string[];
625
+ MatchAnyTag?: S3Tag[];
626
+ MatchObjectAge?: MatchObjectAge;
627
+ MatchObjectSize?: MatchObjectSize;
628
+ }
629
+ export interface StorageLensGroupOrOperator {
630
+ MatchAnyPrefix?: string[];
631
+ MatchAnySuffix?: string[];
632
+ MatchAnyTag?: S3Tag[];
633
+ MatchObjectAge?: MatchObjectAge;
634
+ MatchObjectSize?: MatchObjectSize;
635
+ }
636
+ export interface StorageLensGroupFilter {
637
+ MatchAnyPrefix?: string[];
638
+ MatchAnySuffix?: string[];
639
+ MatchAnyTag?: S3Tag[];
640
+ MatchObjectAge?: MatchObjectAge;
641
+ MatchObjectSize?: MatchObjectSize;
642
+ And?: StorageLensGroupAndOperator;
643
+ Or?: StorageLensGroupOrOperator;
644
+ }
645
+ export interface StorageLensGroup {
646
+ Name: string | undefined;
647
+ Filter: StorageLensGroupFilter | undefined;
648
+ StorageLensGroupArn?: string;
649
+ }
650
+ export interface Tag {
651
+ Key: string | undefined;
652
+ Value: string | undefined;
653
+ }
654
+ export interface CreateStorageLensGroupRequest {
655
+ AccountId?: string;
656
+ StorageLensGroup: StorageLensGroup | undefined;
657
+ Tags?: Tag[];
658
+ }
606
659
  export interface DeleteAccessPointRequest {
607
660
  AccountId?: string;
608
661
  Name: string | undefined;
@@ -670,6 +723,10 @@ export interface DeleteStorageLensConfigurationTaggingRequest {
670
723
  AccountId?: string;
671
724
  }
672
725
  export interface DeleteStorageLensConfigurationTaggingResult {}
726
+ export interface DeleteStorageLensGroupRequest {
727
+ Name: string | undefined;
728
+ AccountId?: string;
729
+ }
673
730
  export interface DescribeJobRequest {
674
731
  AccountId?: string;
675
732
  JobId: string | undefined;
@@ -1196,6 +1253,13 @@ export interface StorageLensTag {
1196
1253
  export interface GetStorageLensConfigurationTaggingResult {
1197
1254
  Tags?: StorageLensTag[];
1198
1255
  }
1256
+ export interface GetStorageLensGroupRequest {
1257
+ Name: string | undefined;
1258
+ AccountId?: string;
1259
+ }
1260
+ export interface GetStorageLensGroupResult {
1261
+ StorageLensGroup?: StorageLensGroup;
1262
+ }
1199
1263
  export interface ListAccessPointsRequest {
1200
1264
  AccountId?: string;
1201
1265
  Bucket?: string;
@@ -1308,6 +1372,26 @@ export interface ListStorageLensConfigurationsResult {
1308
1372
  NextToken?: string;
1309
1373
  StorageLensConfigurationList?: ListStorageLensConfigurationEntry[];
1310
1374
  }
1375
+ export interface ListStorageLensGroupsRequest {
1376
+ AccountId?: string;
1377
+ NextToken?: string;
1378
+ }
1379
+ export interface ListStorageLensGroupEntry {
1380
+ Name: string | undefined;
1381
+ StorageLensGroupArn: string | undefined;
1382
+ HomeRegion: string | undefined;
1383
+ }
1384
+ export interface ListStorageLensGroupsResult {
1385
+ NextToken?: string;
1386
+ StorageLensGroupList?: ListStorageLensGroupEntry[];
1387
+ }
1388
+ export interface ListTagsForResourceRequest {
1389
+ AccountId?: string;
1390
+ ResourceArn: string | undefined;
1391
+ }
1392
+ export interface ListTagsForResourceResult {
1393
+ Tags?: Tag[];
1394
+ }
1311
1395
  export interface PutAccessPointConfigurationForObjectLambdaRequest {
1312
1396
  AccountId?: string;
1313
1397
  Name: string | undefined;
@@ -1409,6 +1493,18 @@ export interface SubmitMultiRegionAccessPointRoutesRequest {
1409
1493
  RouteUpdates: MultiRegionAccessPointRoute[] | undefined;
1410
1494
  }
1411
1495
  export interface SubmitMultiRegionAccessPointRoutesResult {}
1496
+ export interface TagResourceRequest {
1497
+ AccountId?: string;
1498
+ ResourceArn: string | undefined;
1499
+ Tags: Tag[] | undefined;
1500
+ }
1501
+ export interface TagResourceResult {}
1502
+ export interface UntagResourceRequest {
1503
+ AccountId?: string;
1504
+ ResourceArn: string | undefined;
1505
+ TagKeys: string[] | undefined;
1506
+ }
1507
+ export interface UntagResourceResult {}
1412
1508
  export interface UpdateJobPriorityRequest {
1413
1509
  AccountId?: string;
1414
1510
  JobId: string | undefined;
@@ -1441,3 +1537,8 @@ export interface UpdateJobStatusResult {
1441
1537
  Status?: JobStatus;
1442
1538
  StatusUpdateReason?: string;
1443
1539
  }
1540
+ export interface UpdateStorageLensGroupRequest {
1541
+ Name: string | undefined;
1542
+ AccountId?: string;
1543
+ StorageLensGroup: StorageLensGroup | undefined;
1544
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListStorageLensGroupsCommandInput,
4
+ ListStorageLensGroupsCommandOutput,
5
+ } from "../commands/ListStorageLensGroupsCommand";
6
+ import { S3ControlPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListStorageLensGroups(
8
+ config: S3ControlPaginationConfiguration,
9
+ input: ListStorageLensGroupsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListStorageLensGroupsCommandOutput>;
@@ -5,3 +5,4 @@ export * from "./ListJobsPaginator";
5
5
  export * from "./ListMultiRegionAccessPointsPaginator";
6
6
  export * from "./ListRegionalBucketsPaginator";
7
7
  export * from "./ListStorageLensConfigurationsPaginator";
8
+ export * from "./ListStorageLensGroupsPaginator";
@@ -23,6 +23,10 @@ import {
23
23
  CreateMultiRegionAccessPointCommandInput,
24
24
  CreateMultiRegionAccessPointCommandOutput,
25
25
  } from "../commands/CreateMultiRegionAccessPointCommand";
26
+ import {
27
+ CreateStorageLensGroupCommandInput,
28
+ CreateStorageLensGroupCommandOutput,
29
+ } from "../commands/CreateStorageLensGroupCommand";
26
30
  import {
27
31
  DeleteAccessPointCommandInput,
28
32
  DeleteAccessPointCommandOutput,
@@ -79,6 +83,10 @@ import {
79
83
  DeleteStorageLensConfigurationTaggingCommandInput,
80
84
  DeleteStorageLensConfigurationTaggingCommandOutput,
81
85
  } from "../commands/DeleteStorageLensConfigurationTaggingCommand";
86
+ import {
87
+ DeleteStorageLensGroupCommandInput,
88
+ DeleteStorageLensGroupCommandOutput,
89
+ } from "../commands/DeleteStorageLensGroupCommand";
82
90
  import {
83
91
  DescribeJobCommandInput,
84
92
  DescribeJobCommandOutput,
@@ -171,6 +179,10 @@ import {
171
179
  GetStorageLensConfigurationTaggingCommandInput,
172
180
  GetStorageLensConfigurationTaggingCommandOutput,
173
181
  } from "../commands/GetStorageLensConfigurationTaggingCommand";
182
+ import {
183
+ GetStorageLensGroupCommandInput,
184
+ GetStorageLensGroupCommandOutput,
185
+ } from "../commands/GetStorageLensGroupCommand";
174
186
  import {
175
187
  ListAccessPointsCommandInput,
176
188
  ListAccessPointsCommandOutput,
@@ -195,6 +207,14 @@ import {
195
207
  ListStorageLensConfigurationsCommandInput,
196
208
  ListStorageLensConfigurationsCommandOutput,
197
209
  } from "../commands/ListStorageLensConfigurationsCommand";
210
+ import {
211
+ ListStorageLensGroupsCommandInput,
212
+ ListStorageLensGroupsCommandOutput,
213
+ } from "../commands/ListStorageLensGroupsCommand";
214
+ import {
215
+ ListTagsForResourceCommandInput,
216
+ ListTagsForResourceCommandOutput,
217
+ } from "../commands/ListTagsForResourceCommand";
198
218
  import {
199
219
  PutAccessPointConfigurationForObjectLambdaCommandInput,
200
220
  PutAccessPointConfigurationForObjectLambdaCommandOutput,
@@ -251,6 +271,14 @@ import {
251
271
  SubmitMultiRegionAccessPointRoutesCommandInput,
252
272
  SubmitMultiRegionAccessPointRoutesCommandOutput,
253
273
  } from "../commands/SubmitMultiRegionAccessPointRoutesCommand";
274
+ import {
275
+ TagResourceCommandInput,
276
+ TagResourceCommandOutput,
277
+ } from "../commands/TagResourceCommand";
278
+ import {
279
+ UntagResourceCommandInput,
280
+ UntagResourceCommandOutput,
281
+ } from "../commands/UntagResourceCommand";
254
282
  import {
255
283
  UpdateJobPriorityCommandInput,
256
284
  UpdateJobPriorityCommandOutput,
@@ -259,6 +287,10 @@ import {
259
287
  UpdateJobStatusCommandInput,
260
288
  UpdateJobStatusCommandOutput,
261
289
  } from "../commands/UpdateJobStatusCommand";
290
+ import {
291
+ UpdateStorageLensGroupCommandInput,
292
+ UpdateStorageLensGroupCommandOutput,
293
+ } from "../commands/UpdateStorageLensGroupCommand";
262
294
  export declare const se_CreateAccessPointCommand: (
263
295
  input: CreateAccessPointCommandInput,
264
296
  context: __SerdeContext
@@ -279,6 +311,10 @@ export declare const se_CreateMultiRegionAccessPointCommand: (
279
311
  input: CreateMultiRegionAccessPointCommandInput,
280
312
  context: __SerdeContext
281
313
  ) => Promise<__HttpRequest>;
314
+ export declare const se_CreateStorageLensGroupCommand: (
315
+ input: CreateStorageLensGroupCommandInput,
316
+ context: __SerdeContext
317
+ ) => Promise<__HttpRequest>;
282
318
  export declare const se_DeleteAccessPointCommand: (
283
319
  input: DeleteAccessPointCommandInput,
284
320
  context: __SerdeContext
@@ -335,6 +371,10 @@ export declare const se_DeleteStorageLensConfigurationTaggingCommand: (
335
371
  input: DeleteStorageLensConfigurationTaggingCommandInput,
336
372
  context: __SerdeContext
337
373
  ) => Promise<__HttpRequest>;
374
+ export declare const se_DeleteStorageLensGroupCommand: (
375
+ input: DeleteStorageLensGroupCommandInput,
376
+ context: __SerdeContext
377
+ ) => Promise<__HttpRequest>;
338
378
  export declare const se_DescribeJobCommand: (
339
379
  input: DescribeJobCommandInput,
340
380
  context: __SerdeContext
@@ -427,6 +467,10 @@ export declare const se_GetStorageLensConfigurationTaggingCommand: (
427
467
  input: GetStorageLensConfigurationTaggingCommandInput,
428
468
  context: __SerdeContext
429
469
  ) => Promise<__HttpRequest>;
470
+ export declare const se_GetStorageLensGroupCommand: (
471
+ input: GetStorageLensGroupCommandInput,
472
+ context: __SerdeContext
473
+ ) => Promise<__HttpRequest>;
430
474
  export declare const se_ListAccessPointsCommand: (
431
475
  input: ListAccessPointsCommandInput,
432
476
  context: __SerdeContext
@@ -451,6 +495,14 @@ export declare const se_ListStorageLensConfigurationsCommand: (
451
495
  input: ListStorageLensConfigurationsCommandInput,
452
496
  context: __SerdeContext
453
497
  ) => Promise<__HttpRequest>;
498
+ export declare const se_ListStorageLensGroupsCommand: (
499
+ input: ListStorageLensGroupsCommandInput,
500
+ context: __SerdeContext
501
+ ) => Promise<__HttpRequest>;
502
+ export declare const se_ListTagsForResourceCommand: (
503
+ input: ListTagsForResourceCommandInput,
504
+ context: __SerdeContext
505
+ ) => Promise<__HttpRequest>;
454
506
  export declare const se_PutAccessPointConfigurationForObjectLambdaCommand: (
455
507
  input: PutAccessPointConfigurationForObjectLambdaCommandInput,
456
508
  context: __SerdeContext
@@ -507,6 +559,14 @@ export declare const se_SubmitMultiRegionAccessPointRoutesCommand: (
507
559
  input: SubmitMultiRegionAccessPointRoutesCommandInput,
508
560
  context: __SerdeContext
509
561
  ) => Promise<__HttpRequest>;
562
+ export declare const se_TagResourceCommand: (
563
+ input: TagResourceCommandInput,
564
+ context: __SerdeContext
565
+ ) => Promise<__HttpRequest>;
566
+ export declare const se_UntagResourceCommand: (
567
+ input: UntagResourceCommandInput,
568
+ context: __SerdeContext
569
+ ) => Promise<__HttpRequest>;
510
570
  export declare const se_UpdateJobPriorityCommand: (
511
571
  input: UpdateJobPriorityCommandInput,
512
572
  context: __SerdeContext
@@ -515,6 +575,10 @@ export declare const se_UpdateJobStatusCommand: (
515
575
  input: UpdateJobStatusCommandInput,
516
576
  context: __SerdeContext
517
577
  ) => Promise<__HttpRequest>;
578
+ export declare const se_UpdateStorageLensGroupCommand: (
579
+ input: UpdateStorageLensGroupCommandInput,
580
+ context: __SerdeContext
581
+ ) => Promise<__HttpRequest>;
518
582
  export declare const de_CreateAccessPointCommand: (
519
583
  output: __HttpResponse,
520
584
  context: __SerdeContext
@@ -535,6 +599,10 @@ export declare const de_CreateMultiRegionAccessPointCommand: (
535
599
  output: __HttpResponse,
536
600
  context: __SerdeContext
537
601
  ) => Promise<CreateMultiRegionAccessPointCommandOutput>;
602
+ export declare const de_CreateStorageLensGroupCommand: (
603
+ output: __HttpResponse,
604
+ context: __SerdeContext
605
+ ) => Promise<CreateStorageLensGroupCommandOutput>;
538
606
  export declare const de_DeleteAccessPointCommand: (
539
607
  output: __HttpResponse,
540
608
  context: __SerdeContext
@@ -591,6 +659,10 @@ export declare const de_DeleteStorageLensConfigurationTaggingCommand: (
591
659
  output: __HttpResponse,
592
660
  context: __SerdeContext
593
661
  ) => Promise<DeleteStorageLensConfigurationTaggingCommandOutput>;
662
+ export declare const de_DeleteStorageLensGroupCommand: (
663
+ output: __HttpResponse,
664
+ context: __SerdeContext
665
+ ) => Promise<DeleteStorageLensGroupCommandOutput>;
594
666
  export declare const de_DescribeJobCommand: (
595
667
  output: __HttpResponse,
596
668
  context: __SerdeContext
@@ -683,6 +755,10 @@ export declare const de_GetStorageLensConfigurationTaggingCommand: (
683
755
  output: __HttpResponse,
684
756
  context: __SerdeContext
685
757
  ) => Promise<GetStorageLensConfigurationTaggingCommandOutput>;
758
+ export declare const de_GetStorageLensGroupCommand: (
759
+ output: __HttpResponse,
760
+ context: __SerdeContext
761
+ ) => Promise<GetStorageLensGroupCommandOutput>;
686
762
  export declare const de_ListAccessPointsCommand: (
687
763
  output: __HttpResponse,
688
764
  context: __SerdeContext
@@ -707,6 +783,14 @@ export declare const de_ListStorageLensConfigurationsCommand: (
707
783
  output: __HttpResponse,
708
784
  context: __SerdeContext
709
785
  ) => Promise<ListStorageLensConfigurationsCommandOutput>;
786
+ export declare const de_ListStorageLensGroupsCommand: (
787
+ output: __HttpResponse,
788
+ context: __SerdeContext
789
+ ) => Promise<ListStorageLensGroupsCommandOutput>;
790
+ export declare const de_ListTagsForResourceCommand: (
791
+ output: __HttpResponse,
792
+ context: __SerdeContext
793
+ ) => Promise<ListTagsForResourceCommandOutput>;
710
794
  export declare const de_PutAccessPointConfigurationForObjectLambdaCommand: (
711
795
  output: __HttpResponse,
712
796
  context: __SerdeContext
@@ -763,6 +847,14 @@ export declare const de_SubmitMultiRegionAccessPointRoutesCommand: (
763
847
  output: __HttpResponse,
764
848
  context: __SerdeContext
765
849
  ) => Promise<SubmitMultiRegionAccessPointRoutesCommandOutput>;
850
+ export declare const de_TagResourceCommand: (
851
+ output: __HttpResponse,
852
+ context: __SerdeContext
853
+ ) => Promise<TagResourceCommandOutput>;
854
+ export declare const de_UntagResourceCommand: (
855
+ output: __HttpResponse,
856
+ context: __SerdeContext
857
+ ) => Promise<UntagResourceCommandOutput>;
766
858
  export declare const de_UpdateJobPriorityCommand: (
767
859
  output: __HttpResponse,
768
860
  context: __SerdeContext
@@ -771,3 +863,7 @@ export declare const de_UpdateJobStatusCommand: (
771
863
  output: __HttpResponse,
772
864
  context: __SerdeContext
773
865
  ) => Promise<UpdateJobStatusCommandOutput>;
866
+ export declare const de_UpdateStorageLensGroupCommand: (
867
+ output: __HttpResponse,
868
+ context: __SerdeContext
869
+ ) => Promise<UpdateStorageLensGroupCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-s3-control",
3
3
  "description": "AWS SDK for JavaScript S3 Control Client for Node.js, Browser and React Native",
4
- "version": "3.451.0",
4
+ "version": "3.454.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -23,7 +23,7 @@
23
23
  "dependencies": {
24
24
  "@aws-crypto/sha256-browser": "3.0.0",
25
25
  "@aws-crypto/sha256-js": "3.0.0",
26
- "@aws-sdk/client-sts": "3.451.0",
26
+ "@aws-sdk/client-sts": "3.454.0",
27
27
  "@aws-sdk/core": "3.451.0",
28
28
  "@aws-sdk/credential-provider-node": "3.451.0",
29
29
  "@aws-sdk/middleware-host-header": "3.451.0",