@aws-sdk/client-s3-control 3.457.0 → 3.458.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 (168) hide show
  1. package/README.md +232 -72
  2. package/dist-cjs/S3Control.js +40 -0
  3. package/dist-cjs/commands/AssociateAccessGrantsIdentityCenterCommand.js +58 -0
  4. package/dist-cjs/commands/CreateAccessGrantCommand.js +58 -0
  5. package/dist-cjs/commands/CreateAccessGrantsInstanceCommand.js +58 -0
  6. package/dist-cjs/commands/CreateAccessGrantsLocationCommand.js +58 -0
  7. package/dist-cjs/commands/DeleteAccessGrantCommand.js +58 -0
  8. package/dist-cjs/commands/DeleteAccessGrantsInstanceCommand.js +58 -0
  9. package/dist-cjs/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.js +58 -0
  10. package/dist-cjs/commands/DeleteAccessGrantsLocationCommand.js +58 -0
  11. package/dist-cjs/commands/DissociateAccessGrantsIdentityCenterCommand.js +58 -0
  12. package/dist-cjs/commands/GetAccessGrantCommand.js +58 -0
  13. package/dist-cjs/commands/GetAccessGrantsInstanceCommand.js +58 -0
  14. package/dist-cjs/commands/GetAccessGrantsInstanceForPrefixCommand.js +58 -0
  15. package/dist-cjs/commands/GetAccessGrantsInstanceResourcePolicyCommand.js +58 -0
  16. package/dist-cjs/commands/GetAccessGrantsLocationCommand.js +58 -0
  17. package/dist-cjs/commands/GetDataAccessCommand.js +59 -0
  18. package/dist-cjs/commands/ListAccessGrantsCommand.js +58 -0
  19. package/dist-cjs/commands/ListAccessGrantsInstancesCommand.js +58 -0
  20. package/dist-cjs/commands/ListAccessGrantsLocationsCommand.js +58 -0
  21. package/dist-cjs/commands/PutAccessGrantsInstanceResourcePolicyCommand.js +58 -0
  22. package/dist-cjs/commands/UpdateAccessGrantsLocationCommand.js +58 -0
  23. package/dist-cjs/commands/index.js +20 -0
  24. package/dist-cjs/models/index.js +1 -0
  25. package/dist-cjs/models/models_0.js +32 -38
  26. package/dist-cjs/models/models_1.js +40 -0
  27. package/dist-cjs/pagination/ListAccessGrantsInstancesPaginator.js +29 -0
  28. package/dist-cjs/pagination/ListAccessGrantsLocationsPaginator.js +29 -0
  29. package/dist-cjs/pagination/ListAccessGrantsPaginator.js +29 -0
  30. package/dist-cjs/pagination/index.js +3 -0
  31. package/dist-cjs/protocols/Aws_restXml.js +1697 -156
  32. package/dist-es/S3Control.js +40 -0
  33. package/dist-es/commands/AssociateAccessGrantsIdentityCenterCommand.js +54 -0
  34. package/dist-es/commands/CreateAccessGrantCommand.js +54 -0
  35. package/dist-es/commands/CreateAccessGrantsInstanceCommand.js +54 -0
  36. package/dist-es/commands/CreateAccessGrantsLocationCommand.js +54 -0
  37. package/dist-es/commands/DeleteAccessGrantCommand.js +54 -0
  38. package/dist-es/commands/DeleteAccessGrantsInstanceCommand.js +54 -0
  39. package/dist-es/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.js +54 -0
  40. package/dist-es/commands/DeleteAccessGrantsLocationCommand.js +54 -0
  41. package/dist-es/commands/DissociateAccessGrantsIdentityCenterCommand.js +54 -0
  42. package/dist-es/commands/GetAccessGrantCommand.js +54 -0
  43. package/dist-es/commands/GetAccessGrantsInstanceCommand.js +54 -0
  44. package/dist-es/commands/GetAccessGrantsInstanceForPrefixCommand.js +54 -0
  45. package/dist-es/commands/GetAccessGrantsInstanceResourcePolicyCommand.js +54 -0
  46. package/dist-es/commands/GetAccessGrantsLocationCommand.js +54 -0
  47. package/dist-es/commands/GetDataAccessCommand.js +55 -0
  48. package/dist-es/commands/ListAccessGrantsCommand.js +54 -0
  49. package/dist-es/commands/ListAccessGrantsInstancesCommand.js +54 -0
  50. package/dist-es/commands/ListAccessGrantsLocationsCommand.js +54 -0
  51. package/dist-es/commands/PutAccessGrantsInstanceResourcePolicyCommand.js +54 -0
  52. package/dist-es/commands/UpdateAccessGrantsLocationCommand.js +54 -0
  53. package/dist-es/commands/index.js +20 -0
  54. package/dist-es/models/index.js +1 -0
  55. package/dist-es/models/models_0.js +28 -34
  56. package/dist-es/models/models_1.js +35 -0
  57. package/dist-es/pagination/ListAccessGrantsInstancesPaginator.js +25 -0
  58. package/dist-es/pagination/ListAccessGrantsLocationsPaginator.js +25 -0
  59. package/dist-es/pagination/ListAccessGrantsPaginator.js +25 -0
  60. package/dist-es/pagination/index.js +3 -0
  61. package/dist-es/protocols/Aws_restXml.js +1733 -233
  62. package/dist-types/S3Control.d.ts +140 -0
  63. package/dist-types/S3ControlClient.d.ts +22 -2
  64. package/dist-types/commands/AssociateAccessGrantsIdentityCenterCommand.d.ts +82 -0
  65. package/dist-types/commands/CreateAccessGrantCommand.d.ts +118 -0
  66. package/dist-types/commands/CreateAccessGrantsInstanceCommand.d.ts +93 -0
  67. package/dist-types/commands/CreateAccessGrantsLocationCommand.d.ts +111 -0
  68. package/dist-types/commands/DeleteAccessGrantCommand.d.ts +78 -0
  69. package/dist-types/commands/DeleteAccessGrantsInstanceCommand.d.ts +77 -0
  70. package/dist-types/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.d.ts +77 -0
  71. package/dist-types/commands/DeleteAccessGrantsLocationCommand.d.ts +78 -0
  72. package/dist-types/commands/DeleteStorageLensGroupCommand.d.ts +5 -4
  73. package/dist-types/commands/DissociateAccessGrantsIdentityCenterCommand.d.ts +81 -0
  74. package/dist-types/commands/GetAccessGrantCommand.d.ts +93 -0
  75. package/dist-types/commands/GetAccessGrantsInstanceCommand.d.ts +82 -0
  76. package/dist-types/commands/GetAccessGrantsInstanceForPrefixCommand.d.ts +85 -0
  77. package/dist-types/commands/GetAccessGrantsInstanceResourcePolicyCommand.d.ts +81 -0
  78. package/dist-types/commands/GetAccessGrantsLocationCommand.d.ts +84 -0
  79. package/dist-types/commands/GetDataAccessCommand.d.ts +94 -0
  80. package/dist-types/commands/GetStorageLensGroupCommand.d.ts +5 -4
  81. package/dist-types/commands/ListAccessGrantsCommand.d.ts +104 -0
  82. package/dist-types/commands/ListAccessGrantsInstancesCommand.d.ts +89 -0
  83. package/dist-types/commands/ListAccessGrantsLocationsCommand.d.ts +91 -0
  84. package/dist-types/commands/ListStorageLensGroupsCommand.d.ts +8 -5
  85. package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -10
  86. package/dist-types/commands/PutAccessGrantsInstanceResourcePolicyCommand.d.ts +83 -0
  87. package/dist-types/commands/PutAccessPointConfigurationForObjectLambdaCommand.d.ts +1 -1
  88. package/dist-types/commands/PutAccessPointPolicyCommand.d.ts +1 -1
  89. package/dist-types/commands/PutAccessPointPolicyForObjectLambdaCommand.d.ts +1 -1
  90. package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
  91. package/dist-types/commands/PutBucketPolicyCommand.d.ts +1 -1
  92. package/dist-types/commands/PutBucketReplicationCommand.d.ts +1 -1
  93. package/dist-types/commands/PutBucketTaggingCommand.d.ts +1 -1
  94. package/dist-types/commands/PutBucketVersioningCommand.d.ts +1 -1
  95. package/dist-types/commands/PutJobTaggingCommand.d.ts +1 -1
  96. package/dist-types/commands/PutMultiRegionAccessPointPolicyCommand.d.ts +1 -1
  97. package/dist-types/commands/PutPublicAccessBlockCommand.d.ts +1 -1
  98. package/dist-types/commands/PutStorageLensConfigurationCommand.d.ts +1 -1
  99. package/dist-types/commands/PutStorageLensConfigurationTaggingCommand.d.ts +1 -1
  100. package/dist-types/commands/SubmitMultiRegionAccessPointRoutesCommand.d.ts +1 -1
  101. package/dist-types/commands/TagResourceCommand.d.ts +12 -10
  102. package/dist-types/commands/UntagResourceCommand.d.ts +12 -8
  103. package/dist-types/commands/UpdateAccessGrantsLocationCommand.d.ts +90 -0
  104. package/dist-types/commands/UpdateJobPriorityCommand.d.ts +1 -1
  105. package/dist-types/commands/UpdateJobStatusCommand.d.ts +1 -1
  106. package/dist-types/commands/UpdateStorageLensGroupCommand.d.ts +6 -5
  107. package/dist-types/commands/index.d.ts +20 -0
  108. package/dist-types/models/index.d.ts +1 -0
  109. package/dist-types/models/models_0.d.ts +1246 -854
  110. package/dist-types/models/models_1.d.ts +775 -0
  111. package/dist-types/pagination/ListAccessGrantsInstancesPaginator.d.ts +7 -0
  112. package/dist-types/pagination/ListAccessGrantsLocationsPaginator.d.ts +7 -0
  113. package/dist-types/pagination/ListAccessGrantsPaginator.d.ts +7 -0
  114. package/dist-types/pagination/index.d.ts +3 -0
  115. package/dist-types/protocols/Aws_restXml.d.ts +180 -0
  116. package/dist-types/ts3.4/S3Control.d.ts +370 -0
  117. package/dist-types/ts3.4/S3ControlClient.d.ts +120 -0
  118. package/dist-types/ts3.4/commands/AssociateAccessGrantsIdentityCenterCommand.d.ts +38 -0
  119. package/dist-types/ts3.4/commands/CreateAccessGrantCommand.d.ts +39 -0
  120. package/dist-types/ts3.4/commands/CreateAccessGrantsInstanceCommand.d.ts +42 -0
  121. package/dist-types/ts3.4/commands/CreateAccessGrantsLocationCommand.d.ts +42 -0
  122. package/dist-types/ts3.4/commands/DeleteAccessGrantCommand.d.ts +34 -0
  123. package/dist-types/ts3.4/commands/DeleteAccessGrantsInstanceCommand.d.ts +38 -0
  124. package/dist-types/ts3.4/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.d.ts +38 -0
  125. package/dist-types/ts3.4/commands/DeleteAccessGrantsLocationCommand.d.ts +38 -0
  126. package/dist-types/ts3.4/commands/DissociateAccessGrantsIdentityCenterCommand.d.ts +38 -0
  127. package/dist-types/ts3.4/commands/GetAccessGrantCommand.d.ts +38 -0
  128. package/dist-types/ts3.4/commands/GetAccessGrantsInstanceCommand.d.ts +42 -0
  129. package/dist-types/ts3.4/commands/GetAccessGrantsInstanceForPrefixCommand.d.ts +42 -0
  130. package/dist-types/ts3.4/commands/GetAccessGrantsInstanceResourcePolicyCommand.d.ts +42 -0
  131. package/dist-types/ts3.4/commands/GetAccessGrantsLocationCommand.d.ts +42 -0
  132. package/dist-types/ts3.4/commands/GetDataAccessCommand.d.ts +35 -0
  133. package/dist-types/ts3.4/commands/ListAccessGrantsCommand.d.ts +38 -0
  134. package/dist-types/ts3.4/commands/ListAccessGrantsInstancesCommand.d.ts +42 -0
  135. package/dist-types/ts3.4/commands/ListAccessGrantsLocationsCommand.d.ts +42 -0
  136. package/dist-types/ts3.4/commands/ListStorageLensGroupsCommand.d.ts +2 -4
  137. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  138. package/dist-types/ts3.4/commands/PutAccessGrantsInstanceResourcePolicyCommand.d.ts +42 -0
  139. package/dist-types/ts3.4/commands/PutAccessPointConfigurationForObjectLambdaCommand.d.ts +1 -1
  140. package/dist-types/ts3.4/commands/PutAccessPointPolicyCommand.d.ts +1 -1
  141. package/dist-types/ts3.4/commands/PutAccessPointPolicyForObjectLambdaCommand.d.ts +1 -1
  142. package/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
  143. package/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +1 -1
  144. package/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +1 -1
  145. package/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +1 -1
  146. package/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +1 -1
  147. package/dist-types/ts3.4/commands/PutJobTaggingCommand.d.ts +1 -1
  148. package/dist-types/ts3.4/commands/PutMultiRegionAccessPointPolicyCommand.d.ts +1 -1
  149. package/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +1 -1
  150. package/dist-types/ts3.4/commands/PutStorageLensConfigurationCommand.d.ts +1 -1
  151. package/dist-types/ts3.4/commands/PutStorageLensConfigurationTaggingCommand.d.ts +1 -1
  152. package/dist-types/ts3.4/commands/SubmitMultiRegionAccessPointRoutesCommand.d.ts +1 -1
  153. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  154. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  155. package/dist-types/ts3.4/commands/UpdateAccessGrantsLocationCommand.d.ts +42 -0
  156. package/dist-types/ts3.4/commands/UpdateJobPriorityCommand.d.ts +1 -1
  157. package/dist-types/ts3.4/commands/UpdateJobStatusCommand.d.ts +1 -1
  158. package/dist-types/ts3.4/commands/UpdateStorageLensGroupCommand.d.ts +1 -1
  159. package/dist-types/ts3.4/commands/index.d.ts +20 -0
  160. package/dist-types/ts3.4/models/index.d.ts +1 -0
  161. package/dist-types/ts3.4/models/models_0.d.ts +228 -170
  162. package/dist-types/ts3.4/models/models_1.d.ts +205 -0
  163. package/dist-types/ts3.4/pagination/ListAccessGrantsInstancesPaginator.d.ts +11 -0
  164. package/dist-types/ts3.4/pagination/ListAccessGrantsLocationsPaginator.d.ts +11 -0
  165. package/dist-types/ts3.4/pagination/ListAccessGrantsPaginator.d.ts +11 -0
  166. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  167. package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +240 -0
  168. package/package.json +3 -3
