@aws-sdk/client-securityhub 3.454.0 → 3.459.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 (109) hide show
  1. package/README.md +163 -67
  2. package/dist-cjs/SecurityHub.js +24 -0
  3. package/dist-cjs/commands/BatchGetConfigurationPolicyAssociationsCommand.js +51 -0
  4. package/dist-cjs/commands/CreateConfigurationPolicyCommand.js +51 -0
  5. package/dist-cjs/commands/DeleteConfigurationPolicyCommand.js +51 -0
  6. package/dist-cjs/commands/GetConfigurationPolicyAssociationCommand.js +51 -0
  7. package/dist-cjs/commands/GetConfigurationPolicyCommand.js +51 -0
  8. package/dist-cjs/commands/GetSecurityControlDefinitionCommand.js +51 -0
  9. package/dist-cjs/commands/ListConfigurationPoliciesCommand.js +51 -0
  10. package/dist-cjs/commands/ListConfigurationPolicyAssociationsCommand.js +51 -0
  11. package/dist-cjs/commands/StartConfigurationPolicyAssociationCommand.js +51 -0
  12. package/dist-cjs/commands/StartConfigurationPolicyDisassociationCommand.js +51 -0
  13. package/dist-cjs/commands/UpdateConfigurationPolicyCommand.js +51 -0
  14. package/dist-cjs/commands/UpdateSecurityControlCommand.js +51 -0
  15. package/dist-cjs/commands/index.js +12 -0
  16. package/dist-cjs/models/models_0.js +10 -1
  17. package/dist-cjs/models/models_2.js +104 -1
  18. package/dist-cjs/pagination/ListConfigurationPoliciesPaginator.js +29 -0
  19. package/dist-cjs/pagination/ListConfigurationPolicyAssociationsPaginator.js +29 -0
  20. package/dist-cjs/pagination/index.js +2 -0
  21. package/dist-cjs/protocols/Aws_restJson1.js +1283 -31
  22. package/dist-es/SecurityHub.js +24 -0
  23. package/dist-es/commands/BatchGetConfigurationPolicyAssociationsCommand.js +47 -0
  24. package/dist-es/commands/CreateConfigurationPolicyCommand.js +47 -0
  25. package/dist-es/commands/DeleteConfigurationPolicyCommand.js +47 -0
  26. package/dist-es/commands/GetConfigurationPolicyAssociationCommand.js +47 -0
  27. package/dist-es/commands/GetConfigurationPolicyCommand.js +47 -0
  28. package/dist-es/commands/GetSecurityControlDefinitionCommand.js +47 -0
  29. package/dist-es/commands/ListConfigurationPoliciesCommand.js +47 -0
  30. package/dist-es/commands/ListConfigurationPolicyAssociationsCommand.js +47 -0
  31. package/dist-es/commands/StartConfigurationPolicyAssociationCommand.js +47 -0
  32. package/dist-es/commands/StartConfigurationPolicyDisassociationCommand.js +47 -0
  33. package/dist-es/commands/UpdateConfigurationPolicyCommand.js +47 -0
  34. package/dist-es/commands/UpdateSecurityControlCommand.js +47 -0
  35. package/dist-es/commands/index.js +12 -0
  36. package/dist-es/models/models_0.js +9 -0
  37. package/dist-es/models/models_2.js +102 -0
  38. package/dist-es/pagination/ListConfigurationPoliciesPaginator.js +25 -0
  39. package/dist-es/pagination/ListConfigurationPolicyAssociationsPaginator.js +25 -0
  40. package/dist-es/pagination/index.js +2 -0
  41. package/dist-es/protocols/Aws_restJson1.js +1258 -31
  42. package/dist-types/SecurityHub.d.ts +84 -0
  43. package/dist-types/SecurityHubClient.d.ts +14 -2
  44. package/dist-types/commands/BatchDisableStandardsCommand.d.ts +3 -0
  45. package/dist-types/commands/BatchEnableStandardsCommand.d.ts +3 -0
  46. package/dist-types/commands/BatchGetAutomationRulesCommand.d.ts +7 -0
  47. package/dist-types/commands/BatchGetConfigurationPolicyAssociationsCommand.d.ts +128 -0
  48. package/dist-types/commands/BatchGetSecurityControlsCommand.d.ts +45 -2
  49. package/dist-types/commands/BatchImportFindingsCommand.d.ts +13 -3
  50. package/dist-types/commands/BatchUpdateAutomationRulesCommand.d.ts +7 -0
  51. package/dist-types/commands/BatchUpdateStandardsControlAssociationsCommand.d.ts +3 -0
  52. package/dist-types/commands/CreateAutomationRuleCommand.d.ts +7 -0
  53. package/dist-types/commands/CreateConfigurationPolicyCommand.d.ts +189 -0
  54. package/dist-types/commands/CreateInsightCommand.d.ts +17 -0
  55. package/dist-types/commands/CreateMembersCommand.d.ts +3 -0
  56. package/dist-types/commands/DeleteConfigurationPolicyCommand.d.ts +98 -0
  57. package/dist-types/commands/DescribeOrganizationConfigurationCommand.d.ts +7 -2
  58. package/dist-types/commands/DisableOrganizationAdminAccountCommand.d.ts +3 -0
  59. package/dist-types/commands/DisableSecurityHubCommand.d.ts +3 -0
  60. package/dist-types/commands/DisassociateMembersCommand.d.ts +3 -0
  61. package/dist-types/commands/EnableOrganizationAdminAccountCommand.d.ts +3 -0
  62. package/dist-types/commands/GetConfigurationPolicyAssociationCommand.d.ts +107 -0
  63. package/dist-types/commands/GetConfigurationPolicyCommand.d.ts +143 -0
  64. package/dist-types/commands/GetFindingsCommand.d.ts +30 -3
  65. package/dist-types/commands/GetInsightsCommand.d.ts +17 -0
  66. package/dist-types/commands/GetSecurityControlDefinitionCommand.d.ts +193 -0
  67. package/dist-types/commands/ListConfigurationPoliciesCommand.d.ts +104 -0
  68. package/dist-types/commands/ListConfigurationPolicyAssociationsCommand.d.ts +110 -0
  69. package/dist-types/commands/ListSecurityControlDefinitionsCommand.d.ts +65 -0
  70. package/dist-types/commands/StartConfigurationPolicyAssociationCommand.d.ts +108 -0
  71. package/dist-types/commands/StartConfigurationPolicyDisassociationCommand.d.ts +102 -0
  72. package/dist-types/commands/UpdateConfigurationPolicyCommand.d.ts +191 -0
  73. package/dist-types/commands/UpdateFindingsCommand.d.ts +17 -0
  74. package/dist-types/commands/UpdateInsightCommand.d.ts +17 -0
  75. package/dist-types/commands/UpdateOrganizationConfigurationCommand.d.ts +16 -2
  76. package/dist-types/commands/UpdateSecurityControlCommand.d.ts +141 -0
  77. package/dist-types/commands/UpdateSecurityHubConfigurationCommand.d.ts +3 -0
  78. package/dist-types/commands/UpdateStandardsControlCommand.d.ts +3 -0
  79. package/dist-types/commands/index.d.ts +12 -0
  80. package/dist-types/models/models_0.d.ts +101 -193
  81. package/dist-types/models/models_1.d.ts +221 -86
  82. package/dist-types/models/models_2.d.ts +2377 -394
  83. package/dist-types/pagination/ListConfigurationPoliciesPaginator.d.ts +7 -0
  84. package/dist-types/pagination/ListConfigurationPolicyAssociationsPaginator.d.ts +7 -0
  85. package/dist-types/pagination/index.d.ts +2 -0
  86. package/dist-types/protocols/Aws_restJson1.d.ts +108 -0
  87. package/dist-types/ts3.4/SecurityHub.d.ts +234 -0
  88. package/dist-types/ts3.4/SecurityHubClient.d.ts +72 -0
  89. package/dist-types/ts3.4/commands/BatchGetConfigurationPolicyAssociationsCommand.d.ts +42 -0
  90. package/dist-types/ts3.4/commands/CreateConfigurationPolicyCommand.d.ts +42 -0
  91. package/dist-types/ts3.4/commands/DeleteConfigurationPolicyCommand.d.ts +42 -0
  92. package/dist-types/ts3.4/commands/GetConfigurationPolicyAssociationCommand.d.ts +42 -0
  93. package/dist-types/ts3.4/commands/GetConfigurationPolicyCommand.d.ts +42 -0
  94. package/dist-types/ts3.4/commands/GetSecurityControlDefinitionCommand.d.ts +42 -0
  95. package/dist-types/ts3.4/commands/ListConfigurationPoliciesCommand.d.ts +42 -0
  96. package/dist-types/ts3.4/commands/ListConfigurationPolicyAssociationsCommand.d.ts +42 -0
  97. package/dist-types/ts3.4/commands/StartConfigurationPolicyAssociationCommand.d.ts +42 -0
  98. package/dist-types/ts3.4/commands/StartConfigurationPolicyDisassociationCommand.d.ts +42 -0
  99. package/dist-types/ts3.4/commands/UpdateConfigurationPolicyCommand.d.ts +42 -0
  100. package/dist-types/ts3.4/commands/UpdateSecurityControlCommand.d.ts +42 -0
  101. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  102. package/dist-types/ts3.4/models/models_0.d.ts +23 -26
  103. package/dist-types/ts3.4/models/models_1.d.ts +37 -15
  104. package/dist-types/ts3.4/models/models_2.d.ts +602 -17
  105. package/dist-types/ts3.4/pagination/ListConfigurationPoliciesPaginator.d.ts +11 -0
  106. package/dist-types/ts3.4/pagination/ListConfigurationPolicyAssociationsPaginator.d.ts +11 -0
  107. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  108. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +144 -0
  109. package/package.json +3 -3
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListConfigurationPoliciesCommandInput,
4
+ ListConfigurationPoliciesCommandOutput,
5
+ } from "../commands/ListConfigurationPoliciesCommand";
6
+ import { SecurityHubPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListConfigurationPolicies(
8
+ config: SecurityHubPaginationConfiguration,
9
+ input: ListConfigurationPoliciesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListConfigurationPoliciesCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListConfigurationPolicyAssociationsCommandInput,
4
+ ListConfigurationPolicyAssociationsCommandOutput,
5
+ } from "../commands/ListConfigurationPolicyAssociationsCommand";
6
+ import { SecurityHubPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListConfigurationPolicyAssociations(
8
+ config: SecurityHubPaginationConfiguration,
9
+ input: ListConfigurationPolicyAssociationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListConfigurationPolicyAssociationsCommandOutput>;
@@ -7,6 +7,8 @@ export * from "./GetFindingHistoryPaginator";
7
7
  export * from "./GetFindingsPaginator";
8
8
  export * from "./GetInsightsPaginator";
9
9
  export * from "./Interfaces";
10
+ export * from "./ListConfigurationPoliciesPaginator";
11
+ export * from "./ListConfigurationPolicyAssociationsPaginator";
10
12
  export * from "./ListEnabledProductsForImportPaginator";
11
13
  export * from "./ListFindingAggregatorsPaginator";
12
14
  export * from "./ListInvitationsPaginator";
@@ -27,6 +27,10 @@ import {
27
27
  BatchGetAutomationRulesCommandInput,
28
28
  BatchGetAutomationRulesCommandOutput,
29
29
  } from "../commands/BatchGetAutomationRulesCommand";
30
+ import {
31
+ BatchGetConfigurationPolicyAssociationsCommandInput,
32
+ BatchGetConfigurationPolicyAssociationsCommandOutput,
33
+ } from "../commands/BatchGetConfigurationPolicyAssociationsCommand";
30
34
  import {
31
35
  BatchGetSecurityControlsCommandInput,
32
36
  BatchGetSecurityControlsCommandOutput,
@@ -59,6 +63,10 @@ import {
59
63
  CreateAutomationRuleCommandInput,
60
64
  CreateAutomationRuleCommandOutput,
61
65
  } from "../commands/CreateAutomationRuleCommand";
66
+ import {
67
+ CreateConfigurationPolicyCommandInput,
68
+ CreateConfigurationPolicyCommandOutput,
69
+ } from "../commands/CreateConfigurationPolicyCommand";
62
70
  import {
63
71
  CreateFindingAggregatorCommandInput,
64
72
  CreateFindingAggregatorCommandOutput,
@@ -79,6 +87,10 @@ import {
79
87
  DeleteActionTargetCommandInput,
80
88
  DeleteActionTargetCommandOutput,
81
89
  } from "../commands/DeleteActionTargetCommand";
90
+ import {
91
+ DeleteConfigurationPolicyCommandInput,
92
+ DeleteConfigurationPolicyCommandOutput,
93
+ } from "../commands/DeleteConfigurationPolicyCommand";
82
94
  import {
83
95
  DeleteFindingAggregatorCommandInput,
84
96
  DeleteFindingAggregatorCommandOutput,
@@ -159,6 +171,14 @@ import {
159
171
  GetAdministratorAccountCommandInput,
160
172
  GetAdministratorAccountCommandOutput,
161
173
  } from "../commands/GetAdministratorAccountCommand";
174
+ import {
175
+ GetConfigurationPolicyAssociationCommandInput,
176
+ GetConfigurationPolicyAssociationCommandOutput,
177
+ } from "../commands/GetConfigurationPolicyAssociationCommand";
178
+ import {
179
+ GetConfigurationPolicyCommandInput,
180
+ GetConfigurationPolicyCommandOutput,
181
+ } from "../commands/GetConfigurationPolicyCommand";
162
182
  import {
163
183
  GetEnabledStandardsCommandInput,
164
184
  GetEnabledStandardsCommandOutput,
@@ -195,6 +215,10 @@ import {
195
215
  GetMembersCommandInput,
196
216
  GetMembersCommandOutput,
197
217
  } from "../commands/GetMembersCommand";
218
+ import {
219
+ GetSecurityControlDefinitionCommandInput,
220
+ GetSecurityControlDefinitionCommandOutput,
221
+ } from "../commands/GetSecurityControlDefinitionCommand";
198
222
  import {
199
223
  InviteMembersCommandInput,
200
224
  InviteMembersCommandOutput,
@@ -203,6 +227,14 @@ import {
203
227
  ListAutomationRulesCommandInput,
204
228
  ListAutomationRulesCommandOutput,
205
229
  } from "../commands/ListAutomationRulesCommand";
230
+ import {
231
+ ListConfigurationPoliciesCommandInput,
232
+ ListConfigurationPoliciesCommandOutput,
233
+ } from "../commands/ListConfigurationPoliciesCommand";
234
+ import {
235
+ ListConfigurationPolicyAssociationsCommandInput,
236
+ ListConfigurationPolicyAssociationsCommandOutput,
237
+ } from "../commands/ListConfigurationPolicyAssociationsCommand";
206
238
  import {
207
239
  ListEnabledProductsForImportCommandInput,
208
240
  ListEnabledProductsForImportCommandOutput,
@@ -235,6 +267,14 @@ import {
235
267
  ListTagsForResourceCommandInput,
236
268
  ListTagsForResourceCommandOutput,
237
269
  } from "../commands/ListTagsForResourceCommand";
270
+ import {
271
+ StartConfigurationPolicyAssociationCommandInput,
272
+ StartConfigurationPolicyAssociationCommandOutput,
273
+ } from "../commands/StartConfigurationPolicyAssociationCommand";
274
+ import {
275
+ StartConfigurationPolicyDisassociationCommandInput,
276
+ StartConfigurationPolicyDisassociationCommandOutput,
277
+ } from "../commands/StartConfigurationPolicyDisassociationCommand";
238
278
  import {
239
279
  TagResourceCommandInput,
240
280
  TagResourceCommandOutput,
@@ -247,6 +287,10 @@ import {
247
287
  UpdateActionTargetCommandInput,
248
288
  UpdateActionTargetCommandOutput,
249
289
  } from "../commands/UpdateActionTargetCommand";
290
+ import {
291
+ UpdateConfigurationPolicyCommandInput,
292
+ UpdateConfigurationPolicyCommandOutput,
293
+ } from "../commands/UpdateConfigurationPolicyCommand";
250
294
  import {
251
295
  UpdateFindingAggregatorCommandInput,
252
296
  UpdateFindingAggregatorCommandOutput,
@@ -263,6 +307,10 @@ import {
263
307
  UpdateOrganizationConfigurationCommandInput,
264
308
  UpdateOrganizationConfigurationCommandOutput,
265
309
  } from "../commands/UpdateOrganizationConfigurationCommand";
310
+ import {
311
+ UpdateSecurityControlCommandInput,
312
+ UpdateSecurityControlCommandOutput,
313
+ } from "../commands/UpdateSecurityControlCommand";
266
314
  import {
267
315
  UpdateSecurityHubConfigurationCommandInput,
268
316
  UpdateSecurityHubConfigurationCommandOutput,
@@ -295,6 +343,10 @@ export declare const se_BatchGetAutomationRulesCommand: (
295
343
  input: BatchGetAutomationRulesCommandInput,
296
344
  context: __SerdeContext
297
345
  ) => Promise<__HttpRequest>;
346
+ export declare const se_BatchGetConfigurationPolicyAssociationsCommand: (
347
+ input: BatchGetConfigurationPolicyAssociationsCommandInput,
348
+ context: __SerdeContext
349
+ ) => Promise<__HttpRequest>;
298
350
  export declare const se_BatchGetSecurityControlsCommand: (
299
351
  input: BatchGetSecurityControlsCommandInput,
300
352
  context: __SerdeContext
@@ -327,6 +379,10 @@ export declare const se_CreateAutomationRuleCommand: (
327
379
  input: CreateAutomationRuleCommandInput,
328
380
  context: __SerdeContext
329
381
  ) => Promise<__HttpRequest>;
382
+ export declare const se_CreateConfigurationPolicyCommand: (
383
+ input: CreateConfigurationPolicyCommandInput,
384
+ context: __SerdeContext
385
+ ) => Promise<__HttpRequest>;
330
386
  export declare const se_CreateFindingAggregatorCommand: (
331
387
  input: CreateFindingAggregatorCommandInput,
332
388
  context: __SerdeContext
@@ -347,6 +403,10 @@ export declare const se_DeleteActionTargetCommand: (
347
403
  input: DeleteActionTargetCommandInput,
348
404
  context: __SerdeContext
349
405
  ) => Promise<__HttpRequest>;
406
+ export declare const se_DeleteConfigurationPolicyCommand: (
407
+ input: DeleteConfigurationPolicyCommandInput,
408
+ context: __SerdeContext
409
+ ) => Promise<__HttpRequest>;
350
410
  export declare const se_DeleteFindingAggregatorCommand: (
351
411
  input: DeleteFindingAggregatorCommandInput,
352
412
  context: __SerdeContext
@@ -427,6 +487,14 @@ export declare const se_GetAdministratorAccountCommand: (
427
487
  input: GetAdministratorAccountCommandInput,
428
488
  context: __SerdeContext
429
489
  ) => Promise<__HttpRequest>;
490
+ export declare const se_GetConfigurationPolicyCommand: (
491
+ input: GetConfigurationPolicyCommandInput,
492
+ context: __SerdeContext
493
+ ) => Promise<__HttpRequest>;
494
+ export declare const se_GetConfigurationPolicyAssociationCommand: (
495
+ input: GetConfigurationPolicyAssociationCommandInput,
496
+ context: __SerdeContext
497
+ ) => Promise<__HttpRequest>;
430
498
  export declare const se_GetEnabledStandardsCommand: (
431
499
  input: GetEnabledStandardsCommandInput,
432
500
  context: __SerdeContext
@@ -463,6 +531,10 @@ export declare const se_GetMembersCommand: (
463
531
  input: GetMembersCommandInput,
464
532
  context: __SerdeContext
465
533
  ) => Promise<__HttpRequest>;
534
+ export declare const se_GetSecurityControlDefinitionCommand: (
535
+ input: GetSecurityControlDefinitionCommandInput,
536
+ context: __SerdeContext
537
+ ) => Promise<__HttpRequest>;
466
538
  export declare const se_InviteMembersCommand: (
467
539
  input: InviteMembersCommandInput,
468
540
  context: __SerdeContext
@@ -471,6 +543,14 @@ export declare const se_ListAutomationRulesCommand: (
471
543
  input: ListAutomationRulesCommandInput,
472
544
  context: __SerdeContext
473
545
  ) => Promise<__HttpRequest>;
546
+ export declare const se_ListConfigurationPoliciesCommand: (
547
+ input: ListConfigurationPoliciesCommandInput,
548
+ context: __SerdeContext
549
+ ) => Promise<__HttpRequest>;
550
+ export declare const se_ListConfigurationPolicyAssociationsCommand: (
551
+ input: ListConfigurationPolicyAssociationsCommandInput,
552
+ context: __SerdeContext
553
+ ) => Promise<__HttpRequest>;
474
554
  export declare const se_ListEnabledProductsForImportCommand: (
475
555
  input: ListEnabledProductsForImportCommandInput,
476
556
  context: __SerdeContext
@@ -503,6 +583,14 @@ export declare const se_ListTagsForResourceCommand: (
503
583
  input: ListTagsForResourceCommandInput,
504
584
  context: __SerdeContext
505
585
  ) => Promise<__HttpRequest>;
586
+ export declare const se_StartConfigurationPolicyAssociationCommand: (
587
+ input: StartConfigurationPolicyAssociationCommandInput,
588
+ context: __SerdeContext
589
+ ) => Promise<__HttpRequest>;
590
+ export declare const se_StartConfigurationPolicyDisassociationCommand: (
591
+ input: StartConfigurationPolicyDisassociationCommandInput,
592
+ context: __SerdeContext
593
+ ) => Promise<__HttpRequest>;
506
594
  export declare const se_TagResourceCommand: (
507
595
  input: TagResourceCommandInput,
508
596
  context: __SerdeContext
@@ -515,6 +603,10 @@ export declare const se_UpdateActionTargetCommand: (
515
603
  input: UpdateActionTargetCommandInput,
516
604
  context: __SerdeContext
517
605
  ) => Promise<__HttpRequest>;
606
+ export declare const se_UpdateConfigurationPolicyCommand: (
607
+ input: UpdateConfigurationPolicyCommandInput,
608
+ context: __SerdeContext
609
+ ) => Promise<__HttpRequest>;
518
610
  export declare const se_UpdateFindingAggregatorCommand: (
519
611
  input: UpdateFindingAggregatorCommandInput,
520
612
  context: __SerdeContext
@@ -531,6 +623,10 @@ export declare const se_UpdateOrganizationConfigurationCommand: (
531
623
  input: UpdateOrganizationConfigurationCommandInput,
532
624
  context: __SerdeContext
533
625
  ) => Promise<__HttpRequest>;
626
+ export declare const se_UpdateSecurityControlCommand: (
627
+ input: UpdateSecurityControlCommandInput,
628
+ context: __SerdeContext
629
+ ) => Promise<__HttpRequest>;
534
630
  export declare const se_UpdateSecurityHubConfigurationCommand: (
535
631
  input: UpdateSecurityHubConfigurationCommandInput,
536
632
  context: __SerdeContext
@@ -563,6 +659,10 @@ export declare const de_BatchGetAutomationRulesCommand: (
563
659
  output: __HttpResponse,
564
660
  context: __SerdeContext
565
661
  ) => Promise<BatchGetAutomationRulesCommandOutput>;
662
+ export declare const de_BatchGetConfigurationPolicyAssociationsCommand: (
663
+ output: __HttpResponse,
664
+ context: __SerdeContext
665
+ ) => Promise<BatchGetConfigurationPolicyAssociationsCommandOutput>;
566
666
  export declare const de_BatchGetSecurityControlsCommand: (
567
667
  output: __HttpResponse,
568
668
  context: __SerdeContext
@@ -595,6 +695,10 @@ export declare const de_CreateAutomationRuleCommand: (
595
695
  output: __HttpResponse,
596
696
  context: __SerdeContext
597
697
  ) => Promise<CreateAutomationRuleCommandOutput>;
698
+ export declare const de_CreateConfigurationPolicyCommand: (
699
+ output: __HttpResponse,
700
+ context: __SerdeContext
701
+ ) => Promise<CreateConfigurationPolicyCommandOutput>;
598
702
  export declare const de_CreateFindingAggregatorCommand: (
599
703
  output: __HttpResponse,
600
704
  context: __SerdeContext
@@ -615,6 +719,10 @@ export declare const de_DeleteActionTargetCommand: (
615
719
  output: __HttpResponse,
616
720
  context: __SerdeContext
617
721
  ) => Promise<DeleteActionTargetCommandOutput>;
722
+ export declare const de_DeleteConfigurationPolicyCommand: (
723
+ output: __HttpResponse,
724
+ context: __SerdeContext
725
+ ) => Promise<DeleteConfigurationPolicyCommandOutput>;
618
726
  export declare const de_DeleteFindingAggregatorCommand: (
619
727
  output: __HttpResponse,
620
728
  context: __SerdeContext
@@ -695,6 +803,14 @@ export declare const de_GetAdministratorAccountCommand: (
695
803
  output: __HttpResponse,
696
804
  context: __SerdeContext
697
805
  ) => Promise<GetAdministratorAccountCommandOutput>;
806
+ export declare const de_GetConfigurationPolicyCommand: (
807
+ output: __HttpResponse,
808
+ context: __SerdeContext
809
+ ) => Promise<GetConfigurationPolicyCommandOutput>;
810
+ export declare const de_GetConfigurationPolicyAssociationCommand: (
811
+ output: __HttpResponse,
812
+ context: __SerdeContext
813
+ ) => Promise<GetConfigurationPolicyAssociationCommandOutput>;
698
814
  export declare const de_GetEnabledStandardsCommand: (
699
815
  output: __HttpResponse,
700
816
  context: __SerdeContext
@@ -731,6 +847,10 @@ export declare const de_GetMembersCommand: (
731
847
  output: __HttpResponse,
732
848
  context: __SerdeContext
733
849
  ) => Promise<GetMembersCommandOutput>;
850
+ export declare const de_GetSecurityControlDefinitionCommand: (
851
+ output: __HttpResponse,
852
+ context: __SerdeContext
853
+ ) => Promise<GetSecurityControlDefinitionCommandOutput>;
734
854
  export declare const de_InviteMembersCommand: (
735
855
  output: __HttpResponse,
736
856
  context: __SerdeContext
@@ -739,6 +859,14 @@ export declare const de_ListAutomationRulesCommand: (
739
859
  output: __HttpResponse,
740
860
  context: __SerdeContext
741
861
  ) => Promise<ListAutomationRulesCommandOutput>;
862
+ export declare const de_ListConfigurationPoliciesCommand: (
863
+ output: __HttpResponse,
864
+ context: __SerdeContext
865
+ ) => Promise<ListConfigurationPoliciesCommandOutput>;
866
+ export declare const de_ListConfigurationPolicyAssociationsCommand: (
867
+ output: __HttpResponse,
868
+ context: __SerdeContext
869
+ ) => Promise<ListConfigurationPolicyAssociationsCommandOutput>;
742
870
  export declare const de_ListEnabledProductsForImportCommand: (
743
871
  output: __HttpResponse,
744
872
  context: __SerdeContext
@@ -771,6 +899,14 @@ export declare const de_ListTagsForResourceCommand: (
771
899
  output: __HttpResponse,
772
900
  context: __SerdeContext
773
901
  ) => Promise<ListTagsForResourceCommandOutput>;
902
+ export declare const de_StartConfigurationPolicyAssociationCommand: (
903
+ output: __HttpResponse,
904
+ context: __SerdeContext
905
+ ) => Promise<StartConfigurationPolicyAssociationCommandOutput>;
906
+ export declare const de_StartConfigurationPolicyDisassociationCommand: (
907
+ output: __HttpResponse,
908
+ context: __SerdeContext
909
+ ) => Promise<StartConfigurationPolicyDisassociationCommandOutput>;
774
910
  export declare const de_TagResourceCommand: (
775
911
  output: __HttpResponse,
776
912
  context: __SerdeContext
@@ -783,6 +919,10 @@ export declare const de_UpdateActionTargetCommand: (
783
919
  output: __HttpResponse,
784
920
  context: __SerdeContext
785
921
  ) => Promise<UpdateActionTargetCommandOutput>;
922
+ export declare const de_UpdateConfigurationPolicyCommand: (
923
+ output: __HttpResponse,
924
+ context: __SerdeContext
925
+ ) => Promise<UpdateConfigurationPolicyCommandOutput>;
786
926
  export declare const de_UpdateFindingAggregatorCommand: (
787
927
  output: __HttpResponse,
788
928
  context: __SerdeContext
@@ -799,6 +939,10 @@ export declare const de_UpdateOrganizationConfigurationCommand: (
799
939
  output: __HttpResponse,
800
940
  context: __SerdeContext
801
941
  ) => Promise<UpdateOrganizationConfigurationCommandOutput>;
942
+ export declare const de_UpdateSecurityControlCommand: (
943
+ output: __HttpResponse,
944
+ context: __SerdeContext
945
+ ) => Promise<UpdateSecurityControlCommandOutput>;
802
946
  export declare const de_UpdateSecurityHubConfigurationCommand: (
803
947
  output: __HttpResponse,
804
948
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-securityhub",
3
3
  "description": "AWS SDK for JavaScript Securityhub Client for Node.js, Browser and React Native",
4
- "version": "3.454.0",
4
+ "version": "3.459.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",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.454.0",
24
+ "@aws-sdk/client-sts": "3.458.0",
25
25
  "@aws-sdk/core": "3.451.0",
26
- "@aws-sdk/credential-provider-node": "3.451.0",
26
+ "@aws-sdk/credential-provider-node": "3.458.0",
27
27
  "@aws-sdk/middleware-host-header": "3.451.0",
28
28
  "@aws-sdk/middleware-logger": "3.451.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.451.0",