@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,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListConfigurationPoliciesCommandInput, ListConfigurationPoliciesCommandOutput } from "../commands/ListConfigurationPoliciesCommand";
3
+ import { SecurityHubPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListConfigurationPolicies(config: SecurityHubPaginationConfiguration, input: ListConfigurationPoliciesCommandInput, ...additionalArguments: any): Paginator<ListConfigurationPoliciesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListConfigurationPolicyAssociationsCommandInput, ListConfigurationPolicyAssociationsCommandOutput } from "../commands/ListConfigurationPolicyAssociationsCommand";
3
+ import { SecurityHubPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListConfigurationPolicyAssociations(config: SecurityHubPaginationConfiguration, input: ListConfigurationPolicyAssociationsCommandInput, ...additionalArguments: any): 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";
@@ -6,6 +6,7 @@ import { BatchDeleteAutomationRulesCommandInput, BatchDeleteAutomationRulesComma
6
6
  import { BatchDisableStandardsCommandInput, BatchDisableStandardsCommandOutput } from "../commands/BatchDisableStandardsCommand";
7
7
  import { BatchEnableStandardsCommandInput, BatchEnableStandardsCommandOutput } from "../commands/BatchEnableStandardsCommand";
8
8
  import { BatchGetAutomationRulesCommandInput, BatchGetAutomationRulesCommandOutput } from "../commands/BatchGetAutomationRulesCommand";
9
+ import { BatchGetConfigurationPolicyAssociationsCommandInput, BatchGetConfigurationPolicyAssociationsCommandOutput } from "../commands/BatchGetConfigurationPolicyAssociationsCommand";
9
10
  import { BatchGetSecurityControlsCommandInput, BatchGetSecurityControlsCommandOutput } from "../commands/BatchGetSecurityControlsCommand";
10
11
  import { BatchGetStandardsControlAssociationsCommandInput, BatchGetStandardsControlAssociationsCommandOutput } from "../commands/BatchGetStandardsControlAssociationsCommand";
11
12
  import { BatchImportFindingsCommandInput, BatchImportFindingsCommandOutput } from "../commands/BatchImportFindingsCommand";
@@ -14,11 +15,13 @@ import { BatchUpdateFindingsCommandInput, BatchUpdateFindingsCommandOutput } fro
14
15
  import { BatchUpdateStandardsControlAssociationsCommandInput, BatchUpdateStandardsControlAssociationsCommandOutput } from "../commands/BatchUpdateStandardsControlAssociationsCommand";
15
16
  import { CreateActionTargetCommandInput, CreateActionTargetCommandOutput } from "../commands/CreateActionTargetCommand";
16
17
  import { CreateAutomationRuleCommandInput, CreateAutomationRuleCommandOutput } from "../commands/CreateAutomationRuleCommand";
18
+ import { CreateConfigurationPolicyCommandInput, CreateConfigurationPolicyCommandOutput } from "../commands/CreateConfigurationPolicyCommand";
17
19
  import { CreateFindingAggregatorCommandInput, CreateFindingAggregatorCommandOutput } from "../commands/CreateFindingAggregatorCommand";
18
20
  import { CreateInsightCommandInput, CreateInsightCommandOutput } from "../commands/CreateInsightCommand";
19
21
  import { CreateMembersCommandInput, CreateMembersCommandOutput } from "../commands/CreateMembersCommand";
20
22
  import { DeclineInvitationsCommandInput, DeclineInvitationsCommandOutput } from "../commands/DeclineInvitationsCommand";
21
23
  import { DeleteActionTargetCommandInput, DeleteActionTargetCommandOutput } from "../commands/DeleteActionTargetCommand";
24
+ import { DeleteConfigurationPolicyCommandInput, DeleteConfigurationPolicyCommandOutput } from "../commands/DeleteConfigurationPolicyCommand";
22
25
  import { DeleteFindingAggregatorCommandInput, DeleteFindingAggregatorCommandOutput } from "../commands/DeleteFindingAggregatorCommand";
23
26
  import { DeleteInsightCommandInput, DeleteInsightCommandOutput } from "../commands/DeleteInsightCommand";
24
27
  import { DeleteInvitationsCommandInput, DeleteInvitationsCommandOutput } from "../commands/DeleteInvitationsCommand";
@@ -39,6 +42,8 @@ import { EnableImportFindingsForProductCommandInput, EnableImportFindingsForProd
39
42
  import { EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput } from "../commands/EnableOrganizationAdminAccountCommand";
40
43
  import { EnableSecurityHubCommandInput, EnableSecurityHubCommandOutput } from "../commands/EnableSecurityHubCommand";
41
44
  import { GetAdministratorAccountCommandInput, GetAdministratorAccountCommandOutput } from "../commands/GetAdministratorAccountCommand";
45
+ import { GetConfigurationPolicyAssociationCommandInput, GetConfigurationPolicyAssociationCommandOutput } from "../commands/GetConfigurationPolicyAssociationCommand";
46
+ import { GetConfigurationPolicyCommandInput, GetConfigurationPolicyCommandOutput } from "../commands/GetConfigurationPolicyCommand";
42
47
  import { GetEnabledStandardsCommandInput, GetEnabledStandardsCommandOutput } from "../commands/GetEnabledStandardsCommand";
43
48
  import { GetFindingAggregatorCommandInput, GetFindingAggregatorCommandOutput } from "../commands/GetFindingAggregatorCommand";
44
49
  import { GetFindingHistoryCommandInput, GetFindingHistoryCommandOutput } from "../commands/GetFindingHistoryCommand";
@@ -48,8 +53,11 @@ import { GetInsightsCommandInput, GetInsightsCommandOutput } from "../commands/G
48
53
  import { GetInvitationsCountCommandInput, GetInvitationsCountCommandOutput } from "../commands/GetInvitationsCountCommand";
49
54
  import { GetMasterAccountCommandInput, GetMasterAccountCommandOutput } from "../commands/GetMasterAccountCommand";
50
55
  import { GetMembersCommandInput, GetMembersCommandOutput } from "../commands/GetMembersCommand";
56
+ import { GetSecurityControlDefinitionCommandInput, GetSecurityControlDefinitionCommandOutput } from "../commands/GetSecurityControlDefinitionCommand";
51
57
  import { InviteMembersCommandInput, InviteMembersCommandOutput } from "../commands/InviteMembersCommand";
52
58
  import { ListAutomationRulesCommandInput, ListAutomationRulesCommandOutput } from "../commands/ListAutomationRulesCommand";
59
+ import { ListConfigurationPoliciesCommandInput, ListConfigurationPoliciesCommandOutput } from "../commands/ListConfigurationPoliciesCommand";
60
+ import { ListConfigurationPolicyAssociationsCommandInput, ListConfigurationPolicyAssociationsCommandOutput } from "../commands/ListConfigurationPolicyAssociationsCommand";
53
61
  import { ListEnabledProductsForImportCommandInput, ListEnabledProductsForImportCommandOutput } from "../commands/ListEnabledProductsForImportCommand";
54
62
  import { ListFindingAggregatorsCommandInput, ListFindingAggregatorsCommandOutput } from "../commands/ListFindingAggregatorsCommand";
55
63
  import { ListInvitationsCommandInput, ListInvitationsCommandOutput } from "../commands/ListInvitationsCommand";
@@ -58,13 +66,17 @@ import { ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccount
58
66
  import { ListSecurityControlDefinitionsCommandInput, ListSecurityControlDefinitionsCommandOutput } from "../commands/ListSecurityControlDefinitionsCommand";
59
67
  import { ListStandardsControlAssociationsCommandInput, ListStandardsControlAssociationsCommandOutput } from "../commands/ListStandardsControlAssociationsCommand";
60
68
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
69
+ import { StartConfigurationPolicyAssociationCommandInput, StartConfigurationPolicyAssociationCommandOutput } from "../commands/StartConfigurationPolicyAssociationCommand";
70
+ import { StartConfigurationPolicyDisassociationCommandInput, StartConfigurationPolicyDisassociationCommandOutput } from "../commands/StartConfigurationPolicyDisassociationCommand";
61
71
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
62
72
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
63
73
  import { UpdateActionTargetCommandInput, UpdateActionTargetCommandOutput } from "../commands/UpdateActionTargetCommand";
74
+ import { UpdateConfigurationPolicyCommandInput, UpdateConfigurationPolicyCommandOutput } from "../commands/UpdateConfigurationPolicyCommand";
64
75
  import { UpdateFindingAggregatorCommandInput, UpdateFindingAggregatorCommandOutput } from "../commands/UpdateFindingAggregatorCommand";
65
76
  import { UpdateFindingsCommandInput, UpdateFindingsCommandOutput } from "../commands/UpdateFindingsCommand";
66
77
  import { UpdateInsightCommandInput, UpdateInsightCommandOutput } from "../commands/UpdateInsightCommand";
67
78
  import { UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput } from "../commands/UpdateOrganizationConfigurationCommand";
79
+ import { UpdateSecurityControlCommandInput, UpdateSecurityControlCommandOutput } from "../commands/UpdateSecurityControlCommand";
68
80
  import { UpdateSecurityHubConfigurationCommandInput, UpdateSecurityHubConfigurationCommandOutput } from "../commands/UpdateSecurityHubConfigurationCommand";
69
81
  import { UpdateStandardsControlCommandInput, UpdateStandardsControlCommandOutput } from "../commands/UpdateStandardsControlCommand";
70
82
  /**
@@ -91,6 +103,10 @@ export declare const se_BatchEnableStandardsCommand: (input: BatchEnableStandard
91
103
  * serializeAws_restJson1BatchGetAutomationRulesCommand
92
104
  */
93
105
  export declare const se_BatchGetAutomationRulesCommand: (input: BatchGetAutomationRulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
106
+ /**
107
+ * serializeAws_restJson1BatchGetConfigurationPolicyAssociationsCommand
108
+ */
109
+ export declare const se_BatchGetConfigurationPolicyAssociationsCommand: (input: BatchGetConfigurationPolicyAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
94
110
  /**
95
111
  * serializeAws_restJson1BatchGetSecurityControlsCommand
96
112
  */
@@ -123,6 +139,10 @@ export declare const se_CreateActionTargetCommand: (input: CreateActionTargetCom
123
139
  * serializeAws_restJson1CreateAutomationRuleCommand
124
140
  */
125
141
  export declare const se_CreateAutomationRuleCommand: (input: CreateAutomationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
142
+ /**
143
+ * serializeAws_restJson1CreateConfigurationPolicyCommand
144
+ */
145
+ export declare const se_CreateConfigurationPolicyCommand: (input: CreateConfigurationPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
126
146
  /**
127
147
  * serializeAws_restJson1CreateFindingAggregatorCommand
128
148
  */
@@ -143,6 +163,10 @@ export declare const se_DeclineInvitationsCommand: (input: DeclineInvitationsCom
143
163
  * serializeAws_restJson1DeleteActionTargetCommand
144
164
  */
145
165
  export declare const se_DeleteActionTargetCommand: (input: DeleteActionTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
166
+ /**
167
+ * serializeAws_restJson1DeleteConfigurationPolicyCommand
168
+ */
169
+ export declare const se_DeleteConfigurationPolicyCommand: (input: DeleteConfigurationPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
146
170
  /**
147
171
  * serializeAws_restJson1DeleteFindingAggregatorCommand
148
172
  */
@@ -223,6 +247,14 @@ export declare const se_EnableSecurityHubCommand: (input: EnableSecurityHubComma
223
247
  * serializeAws_restJson1GetAdministratorAccountCommand
224
248
  */
225
249
  export declare const se_GetAdministratorAccountCommand: (input: GetAdministratorAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
250
+ /**
251
+ * serializeAws_restJson1GetConfigurationPolicyCommand
252
+ */
253
+ export declare const se_GetConfigurationPolicyCommand: (input: GetConfigurationPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
254
+ /**
255
+ * serializeAws_restJson1GetConfigurationPolicyAssociationCommand
256
+ */
257
+ export declare const se_GetConfigurationPolicyAssociationCommand: (input: GetConfigurationPolicyAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
226
258
  /**
227
259
  * serializeAws_restJson1GetEnabledStandardsCommand
228
260
  */
@@ -259,6 +291,10 @@ export declare const se_GetMasterAccountCommand: (input: GetMasterAccountCommand
259
291
  * serializeAws_restJson1GetMembersCommand
260
292
  */
261
293
  export declare const se_GetMembersCommand: (input: GetMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
294
+ /**
295
+ * serializeAws_restJson1GetSecurityControlDefinitionCommand
296
+ */
297
+ export declare const se_GetSecurityControlDefinitionCommand: (input: GetSecurityControlDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
262
298
  /**
263
299
  * serializeAws_restJson1InviteMembersCommand
264
300
  */
@@ -267,6 +303,14 @@ export declare const se_InviteMembersCommand: (input: InviteMembersCommandInput,
267
303
  * serializeAws_restJson1ListAutomationRulesCommand
268
304
  */
269
305
  export declare const se_ListAutomationRulesCommand: (input: ListAutomationRulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
306
+ /**
307
+ * serializeAws_restJson1ListConfigurationPoliciesCommand
308
+ */
309
+ export declare const se_ListConfigurationPoliciesCommand: (input: ListConfigurationPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
310
+ /**
311
+ * serializeAws_restJson1ListConfigurationPolicyAssociationsCommand
312
+ */
313
+ export declare const se_ListConfigurationPolicyAssociationsCommand: (input: ListConfigurationPolicyAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
270
314
  /**
271
315
  * serializeAws_restJson1ListEnabledProductsForImportCommand
272
316
  */
@@ -299,6 +343,14 @@ export declare const se_ListStandardsControlAssociationsCommand: (input: ListSta
299
343
  * serializeAws_restJson1ListTagsForResourceCommand
300
344
  */
301
345
  export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
346
+ /**
347
+ * serializeAws_restJson1StartConfigurationPolicyAssociationCommand
348
+ */
349
+ export declare const se_StartConfigurationPolicyAssociationCommand: (input: StartConfigurationPolicyAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
350
+ /**
351
+ * serializeAws_restJson1StartConfigurationPolicyDisassociationCommand
352
+ */
353
+ export declare const se_StartConfigurationPolicyDisassociationCommand: (input: StartConfigurationPolicyDisassociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
302
354
  /**
303
355
  * serializeAws_restJson1TagResourceCommand
304
356
  */
@@ -311,6 +363,10 @@ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput,
311
363
  * serializeAws_restJson1UpdateActionTargetCommand
312
364
  */
313
365
  export declare const se_UpdateActionTargetCommand: (input: UpdateActionTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
366
+ /**
367
+ * serializeAws_restJson1UpdateConfigurationPolicyCommand
368
+ */
369
+ export declare const se_UpdateConfigurationPolicyCommand: (input: UpdateConfigurationPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
314
370
  /**
315
371
  * serializeAws_restJson1UpdateFindingAggregatorCommand
316
372
  */
@@ -327,6 +383,10 @@ export declare const se_UpdateInsightCommand: (input: UpdateInsightCommandInput,
327
383
  * serializeAws_restJson1UpdateOrganizationConfigurationCommand
328
384
  */
329
385
  export declare const se_UpdateOrganizationConfigurationCommand: (input: UpdateOrganizationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
386
+ /**
387
+ * serializeAws_restJson1UpdateSecurityControlCommand
388
+ */
389
+ export declare const se_UpdateSecurityControlCommand: (input: UpdateSecurityControlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
330
390
  /**
331
391
  * serializeAws_restJson1UpdateSecurityHubConfigurationCommand
332
392
  */
@@ -359,6 +419,10 @@ export declare const de_BatchEnableStandardsCommand: (output: __HttpResponse, co
359
419
  * deserializeAws_restJson1BatchGetAutomationRulesCommand
360
420
  */
361
421
  export declare const de_BatchGetAutomationRulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetAutomationRulesCommandOutput>;
422
+ /**
423
+ * deserializeAws_restJson1BatchGetConfigurationPolicyAssociationsCommand
424
+ */
425
+ export declare const de_BatchGetConfigurationPolicyAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetConfigurationPolicyAssociationsCommandOutput>;
362
426
  /**
363
427
  * deserializeAws_restJson1BatchGetSecurityControlsCommand
364
428
  */
@@ -391,6 +455,10 @@ export declare const de_CreateActionTargetCommand: (output: __HttpResponse, cont
391
455
  * deserializeAws_restJson1CreateAutomationRuleCommand
392
456
  */
393
457
  export declare const de_CreateAutomationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAutomationRuleCommandOutput>;
458
+ /**
459
+ * deserializeAws_restJson1CreateConfigurationPolicyCommand
460
+ */
461
+ export declare const de_CreateConfigurationPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConfigurationPolicyCommandOutput>;
394
462
  /**
395
463
  * deserializeAws_restJson1CreateFindingAggregatorCommand
396
464
  */
@@ -411,6 +479,10 @@ export declare const de_DeclineInvitationsCommand: (output: __HttpResponse, cont
411
479
  * deserializeAws_restJson1DeleteActionTargetCommand
412
480
  */
413
481
  export declare const de_DeleteActionTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteActionTargetCommandOutput>;
482
+ /**
483
+ * deserializeAws_restJson1DeleteConfigurationPolicyCommand
484
+ */
485
+ export declare const de_DeleteConfigurationPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfigurationPolicyCommandOutput>;
414
486
  /**
415
487
  * deserializeAws_restJson1DeleteFindingAggregatorCommand
416
488
  */
@@ -491,6 +563,14 @@ export declare const de_EnableSecurityHubCommand: (output: __HttpResponse, conte
491
563
  * deserializeAws_restJson1GetAdministratorAccountCommand
492
564
  */
493
565
  export declare const de_GetAdministratorAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAdministratorAccountCommandOutput>;
566
+ /**
567
+ * deserializeAws_restJson1GetConfigurationPolicyCommand
568
+ */
569
+ export declare const de_GetConfigurationPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConfigurationPolicyCommandOutput>;
570
+ /**
571
+ * deserializeAws_restJson1GetConfigurationPolicyAssociationCommand
572
+ */
573
+ export declare const de_GetConfigurationPolicyAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConfigurationPolicyAssociationCommandOutput>;
494
574
  /**
495
575
  * deserializeAws_restJson1GetEnabledStandardsCommand
496
576
  */
@@ -527,6 +607,10 @@ export declare const de_GetMasterAccountCommand: (output: __HttpResponse, contex
527
607
  * deserializeAws_restJson1GetMembersCommand
528
608
  */
529
609
  export declare const de_GetMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMembersCommandOutput>;
610
+ /**
611
+ * deserializeAws_restJson1GetSecurityControlDefinitionCommand
612
+ */
613
+ export declare const de_GetSecurityControlDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSecurityControlDefinitionCommandOutput>;
530
614
  /**
531
615
  * deserializeAws_restJson1InviteMembersCommand
532
616
  */
@@ -535,6 +619,14 @@ export declare const de_InviteMembersCommand: (output: __HttpResponse, context:
535
619
  * deserializeAws_restJson1ListAutomationRulesCommand
536
620
  */
537
621
  export declare const de_ListAutomationRulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAutomationRulesCommandOutput>;
622
+ /**
623
+ * deserializeAws_restJson1ListConfigurationPoliciesCommand
624
+ */
625
+ export declare const de_ListConfigurationPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfigurationPoliciesCommandOutput>;
626
+ /**
627
+ * deserializeAws_restJson1ListConfigurationPolicyAssociationsCommand
628
+ */
629
+ export declare const de_ListConfigurationPolicyAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfigurationPolicyAssociationsCommandOutput>;
538
630
  /**
539
631
  * deserializeAws_restJson1ListEnabledProductsForImportCommand
540
632
  */
@@ -567,6 +659,14 @@ export declare const de_ListStandardsControlAssociationsCommand: (output: __Http
567
659
  * deserializeAws_restJson1ListTagsForResourceCommand
568
660
  */
569
661
  export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
662
+ /**
663
+ * deserializeAws_restJson1StartConfigurationPolicyAssociationCommand
664
+ */
665
+ export declare const de_StartConfigurationPolicyAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartConfigurationPolicyAssociationCommandOutput>;
666
+ /**
667
+ * deserializeAws_restJson1StartConfigurationPolicyDisassociationCommand
668
+ */
669
+ export declare const de_StartConfigurationPolicyDisassociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartConfigurationPolicyDisassociationCommandOutput>;
570
670
  /**
571
671
  * deserializeAws_restJson1TagResourceCommand
572
672
  */
@@ -579,6 +679,10 @@ export declare const de_UntagResourceCommand: (output: __HttpResponse, context:
579
679
  * deserializeAws_restJson1UpdateActionTargetCommand
580
680
  */
581
681
  export declare const de_UpdateActionTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateActionTargetCommandOutput>;
682
+ /**
683
+ * deserializeAws_restJson1UpdateConfigurationPolicyCommand
684
+ */
685
+ export declare const de_UpdateConfigurationPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigurationPolicyCommandOutput>;
582
686
  /**
583
687
  * deserializeAws_restJson1UpdateFindingAggregatorCommand
584
688
  */
@@ -595,6 +699,10 @@ export declare const de_UpdateInsightCommand: (output: __HttpResponse, context:
595
699
  * deserializeAws_restJson1UpdateOrganizationConfigurationCommand
596
700
  */
597
701
  export declare const de_UpdateOrganizationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateOrganizationConfigurationCommandOutput>;
702
+ /**
703
+ * deserializeAws_restJson1UpdateSecurityControlCommand
704
+ */
705
+ export declare const de_UpdateSecurityControlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSecurityControlCommandOutput>;
598
706
  /**
599
707
  * deserializeAws_restJson1UpdateSecurityHubConfigurationCommand
600
708
  */
@@ -23,6 +23,10 @@ import {
23
23
  BatchGetAutomationRulesCommandInput,
24
24
  BatchGetAutomationRulesCommandOutput,
25
25
  } from "./commands/BatchGetAutomationRulesCommand";
26
+ import {
27
+ BatchGetConfigurationPolicyAssociationsCommandInput,
28
+ BatchGetConfigurationPolicyAssociationsCommandOutput,
29
+ } from "./commands/BatchGetConfigurationPolicyAssociationsCommand";
26
30
  import {
27
31
  BatchGetSecurityControlsCommandInput,
28
32
  BatchGetSecurityControlsCommandOutput,
@@ -55,6 +59,10 @@ import {
55
59
  CreateAutomationRuleCommandInput,
56
60
  CreateAutomationRuleCommandOutput,
57
61
  } from "./commands/CreateAutomationRuleCommand";
62
+ import {
63
+ CreateConfigurationPolicyCommandInput,
64
+ CreateConfigurationPolicyCommandOutput,
65
+ } from "./commands/CreateConfigurationPolicyCommand";
58
66
  import {
59
67
  CreateFindingAggregatorCommandInput,
60
68
  CreateFindingAggregatorCommandOutput,
@@ -75,6 +83,10 @@ import {
75
83
  DeleteActionTargetCommandInput,
76
84
  DeleteActionTargetCommandOutput,
77
85
  } from "./commands/DeleteActionTargetCommand";
86
+ import {
87
+ DeleteConfigurationPolicyCommandInput,
88
+ DeleteConfigurationPolicyCommandOutput,
89
+ } from "./commands/DeleteConfigurationPolicyCommand";
78
90
  import {
79
91
  DeleteFindingAggregatorCommandInput,
80
92
  DeleteFindingAggregatorCommandOutput,
@@ -155,6 +167,14 @@ import {
155
167
  GetAdministratorAccountCommandInput,
156
168
  GetAdministratorAccountCommandOutput,
157
169
  } from "./commands/GetAdministratorAccountCommand";
170
+ import {
171
+ GetConfigurationPolicyAssociationCommandInput,
172
+ GetConfigurationPolicyAssociationCommandOutput,
173
+ } from "./commands/GetConfigurationPolicyAssociationCommand";
174
+ import {
175
+ GetConfigurationPolicyCommandInput,
176
+ GetConfigurationPolicyCommandOutput,
177
+ } from "./commands/GetConfigurationPolicyCommand";
158
178
  import {
159
179
  GetEnabledStandardsCommandInput,
160
180
  GetEnabledStandardsCommandOutput,
@@ -191,6 +211,10 @@ import {
191
211
  GetMembersCommandInput,
192
212
  GetMembersCommandOutput,
193
213
  } from "./commands/GetMembersCommand";
214
+ import {
215
+ GetSecurityControlDefinitionCommandInput,
216
+ GetSecurityControlDefinitionCommandOutput,
217
+ } from "./commands/GetSecurityControlDefinitionCommand";
194
218
  import {
195
219
  InviteMembersCommandInput,
196
220
  InviteMembersCommandOutput,
@@ -199,6 +223,14 @@ import {
199
223
  ListAutomationRulesCommandInput,
200
224
  ListAutomationRulesCommandOutput,
201
225
  } from "./commands/ListAutomationRulesCommand";
226
+ import {
227
+ ListConfigurationPoliciesCommandInput,
228
+ ListConfigurationPoliciesCommandOutput,
229
+ } from "./commands/ListConfigurationPoliciesCommand";
230
+ import {
231
+ ListConfigurationPolicyAssociationsCommandInput,
232
+ ListConfigurationPolicyAssociationsCommandOutput,
233
+ } from "./commands/ListConfigurationPolicyAssociationsCommand";
202
234
  import {
203
235
  ListEnabledProductsForImportCommandInput,
204
236
  ListEnabledProductsForImportCommandOutput,
@@ -231,6 +263,14 @@ import {
231
263
  ListTagsForResourceCommandInput,
232
264
  ListTagsForResourceCommandOutput,
233
265
  } from "./commands/ListTagsForResourceCommand";
266
+ import {
267
+ StartConfigurationPolicyAssociationCommandInput,
268
+ StartConfigurationPolicyAssociationCommandOutput,
269
+ } from "./commands/StartConfigurationPolicyAssociationCommand";
270
+ import {
271
+ StartConfigurationPolicyDisassociationCommandInput,
272
+ StartConfigurationPolicyDisassociationCommandOutput,
273
+ } from "./commands/StartConfigurationPolicyDisassociationCommand";
234
274
  import {
235
275
  TagResourceCommandInput,
236
276
  TagResourceCommandOutput,
@@ -243,6 +283,10 @@ import {
243
283
  UpdateActionTargetCommandInput,
244
284
  UpdateActionTargetCommandOutput,
245
285
  } from "./commands/UpdateActionTargetCommand";
286
+ import {
287
+ UpdateConfigurationPolicyCommandInput,
288
+ UpdateConfigurationPolicyCommandOutput,
289
+ } from "./commands/UpdateConfigurationPolicyCommand";
246
290
  import {
247
291
  UpdateFindingAggregatorCommandInput,
248
292
  UpdateFindingAggregatorCommandOutput,
@@ -259,6 +303,10 @@ import {
259
303
  UpdateOrganizationConfigurationCommandInput,
260
304
  UpdateOrganizationConfigurationCommandOutput,
261
305
  } from "./commands/UpdateOrganizationConfigurationCommand";
306
+ import {
307
+ UpdateSecurityControlCommandInput,
308
+ UpdateSecurityControlCommandOutput,
309
+ } from "./commands/UpdateSecurityControlCommand";
262
310
  import {
263
311
  UpdateSecurityHubConfigurationCommandInput,
264
312
  UpdateSecurityHubConfigurationCommandOutput,
@@ -347,6 +395,25 @@ export interface SecurityHub {
347
395
  options: __HttpHandlerOptions,
348
396
  cb: (err: any, data?: BatchGetAutomationRulesCommandOutput) => void
349
397
  ): void;
398
+ batchGetConfigurationPolicyAssociations(
399
+ args: BatchGetConfigurationPolicyAssociationsCommandInput,
400
+ options?: __HttpHandlerOptions
401
+ ): Promise<BatchGetConfigurationPolicyAssociationsCommandOutput>;
402
+ batchGetConfigurationPolicyAssociations(
403
+ args: BatchGetConfigurationPolicyAssociationsCommandInput,
404
+ cb: (
405
+ err: any,
406
+ data?: BatchGetConfigurationPolicyAssociationsCommandOutput
407
+ ) => void
408
+ ): void;
409
+ batchGetConfigurationPolicyAssociations(
410
+ args: BatchGetConfigurationPolicyAssociationsCommandInput,
411
+ options: __HttpHandlerOptions,
412
+ cb: (
413
+ err: any,
414
+ data?: BatchGetConfigurationPolicyAssociationsCommandOutput
415
+ ) => void
416
+ ): void;
350
417
  batchGetSecurityControls(
351
418
  args: BatchGetSecurityControlsCommandInput,
352
419
  options?: __HttpHandlerOptions
@@ -463,6 +530,19 @@ export interface SecurityHub {
463
530
  options: __HttpHandlerOptions,
464
531
  cb: (err: any, data?: CreateAutomationRuleCommandOutput) => void
465
532
  ): void;
533
+ createConfigurationPolicy(
534
+ args: CreateConfigurationPolicyCommandInput,
535
+ options?: __HttpHandlerOptions
536
+ ): Promise<CreateConfigurationPolicyCommandOutput>;
537
+ createConfigurationPolicy(
538
+ args: CreateConfigurationPolicyCommandInput,
539
+ cb: (err: any, data?: CreateConfigurationPolicyCommandOutput) => void
540
+ ): void;
541
+ createConfigurationPolicy(
542
+ args: CreateConfigurationPolicyCommandInput,
543
+ options: __HttpHandlerOptions,
544
+ cb: (err: any, data?: CreateConfigurationPolicyCommandOutput) => void
545
+ ): void;
466
546
  createFindingAggregator(
467
547
  args: CreateFindingAggregatorCommandInput,
468
548
  options?: __HttpHandlerOptions
@@ -528,6 +608,19 @@ export interface SecurityHub {
528
608
  options: __HttpHandlerOptions,
529
609
  cb: (err: any, data?: DeleteActionTargetCommandOutput) => void
530
610
  ): void;
611
+ deleteConfigurationPolicy(
612
+ args: DeleteConfigurationPolicyCommandInput,
613
+ options?: __HttpHandlerOptions
614
+ ): Promise<DeleteConfigurationPolicyCommandOutput>;
615
+ deleteConfigurationPolicy(
616
+ args: DeleteConfigurationPolicyCommandInput,
617
+ cb: (err: any, data?: DeleteConfigurationPolicyCommandOutput) => void
618
+ ): void;
619
+ deleteConfigurationPolicy(
620
+ args: DeleteConfigurationPolicyCommandInput,
621
+ options: __HttpHandlerOptions,
622
+ cb: (err: any, data?: DeleteConfigurationPolicyCommandOutput) => void
623
+ ): void;
531
624
  deleteFindingAggregator(
532
625
  args: DeleteFindingAggregatorCommandInput,
533
626
  options?: __HttpHandlerOptions
@@ -800,6 +893,38 @@ export interface SecurityHub {
800
893
  options: __HttpHandlerOptions,
801
894
  cb: (err: any, data?: GetAdministratorAccountCommandOutput) => void
802
895
  ): void;
896
+ getConfigurationPolicy(
897
+ args: GetConfigurationPolicyCommandInput,
898
+ options?: __HttpHandlerOptions
899
+ ): Promise<GetConfigurationPolicyCommandOutput>;
900
+ getConfigurationPolicy(
901
+ args: GetConfigurationPolicyCommandInput,
902
+ cb: (err: any, data?: GetConfigurationPolicyCommandOutput) => void
903
+ ): void;
904
+ getConfigurationPolicy(
905
+ args: GetConfigurationPolicyCommandInput,
906
+ options: __HttpHandlerOptions,
907
+ cb: (err: any, data?: GetConfigurationPolicyCommandOutput) => void
908
+ ): void;
909
+ getConfigurationPolicyAssociation(
910
+ args: GetConfigurationPolicyAssociationCommandInput,
911
+ options?: __HttpHandlerOptions
912
+ ): Promise<GetConfigurationPolicyAssociationCommandOutput>;
913
+ getConfigurationPolicyAssociation(
914
+ args: GetConfigurationPolicyAssociationCommandInput,
915
+ cb: (
916
+ err: any,
917
+ data?: GetConfigurationPolicyAssociationCommandOutput
918
+ ) => void
919
+ ): void;
920
+ getConfigurationPolicyAssociation(
921
+ args: GetConfigurationPolicyAssociationCommandInput,
922
+ options: __HttpHandlerOptions,
923
+ cb: (
924
+ err: any,
925
+ data?: GetConfigurationPolicyAssociationCommandOutput
926
+ ) => void
927
+ ): void;
803
928
  getEnabledStandards(
804
929
  args: GetEnabledStandardsCommandInput,
805
930
  options?: __HttpHandlerOptions
@@ -917,6 +1042,19 @@ export interface SecurityHub {
917
1042
  options: __HttpHandlerOptions,
918
1043
  cb: (err: any, data?: GetMembersCommandOutput) => void
919
1044
  ): void;
1045
+ getSecurityControlDefinition(
1046
+ args: GetSecurityControlDefinitionCommandInput,
1047
+ options?: __HttpHandlerOptions
1048
+ ): Promise<GetSecurityControlDefinitionCommandOutput>;
1049
+ getSecurityControlDefinition(
1050
+ args: GetSecurityControlDefinitionCommandInput,
1051
+ cb: (err: any, data?: GetSecurityControlDefinitionCommandOutput) => void
1052
+ ): void;
1053
+ getSecurityControlDefinition(
1054
+ args: GetSecurityControlDefinitionCommandInput,
1055
+ options: __HttpHandlerOptions,
1056
+ cb: (err: any, data?: GetSecurityControlDefinitionCommandOutput) => void
1057
+ ): void;
920
1058
  inviteMembers(
921
1059
  args: InviteMembersCommandInput,
922
1060
  options?: __HttpHandlerOptions
@@ -943,6 +1081,38 @@ export interface SecurityHub {
943
1081
  options: __HttpHandlerOptions,
944
1082
  cb: (err: any, data?: ListAutomationRulesCommandOutput) => void
945
1083
  ): void;
1084
+ listConfigurationPolicies(
1085
+ args: ListConfigurationPoliciesCommandInput,
1086
+ options?: __HttpHandlerOptions
1087
+ ): Promise<ListConfigurationPoliciesCommandOutput>;
1088
+ listConfigurationPolicies(
1089
+ args: ListConfigurationPoliciesCommandInput,
1090
+ cb: (err: any, data?: ListConfigurationPoliciesCommandOutput) => void
1091
+ ): void;
1092
+ listConfigurationPolicies(
1093
+ args: ListConfigurationPoliciesCommandInput,
1094
+ options: __HttpHandlerOptions,
1095
+ cb: (err: any, data?: ListConfigurationPoliciesCommandOutput) => void
1096
+ ): void;
1097
+ listConfigurationPolicyAssociations(
1098
+ args: ListConfigurationPolicyAssociationsCommandInput,
1099
+ options?: __HttpHandlerOptions
1100
+ ): Promise<ListConfigurationPolicyAssociationsCommandOutput>;
1101
+ listConfigurationPolicyAssociations(
1102
+ args: ListConfigurationPolicyAssociationsCommandInput,
1103
+ cb: (
1104
+ err: any,
1105
+ data?: ListConfigurationPolicyAssociationsCommandOutput
1106
+ ) => void
1107
+ ): void;
1108
+ listConfigurationPolicyAssociations(
1109
+ args: ListConfigurationPolicyAssociationsCommandInput,
1110
+ options: __HttpHandlerOptions,
1111
+ cb: (
1112
+ err: any,
1113
+ data?: ListConfigurationPolicyAssociationsCommandOutput
1114
+ ) => void
1115
+ ): void;
946
1116
  listEnabledProductsForImport(
947
1117
  args: ListEnabledProductsForImportCommandInput,
948
1118
  options?: __HttpHandlerOptions
@@ -1047,6 +1217,44 @@ export interface SecurityHub {
1047
1217
  options: __HttpHandlerOptions,
1048
1218
  cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
1049
1219
  ): void;
1220
+ startConfigurationPolicyAssociation(
1221
+ args: StartConfigurationPolicyAssociationCommandInput,
1222
+ options?: __HttpHandlerOptions
1223
+ ): Promise<StartConfigurationPolicyAssociationCommandOutput>;
1224
+ startConfigurationPolicyAssociation(
1225
+ args: StartConfigurationPolicyAssociationCommandInput,
1226
+ cb: (
1227
+ err: any,
1228
+ data?: StartConfigurationPolicyAssociationCommandOutput
1229
+ ) => void
1230
+ ): void;
1231
+ startConfigurationPolicyAssociation(
1232
+ args: StartConfigurationPolicyAssociationCommandInput,
1233
+ options: __HttpHandlerOptions,
1234
+ cb: (
1235
+ err: any,
1236
+ data?: StartConfigurationPolicyAssociationCommandOutput
1237
+ ) => void
1238
+ ): void;
1239
+ startConfigurationPolicyDisassociation(
1240
+ args: StartConfigurationPolicyDisassociationCommandInput,
1241
+ options?: __HttpHandlerOptions
1242
+ ): Promise<StartConfigurationPolicyDisassociationCommandOutput>;
1243
+ startConfigurationPolicyDisassociation(
1244
+ args: StartConfigurationPolicyDisassociationCommandInput,
1245
+ cb: (
1246
+ err: any,
1247
+ data?: StartConfigurationPolicyDisassociationCommandOutput
1248
+ ) => void
1249
+ ): void;
1250
+ startConfigurationPolicyDisassociation(
1251
+ args: StartConfigurationPolicyDisassociationCommandInput,
1252
+ options: __HttpHandlerOptions,
1253
+ cb: (
1254
+ err: any,
1255
+ data?: StartConfigurationPolicyDisassociationCommandOutput
1256
+ ) => void
1257
+ ): void;
1050
1258
  tagResource(
1051
1259
  args: TagResourceCommandInput,
1052
1260
  options?: __HttpHandlerOptions
@@ -1086,6 +1294,19 @@ export interface SecurityHub {
1086
1294
  options: __HttpHandlerOptions,
1087
1295
  cb: (err: any, data?: UpdateActionTargetCommandOutput) => void
1088
1296
  ): void;
1297
+ updateConfigurationPolicy(
1298
+ args: UpdateConfigurationPolicyCommandInput,
1299
+ options?: __HttpHandlerOptions
1300
+ ): Promise<UpdateConfigurationPolicyCommandOutput>;
1301
+ updateConfigurationPolicy(
1302
+ args: UpdateConfigurationPolicyCommandInput,
1303
+ cb: (err: any, data?: UpdateConfigurationPolicyCommandOutput) => void
1304
+ ): void;
1305
+ updateConfigurationPolicy(
1306
+ args: UpdateConfigurationPolicyCommandInput,
1307
+ options: __HttpHandlerOptions,
1308
+ cb: (err: any, data?: UpdateConfigurationPolicyCommandOutput) => void
1309
+ ): void;
1089
1310
  updateFindingAggregator(
1090
1311
  args: UpdateFindingAggregatorCommandInput,
1091
1312
  options?: __HttpHandlerOptions
@@ -1138,6 +1359,19 @@ export interface SecurityHub {
1138
1359
  options: __HttpHandlerOptions,
1139
1360
  cb: (err: any, data?: UpdateOrganizationConfigurationCommandOutput) => void
1140
1361
  ): void;
1362
+ updateSecurityControl(
1363
+ args: UpdateSecurityControlCommandInput,
1364
+ options?: __HttpHandlerOptions
1365
+ ): Promise<UpdateSecurityControlCommandOutput>;
1366
+ updateSecurityControl(
1367
+ args: UpdateSecurityControlCommandInput,
1368
+ cb: (err: any, data?: UpdateSecurityControlCommandOutput) => void
1369
+ ): void;
1370
+ updateSecurityControl(
1371
+ args: UpdateSecurityControlCommandInput,
1372
+ options: __HttpHandlerOptions,
1373
+ cb: (err: any, data?: UpdateSecurityControlCommandOutput) => void
1374
+ ): void;
1141
1375
  updateSecurityHubConfiguration(
1142
1376
  args: UpdateSecurityHubConfigurationCommandInput,
1143
1377
  options?: __HttpHandlerOptions