@@ -51,6 +51,22 @@ import {
51
51
  UserAgent as __UserAgent,
52
52
  } from "@smithy/types";
53
53
  import { Readable } from "stream";
54
+ import {
55
+ AssociateAccessGrantsIdentityCenterCommandInput,
56
+ AssociateAccessGrantsIdentityCenterCommandOutput,
57
+ } from "./commands/AssociateAccessGrantsIdentityCenterCommand";
58
+ import {
59
+ CreateAccessGrantCommandInput,
60
+ CreateAccessGrantCommandOutput,
61
+ } from "./commands/CreateAccessGrantCommand";
62
+ import {
63
+ CreateAccessGrantsInstanceCommandInput,
64
+ CreateAccessGrantsInstanceCommandOutput,
65
+ } from "./commands/CreateAccessGrantsInstanceCommand";
66
+ import {
67
+ CreateAccessGrantsLocationCommandInput,
68
+ CreateAccessGrantsLocationCommandOutput,
69
+ } from "./commands/CreateAccessGrantsLocationCommand";
54
70
  import {
55
71
  CreateAccessPointCommandInput,
56
72
  CreateAccessPointCommandOutput,
@@ -75,6 +91,22 @@ import {
75
91
  CreateStorageLensGroupCommandInput,
76
92
  CreateStorageLensGroupCommandOutput,
77
93
  } from "./commands/CreateStorageLensGroupCommand";
94
+ import {
95
+ DeleteAccessGrantCommandInput,
96
+ DeleteAccessGrantCommandOutput,
97
+ } from "./commands/DeleteAccessGrantCommand";
98
+ import {
99
+ DeleteAccessGrantsInstanceCommandInput,
100
+ DeleteAccessGrantsInstanceCommandOutput,
101
+ } from "./commands/DeleteAccessGrantsInstanceCommand";
102
+ import {
103
+ DeleteAccessGrantsInstanceResourcePolicyCommandInput,
104
+ DeleteAccessGrantsInstanceResourcePolicyCommandOutput,
105
+ } from "./commands/DeleteAccessGrantsInstanceResourcePolicyCommand";
106
+ import {
107
+ DeleteAccessGrantsLocationCommandInput,
108
+ DeleteAccessGrantsLocationCommandOutput,
109
+ } from "./commands/DeleteAccessGrantsLocationCommand";
78
110
  import {
79
111
  DeleteAccessPointCommandInput,
80
112
  DeleteAccessPointCommandOutput,
@@ -143,6 +175,30 @@ import {
143
175
  DescribeMultiRegionAccessPointOperationCommandInput,
144
176
  DescribeMultiRegionAccessPointOperationCommandOutput,
145
177
  } from "./commands/DescribeMultiRegionAccessPointOperationCommand";
178
+ import {
179
+ DissociateAccessGrantsIdentityCenterCommandInput,
180
+ DissociateAccessGrantsIdentityCenterCommandOutput,
181
+ } from "./commands/DissociateAccessGrantsIdentityCenterCommand";
182
+ import {
183
+ GetAccessGrantCommandInput,
184
+ GetAccessGrantCommandOutput,
185
+ } from "./commands/GetAccessGrantCommand";
186
+ import {
187
+ GetAccessGrantsInstanceCommandInput,
188
+ GetAccessGrantsInstanceCommandOutput,
189
+ } from "./commands/GetAccessGrantsInstanceCommand";
190
+ import {
191
+ GetAccessGrantsInstanceForPrefixCommandInput,
192
+ GetAccessGrantsInstanceForPrefixCommandOutput,
193
+ } from "./commands/GetAccessGrantsInstanceForPrefixCommand";
194
+ import {
195
+ GetAccessGrantsInstanceResourcePolicyCommandInput,
196
+ GetAccessGrantsInstanceResourcePolicyCommandOutput,
197
+ } from "./commands/GetAccessGrantsInstanceResourcePolicyCommand";
198
+ import {
199
+ GetAccessGrantsLocationCommandInput,
200
+ GetAccessGrantsLocationCommandOutput,
201
+ } from "./commands/GetAccessGrantsLocationCommand";
146
202
  import {
147
203
  GetAccessPointCommandInput,
148
204
  GetAccessPointCommandOutput,
@@ -195,6 +251,10 @@ import {
195
251
  GetBucketVersioningCommandInput,
196
252
  GetBucketVersioningCommandOutput,
197
253
  } from "./commands/GetBucketVersioningCommand";
254
+ import {
255
+ GetDataAccessCommandInput,
256
+ GetDataAccessCommandOutput,
257
+ } from "./commands/GetDataAccessCommand";
198
258
  import {
199
259
  GetJobTaggingCommandInput,
200
260
  GetJobTaggingCommandOutput,
@@ -231,6 +291,18 @@ import {
231
291
  GetStorageLensGroupCommandInput,
232
292
  GetStorageLensGroupCommandOutput,
233
293
  } from "./commands/GetStorageLensGroupCommand";
294
+ import {
295
+ ListAccessGrantsCommandInput,
296
+ ListAccessGrantsCommandOutput,
297
+ } from "./commands/ListAccessGrantsCommand";
298
+ import {
299
+ ListAccessGrantsInstancesCommandInput,
300
+ ListAccessGrantsInstancesCommandOutput,
301
+ } from "./commands/ListAccessGrantsInstancesCommand";
302
+ import {
303
+ ListAccessGrantsLocationsCommandInput,
304
+ ListAccessGrantsLocationsCommandOutput,
305
+ } from "./commands/ListAccessGrantsLocationsCommand";
234
306
  import {
235
307
  ListAccessPointsCommandInput,
236
308
  ListAccessPointsCommandOutput,
@@ -263,6 +335,10 @@ import {
263
335
  ListTagsForResourceCommandInput,
264
336
  ListTagsForResourceCommandOutput,
265
337
  } from "./commands/ListTagsForResourceCommand";
338
+ import {
339
+ PutAccessGrantsInstanceResourcePolicyCommandInput,
340
+ PutAccessGrantsInstanceResourcePolicyCommandOutput,
341
+ } from "./commands/PutAccessGrantsInstanceResourcePolicyCommand";
266
342
  import {
267
343
  PutAccessPointConfigurationForObjectLambdaCommandInput,
268
344
  PutAccessPointConfigurationForObjectLambdaCommandOutput,
@@ -327,6 +403,10 @@ import {
327
403
  UntagResourceCommandInput,
328
404
  UntagResourceCommandOutput,
329
405
  } from "./commands/UntagResourceCommand";
406
+ import {
407
+ UpdateAccessGrantsLocationCommandInput,
408
+ UpdateAccessGrantsLocationCommandOutput,
409
+ } from "./commands/UpdateAccessGrantsLocationCommand";
330
410
  import {
331
411
  UpdateJobPriorityCommandInput,
332
412
  UpdateJobPriorityCommandOutput,
@@ -347,12 +427,20 @@ import {
347
427
  import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
348
428
  export { __Client };
349
429
  export type ServiceInputTypes =
430
+ | AssociateAccessGrantsIdentityCenterCommandInput
431
+ | CreateAccessGrantCommandInput
432
+ | CreateAccessGrantsInstanceCommandInput
433
+ | CreateAccessGrantsLocationCommandInput
350
434
  | CreateAccessPointCommandInput
351
435
  | CreateAccessPointForObjectLambdaCommandInput
352
436
  | CreateBucketCommandInput
353
437
  | CreateJobCommandInput
354
438
  | CreateMultiRegionAccessPointCommandInput
355
439
  | CreateStorageLensGroupCommandInput
440
+ | DeleteAccessGrantCommandInput
441
+ | DeleteAccessGrantsInstanceCommandInput
442
+ | DeleteAccessGrantsInstanceResourcePolicyCommandInput
443
+ | DeleteAccessGrantsLocationCommandInput
356
444
  | DeleteAccessPointCommandInput
357
445
  | DeleteAccessPointForObjectLambdaCommandInput
358
446
  | DeleteAccessPointPolicyCommandInput
@@ -370,6 +458,12 @@ export type ServiceInputTypes =
370
458
  | DeleteStorageLensGroupCommandInput
371
459
  | DescribeJobCommandInput
372
460
  | DescribeMultiRegionAccessPointOperationCommandInput
461
+ | DissociateAccessGrantsIdentityCenterCommandInput
462
+ | GetAccessGrantCommandInput
463
+ | GetAccessGrantsInstanceCommandInput
464
+ | GetAccessGrantsInstanceForPrefixCommandInput
465
+ | GetAccessGrantsInstanceResourcePolicyCommandInput
466
+ | GetAccessGrantsLocationCommandInput
373
467
  | GetAccessPointCommandInput
374
468
  | GetAccessPointConfigurationForObjectLambdaCommandInput
375
469
  | GetAccessPointForObjectLambdaCommandInput
@@ -383,6 +477,7 @@ export type ServiceInputTypes =
383
477
  | GetBucketReplicationCommandInput
384
478
  | GetBucketTaggingCommandInput
385
479
  | GetBucketVersioningCommandInput
480
+ | GetDataAccessCommandInput
386
481
  | GetJobTaggingCommandInput
387
482
  | GetMultiRegionAccessPointCommandInput
388
483
  | GetMultiRegionAccessPointPolicyCommandInput
@@ -392,6 +487,9 @@ export type ServiceInputTypes =
392
487
  | GetStorageLensConfigurationCommandInput
393
488
  | GetStorageLensConfigurationTaggingCommandInput
394
489
  | GetStorageLensGroupCommandInput
490
+ | ListAccessGrantsCommandInput
491
+ | ListAccessGrantsInstancesCommandInput
492
+ | ListAccessGrantsLocationsCommandInput
395
493
  | ListAccessPointsCommandInput
396
494
  | ListAccessPointsForObjectLambdaCommandInput
397
495
  | ListJobsCommandInput
@@ -400,6 +498,7 @@ export type ServiceInputTypes =
400
498
  | ListStorageLensConfigurationsCommandInput
401
499
  | ListStorageLensGroupsCommandInput
402
500
  | ListTagsForResourceCommandInput
501
+ | PutAccessGrantsInstanceResourcePolicyCommandInput
403
502
  | PutAccessPointConfigurationForObjectLambdaCommandInput
404
503
  | PutAccessPointPolicyCommandInput
405
504
  | PutAccessPointPolicyForObjectLambdaCommandInput
@@ -416,16 +515,25 @@ export type ServiceInputTypes =
416
515
  | SubmitMultiRegionAccessPointRoutesCommandInput
417
516
  | TagResourceCommandInput
418
517
  | UntagResourceCommandInput
518
+ | UpdateAccessGrantsLocationCommandInput
419
519
  | UpdateJobPriorityCommandInput
420
520
  | UpdateJobStatusCommandInput
421
521
  | UpdateStorageLensGroupCommandInput;
422
522
  export type ServiceOutputTypes =
523
+ | AssociateAccessGrantsIdentityCenterCommandOutput
524
+ | CreateAccessGrantCommandOutput
525
+ | CreateAccessGrantsInstanceCommandOutput
526
+ | CreateAccessGrantsLocationCommandOutput
423
527
  | CreateAccessPointCommandOutput
424
528
  | CreateAccessPointForObjectLambdaCommandOutput
425
529
  | CreateBucketCommandOutput
426
530
  | CreateJobCommandOutput
427
531
  | CreateMultiRegionAccessPointCommandOutput
428
532
  | CreateStorageLensGroupCommandOutput
533
+ | DeleteAccessGrantCommandOutput
534
+ | DeleteAccessGrantsInstanceCommandOutput
535
+ | DeleteAccessGrantsInstanceResourcePolicyCommandOutput
536
+ | DeleteAccessGrantsLocationCommandOutput
429
537
  | DeleteAccessPointCommandOutput
430
538
  | DeleteAccessPointForObjectLambdaCommandOutput
431
539
  | DeleteAccessPointPolicyCommandOutput
@@ -443,6 +551,12 @@ export type ServiceOutputTypes =
443
551
  | DeleteStorageLensGroupCommandOutput
444
552
  | DescribeJobCommandOutput
445
553
  | DescribeMultiRegionAccessPointOperationCommandOutput
554
+ | DissociateAccessGrantsIdentityCenterCommandOutput
555
+ | GetAccessGrantCommandOutput
556
+ | GetAccessGrantsInstanceCommandOutput
557
+ | GetAccessGrantsInstanceForPrefixCommandOutput
558
+ | GetAccessGrantsInstanceResourcePolicyCommandOutput
559
+ | GetAccessGrantsLocationCommandOutput
446
560
  | GetAccessPointCommandOutput
447
561
  | GetAccessPointConfigurationForObjectLambdaCommandOutput
448
562
  | GetAccessPointForObjectLambdaCommandOutput
@@ -456,6 +570,7 @@ export type ServiceOutputTypes =
456
570
  | GetBucketReplicationCommandOutput
457
571
  | GetBucketTaggingCommandOutput
458
572
  | GetBucketVersioningCommandOutput
573
+ | GetDataAccessCommandOutput
459
574
  | GetJobTaggingCommandOutput
460
575
  | GetMultiRegionAccessPointCommandOutput
461
576
  | GetMultiRegionAccessPointPolicyCommandOutput
@@ -465,6 +580,9 @@ export type ServiceOutputTypes =
465
580
  | GetStorageLensConfigurationCommandOutput
466
581
  | GetStorageLensConfigurationTaggingCommandOutput
467
582
  | GetStorageLensGroupCommandOutput
583
+ | ListAccessGrantsCommandOutput
584
+ | ListAccessGrantsInstancesCommandOutput
585
+ | ListAccessGrantsLocationsCommandOutput
468
586
  | ListAccessPointsCommandOutput
469
587
  | ListAccessPointsForObjectLambdaCommandOutput
470
588
  | ListJobsCommandOutput
@@ -473,6 +591,7 @@ export type ServiceOutputTypes =
473
591
  | ListStorageLensConfigurationsCommandOutput
474
592
  | ListStorageLensGroupsCommandOutput
475
593
  | ListTagsForResourceCommandOutput
594
+ | PutAccessGrantsInstanceResourcePolicyCommandOutput
476
595
  | PutAccessPointConfigurationForObjectLambdaCommandOutput
477
596
  | PutAccessPointPolicyCommandOutput
478
597
  | PutAccessPointPolicyForObjectLambdaCommandOutput
@@ -489,6 +608,7 @@ export type ServiceOutputTypes =
489
608
  | SubmitMultiRegionAccessPointRoutesCommandOutput
490
609
  | TagResourceCommandOutput
491
610
  | UntagResourceCommandOutput
611
+ | UpdateAccessGrantsLocationCommandOutput
492
612
  | UpdateJobPriorityCommandOutput
493
613
  | UpdateJobStatusCommandOutput
494
614
  | UpdateStorageLensGroupCommandOutput;
@@ -0,0 +1,38 @@
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 { AssociateAccessGrantsIdentityCenterRequest } from "../models/models_0";
10
+ import {
11
+ S3ControlClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../S3ControlClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface AssociateAccessGrantsIdentityCenterCommandInput
17
+ extends AssociateAccessGrantsIdentityCenterRequest {}
18
+ export interface AssociateAccessGrantsIdentityCenterCommandOutput
19
+ extends __MetadataBearer {}
20
+ export declare class AssociateAccessGrantsIdentityCenterCommand extends $Command<
21
+ AssociateAccessGrantsIdentityCenterCommandInput,
22
+ AssociateAccessGrantsIdentityCenterCommandOutput,
23
+ S3ControlClientResolvedConfig
24
+ > {
25
+ readonly input: AssociateAccessGrantsIdentityCenterCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: AssociateAccessGrantsIdentityCenterCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: S3ControlClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<
33
+ AssociateAccessGrantsIdentityCenterCommandInput,
34
+ AssociateAccessGrantsIdentityCenterCommandOutput
35
+ >;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -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
+ CreateAccessGrantRequest,
11
+ CreateAccessGrantResult,
12
+ } from "../models/models_0";
13
+ import {
14
+ S3ControlClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../S3ControlClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateAccessGrantCommandInput
20
+ extends CreateAccessGrantRequest {}
21
+ export interface CreateAccessGrantCommandOutput
22
+ extends CreateAccessGrantResult,
23
+ __MetadataBearer {}
24
+ export declare class CreateAccessGrantCommand extends $Command<
25
+ CreateAccessGrantCommandInput,
26
+ CreateAccessGrantCommandOutput,
27
+ S3ControlClientResolvedConfig
28
+ > {
29
+ readonly input: CreateAccessGrantCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreateAccessGrantCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: S3ControlClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<CreateAccessGrantCommandInput, CreateAccessGrantCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -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
+ CreateAccessGrantsInstanceRequest,
11
+ CreateAccessGrantsInstanceResult,
12
+ } from "../models/models_0";
13
+ import {
14
+ S3ControlClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../S3ControlClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateAccessGrantsInstanceCommandInput
20
+ extends CreateAccessGrantsInstanceRequest {}
21
+ export interface CreateAccessGrantsInstanceCommandOutput
22
+ extends CreateAccessGrantsInstanceResult,
23
+ __MetadataBearer {}
24
+ export declare class CreateAccessGrantsInstanceCommand extends $Command<
25
+ CreateAccessGrantsInstanceCommandInput,
26
+ CreateAccessGrantsInstanceCommandOutput,
27
+ S3ControlClientResolvedConfig
28
+ > {
29
+ readonly input: CreateAccessGrantsInstanceCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreateAccessGrantsInstanceCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: S3ControlClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ CreateAccessGrantsInstanceCommandInput,
38
+ CreateAccessGrantsInstanceCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -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
+ CreateAccessGrantsLocationRequest,
11
+ CreateAccessGrantsLocationResult,
12
+ } from "../models/models_0";
13
+ import {
14
+ S3ControlClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../S3ControlClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateAccessGrantsLocationCommandInput
20
+ extends CreateAccessGrantsLocationRequest {}
21
+ export interface CreateAccessGrantsLocationCommandOutput
22
+ extends CreateAccessGrantsLocationResult,
23
+ __MetadataBearer {}
24
+ export declare class CreateAccessGrantsLocationCommand extends $Command<
25
+ CreateAccessGrantsLocationCommandInput,
26
+ CreateAccessGrantsLocationCommandOutput,
27
+ S3ControlClientResolvedConfig
28
+ > {
29
+ readonly input: CreateAccessGrantsLocationCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreateAccessGrantsLocationCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: S3ControlClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ CreateAccessGrantsLocationCommandInput,
38
+ CreateAccessGrantsLocationCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,34 @@
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 { DeleteAccessGrantRequest } from "../models/models_0";
10
+ import {
11
+ S3ControlClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../S3ControlClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface DeleteAccessGrantCommandInput
17
+ extends DeleteAccessGrantRequest {}
18
+ export interface DeleteAccessGrantCommandOutput extends __MetadataBearer {}
19
+ export declare class DeleteAccessGrantCommand extends $Command<
20
+ DeleteAccessGrantCommandInput,
21
+ DeleteAccessGrantCommandOutput,
22
+ S3ControlClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteAccessGrantCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: DeleteAccessGrantCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: S3ControlClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeleteAccessGrantCommandInput, DeleteAccessGrantCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -0,0 +1,38 @@
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 { DeleteAccessGrantsInstanceRequest } from "../models/models_0";
10
+ import {
11
+ S3ControlClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../S3ControlClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface DeleteAccessGrantsInstanceCommandInput
17
+ extends DeleteAccessGrantsInstanceRequest {}
18
+ export interface DeleteAccessGrantsInstanceCommandOutput
19
+ extends __MetadataBearer {}
20
+ export declare class DeleteAccessGrantsInstanceCommand extends $Command<
21
+ DeleteAccessGrantsInstanceCommandInput,
22
+ DeleteAccessGrantsInstanceCommandOutput,
23
+ S3ControlClientResolvedConfig
24
+ > {
25
+ readonly input: DeleteAccessGrantsInstanceCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: DeleteAccessGrantsInstanceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: S3ControlClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<
33
+ DeleteAccessGrantsInstanceCommandInput,
34
+ DeleteAccessGrantsInstanceCommandOutput
35
+ >;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
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 { DeleteAccessGrantsInstanceResourcePolicyRequest } from "../models/models_0";
10
+ import {
11
+ S3ControlClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../S3ControlClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface DeleteAccessGrantsInstanceResourcePolicyCommandInput
17
+ extends DeleteAccessGrantsInstanceResourcePolicyRequest {}
18
+ export interface DeleteAccessGrantsInstanceResourcePolicyCommandOutput
19
+ extends __MetadataBearer {}
20
+ export declare class DeleteAccessGrantsInstanceResourcePolicyCommand extends $Command<
21
+ DeleteAccessGrantsInstanceResourcePolicyCommandInput,
22
+ DeleteAccessGrantsInstanceResourcePolicyCommandOutput,
23
+ S3ControlClientResolvedConfig
24
+ > {
25
+ readonly input: DeleteAccessGrantsInstanceResourcePolicyCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: DeleteAccessGrantsInstanceResourcePolicyCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: S3ControlClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<
33
+ DeleteAccessGrantsInstanceResourcePolicyCommandInput,
34
+ DeleteAccessGrantsInstanceResourcePolicyCommandOutput
35
+ >;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
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 { DeleteAccessGrantsLocationRequest } from "../models/models_0";
10
+ import {
11
+ S3ControlClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../S3ControlClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface DeleteAccessGrantsLocationCommandInput
17
+ extends DeleteAccessGrantsLocationRequest {}
18
+ export interface DeleteAccessGrantsLocationCommandOutput
19
+ extends __MetadataBearer {}
20
+ export declare class DeleteAccessGrantsLocationCommand extends $Command<
21
+ DeleteAccessGrantsLocationCommandInput,
22
+ DeleteAccessGrantsLocationCommandOutput,
23
+ S3ControlClientResolvedConfig
24
+ > {
25
+ readonly input: DeleteAccessGrantsLocationCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: DeleteAccessGrantsLocationCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: S3ControlClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<
33
+ DeleteAccessGrantsLocationCommandInput,
34
+ DeleteAccessGrantsLocationCommandOutput
35
+ >;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
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 { DissociateAccessGrantsIdentityCenterRequest } from "../models/models_0";
10
+ import {
11
+ S3ControlClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../S3ControlClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface DissociateAccessGrantsIdentityCenterCommandInput
17
+ extends DissociateAccessGrantsIdentityCenterRequest {}
18
+ export interface DissociateAccessGrantsIdentityCenterCommandOutput
19
+ extends __MetadataBearer {}
20
+ export declare class DissociateAccessGrantsIdentityCenterCommand extends $Command<
21
+ DissociateAccessGrantsIdentityCenterCommandInput,
22
+ DissociateAccessGrantsIdentityCenterCommandOutput,
23
+ S3ControlClientResolvedConfig
24
+ > {
25
+ readonly input: DissociateAccessGrantsIdentityCenterCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: DissociateAccessGrantsIdentityCenterCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: S3ControlClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<
33
+ DissociateAccessGrantsIdentityCenterCommandInput,
34
+ DissociateAccessGrantsIdentityCenterCommandOutput
35
+ >;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
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
+ GetAccessGrantRequest,
11
+ GetAccessGrantResult,
12
+ } from "../models/models_0";
13
+ import {
14
+ S3ControlClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../S3ControlClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetAccessGrantCommandInput extends GetAccessGrantRequest {}
20
+ export interface GetAccessGrantCommandOutput
21
+ extends GetAccessGrantResult,
22
+ __MetadataBearer {}
23
+ export declare class GetAccessGrantCommand extends $Command<
24
+ GetAccessGrantCommandInput,
25
+ GetAccessGrantCommandOutput,
26
+ S3ControlClientResolvedConfig
27
+ > {
28
+ readonly input: GetAccessGrantCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: GetAccessGrantCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: S3ControlClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetAccessGrantCommandInput, GetAccessGrantCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }