@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
@@ -5,6 +5,7 @@ import { BatchDeleteAutomationRulesCommandInput, BatchDeleteAutomationRulesComma
5
5
  import { BatchDisableStandardsCommandInput, BatchDisableStandardsCommandOutput } from "./commands/BatchDisableStandardsCommand";
6
6
  import { BatchEnableStandardsCommandInput, BatchEnableStandardsCommandOutput } from "./commands/BatchEnableStandardsCommand";
7
7
  import { BatchGetAutomationRulesCommandInput, BatchGetAutomationRulesCommandOutput } from "./commands/BatchGetAutomationRulesCommand";
8
+ import { BatchGetConfigurationPolicyAssociationsCommandInput, BatchGetConfigurationPolicyAssociationsCommandOutput } from "./commands/BatchGetConfigurationPolicyAssociationsCommand";
8
9
  import { BatchGetSecurityControlsCommandInput, BatchGetSecurityControlsCommandOutput } from "./commands/BatchGetSecurityControlsCommand";
9
10
  import { BatchGetStandardsControlAssociationsCommandInput, BatchGetStandardsControlAssociationsCommandOutput } from "./commands/BatchGetStandardsControlAssociationsCommand";
10
11
  import { BatchImportFindingsCommandInput, BatchImportFindingsCommandOutput } from "./commands/BatchImportFindingsCommand";
@@ -13,11 +14,13 @@ import { BatchUpdateFindingsCommandInput, BatchUpdateFindingsCommandOutput } fro
13
14
  import { BatchUpdateStandardsControlAssociationsCommandInput, BatchUpdateStandardsControlAssociationsCommandOutput } from "./commands/BatchUpdateStandardsControlAssociationsCommand";
14
15
  import { CreateActionTargetCommandInput, CreateActionTargetCommandOutput } from "./commands/CreateActionTargetCommand";
15
16
  import { CreateAutomationRuleCommandInput, CreateAutomationRuleCommandOutput } from "./commands/CreateAutomationRuleCommand";
17
+ import { CreateConfigurationPolicyCommandInput, CreateConfigurationPolicyCommandOutput } from "./commands/CreateConfigurationPolicyCommand";
16
18
  import { CreateFindingAggregatorCommandInput, CreateFindingAggregatorCommandOutput } from "./commands/CreateFindingAggregatorCommand";
17
19
  import { CreateInsightCommandInput, CreateInsightCommandOutput } from "./commands/CreateInsightCommand";
18
20
  import { CreateMembersCommandInput, CreateMembersCommandOutput } from "./commands/CreateMembersCommand";
19
21
  import { DeclineInvitationsCommandInput, DeclineInvitationsCommandOutput } from "./commands/DeclineInvitationsCommand";
20
22
  import { DeleteActionTargetCommandInput, DeleteActionTargetCommandOutput } from "./commands/DeleteActionTargetCommand";
23
+ import { DeleteConfigurationPolicyCommandInput, DeleteConfigurationPolicyCommandOutput } from "./commands/DeleteConfigurationPolicyCommand";
21
24
  import { DeleteFindingAggregatorCommandInput, DeleteFindingAggregatorCommandOutput } from "./commands/DeleteFindingAggregatorCommand";
22
25
  import { DeleteInsightCommandInput, DeleteInsightCommandOutput } from "./commands/DeleteInsightCommand";
23
26
  import { DeleteInvitationsCommandInput, DeleteInvitationsCommandOutput } from "./commands/DeleteInvitationsCommand";
@@ -38,6 +41,8 @@ import { EnableImportFindingsForProductCommandInput, EnableImportFindingsForProd
38
41
  import { EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput } from "./commands/EnableOrganizationAdminAccountCommand";
39
42
  import { EnableSecurityHubCommandInput, EnableSecurityHubCommandOutput } from "./commands/EnableSecurityHubCommand";
40
43
  import { GetAdministratorAccountCommandInput, GetAdministratorAccountCommandOutput } from "./commands/GetAdministratorAccountCommand";
44
+ import { GetConfigurationPolicyAssociationCommandInput, GetConfigurationPolicyAssociationCommandOutput } from "./commands/GetConfigurationPolicyAssociationCommand";
45
+ import { GetConfigurationPolicyCommandInput, GetConfigurationPolicyCommandOutput } from "./commands/GetConfigurationPolicyCommand";
41
46
  import { GetEnabledStandardsCommandInput, GetEnabledStandardsCommandOutput } from "./commands/GetEnabledStandardsCommand";
42
47
  import { GetFindingAggregatorCommandInput, GetFindingAggregatorCommandOutput } from "./commands/GetFindingAggregatorCommand";
43
48
  import { GetFindingHistoryCommandInput, GetFindingHistoryCommandOutput } from "./commands/GetFindingHistoryCommand";
@@ -47,8 +52,11 @@ import { GetInsightsCommandInput, GetInsightsCommandOutput } from "./commands/Ge
47
52
  import { GetInvitationsCountCommandInput, GetInvitationsCountCommandOutput } from "./commands/GetInvitationsCountCommand";
48
53
  import { GetMasterAccountCommandInput, GetMasterAccountCommandOutput } from "./commands/GetMasterAccountCommand";
49
54
  import { GetMembersCommandInput, GetMembersCommandOutput } from "./commands/GetMembersCommand";
55
+ import { GetSecurityControlDefinitionCommandInput, GetSecurityControlDefinitionCommandOutput } from "./commands/GetSecurityControlDefinitionCommand";
50
56
  import { InviteMembersCommandInput, InviteMembersCommandOutput } from "./commands/InviteMembersCommand";
51
57
  import { ListAutomationRulesCommandInput, ListAutomationRulesCommandOutput } from "./commands/ListAutomationRulesCommand";
58
+ import { ListConfigurationPoliciesCommandInput, ListConfigurationPoliciesCommandOutput } from "./commands/ListConfigurationPoliciesCommand";
59
+ import { ListConfigurationPolicyAssociationsCommandInput, ListConfigurationPolicyAssociationsCommandOutput } from "./commands/ListConfigurationPolicyAssociationsCommand";
52
60
  import { ListEnabledProductsForImportCommandInput, ListEnabledProductsForImportCommandOutput } from "./commands/ListEnabledProductsForImportCommand";
53
61
  import { ListFindingAggregatorsCommandInput, ListFindingAggregatorsCommandOutput } from "./commands/ListFindingAggregatorsCommand";
54
62
  import { ListInvitationsCommandInput, ListInvitationsCommandOutput } from "./commands/ListInvitationsCommand";
@@ -57,13 +65,17 @@ import { ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccount
57
65
  import { ListSecurityControlDefinitionsCommandInput, ListSecurityControlDefinitionsCommandOutput } from "./commands/ListSecurityControlDefinitionsCommand";
58
66
  import { ListStandardsControlAssociationsCommandInput, ListStandardsControlAssociationsCommandOutput } from "./commands/ListStandardsControlAssociationsCommand";
59
67
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
68
+ import { StartConfigurationPolicyAssociationCommandInput, StartConfigurationPolicyAssociationCommandOutput } from "./commands/StartConfigurationPolicyAssociationCommand";
69
+ import { StartConfigurationPolicyDisassociationCommandInput, StartConfigurationPolicyDisassociationCommandOutput } from "./commands/StartConfigurationPolicyDisassociationCommand";
60
70
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
61
71
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
62
72
  import { UpdateActionTargetCommandInput, UpdateActionTargetCommandOutput } from "./commands/UpdateActionTargetCommand";
73
+ import { UpdateConfigurationPolicyCommandInput, UpdateConfigurationPolicyCommandOutput } from "./commands/UpdateConfigurationPolicyCommand";
63
74
  import { UpdateFindingAggregatorCommandInput, UpdateFindingAggregatorCommandOutput } from "./commands/UpdateFindingAggregatorCommand";
64
75
  import { UpdateFindingsCommandInput, UpdateFindingsCommandOutput } from "./commands/UpdateFindingsCommand";
65
76
  import { UpdateInsightCommandInput, UpdateInsightCommandOutput } from "./commands/UpdateInsightCommand";
66
77
  import { UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput } from "./commands/UpdateOrganizationConfigurationCommand";
78
+ import { UpdateSecurityControlCommandInput, UpdateSecurityControlCommandOutput } from "./commands/UpdateSecurityControlCommand";
67
79
  import { UpdateSecurityHubConfigurationCommandInput, UpdateSecurityHubConfigurationCommandOutput } from "./commands/UpdateSecurityHubConfigurationCommand";
68
80
  import { UpdateStandardsControlCommandInput, UpdateStandardsControlCommandOutput } from "./commands/UpdateStandardsControlCommand";
69
81
  import { SecurityHubClient } from "./SecurityHubClient";
@@ -104,6 +116,12 @@ export interface SecurityHub {
104
116
  batchGetAutomationRules(args: BatchGetAutomationRulesCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetAutomationRulesCommandOutput>;
105
117
  batchGetAutomationRules(args: BatchGetAutomationRulesCommandInput, cb: (err: any, data?: BatchGetAutomationRulesCommandOutput) => void): void;
106
118
  batchGetAutomationRules(args: BatchGetAutomationRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetAutomationRulesCommandOutput) => void): void;
119
+ /**
120
+ * @see {@link BatchGetConfigurationPolicyAssociationsCommand}
121
+ */
122
+ batchGetConfigurationPolicyAssociations(args: BatchGetConfigurationPolicyAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetConfigurationPolicyAssociationsCommandOutput>;
123
+ batchGetConfigurationPolicyAssociations(args: BatchGetConfigurationPolicyAssociationsCommandInput, cb: (err: any, data?: BatchGetConfigurationPolicyAssociationsCommandOutput) => void): void;
124
+ batchGetConfigurationPolicyAssociations(args: BatchGetConfigurationPolicyAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetConfigurationPolicyAssociationsCommandOutput) => void): void;
107
125
  /**
108
126
  * @see {@link BatchGetSecurityControlsCommand}
109
127
  */
@@ -152,6 +170,12 @@ export interface SecurityHub {
152
170
  createAutomationRule(args: CreateAutomationRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateAutomationRuleCommandOutput>;
153
171
  createAutomationRule(args: CreateAutomationRuleCommandInput, cb: (err: any, data?: CreateAutomationRuleCommandOutput) => void): void;
154
172
  createAutomationRule(args: CreateAutomationRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAutomationRuleCommandOutput) => void): void;
173
+ /**
174
+ * @see {@link CreateConfigurationPolicyCommand}
175
+ */
176
+ createConfigurationPolicy(args: CreateConfigurationPolicyCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigurationPolicyCommandOutput>;
177
+ createConfigurationPolicy(args: CreateConfigurationPolicyCommandInput, cb: (err: any, data?: CreateConfigurationPolicyCommandOutput) => void): void;
178
+ createConfigurationPolicy(args: CreateConfigurationPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigurationPolicyCommandOutput) => void): void;
155
179
  /**
156
180
  * @see {@link CreateFindingAggregatorCommand}
157
181
  */
@@ -182,6 +206,12 @@ export interface SecurityHub {
182
206
  deleteActionTarget(args: DeleteActionTargetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteActionTargetCommandOutput>;
183
207
  deleteActionTarget(args: DeleteActionTargetCommandInput, cb: (err: any, data?: DeleteActionTargetCommandOutput) => void): void;
184
208
  deleteActionTarget(args: DeleteActionTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteActionTargetCommandOutput) => void): void;
209
+ /**
210
+ * @see {@link DeleteConfigurationPolicyCommand}
211
+ */
212
+ deleteConfigurationPolicy(args: DeleteConfigurationPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfigurationPolicyCommandOutput>;
213
+ deleteConfigurationPolicy(args: DeleteConfigurationPolicyCommandInput, cb: (err: any, data?: DeleteConfigurationPolicyCommandOutput) => void): void;
214
+ deleteConfigurationPolicy(args: DeleteConfigurationPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfigurationPolicyCommandOutput) => void): void;
185
215
  /**
186
216
  * @see {@link DeleteFindingAggregatorCommand}
187
217
  */
@@ -302,6 +332,18 @@ export interface SecurityHub {
302
332
  getAdministratorAccount(args: GetAdministratorAccountCommandInput, options?: __HttpHandlerOptions): Promise<GetAdministratorAccountCommandOutput>;
303
333
  getAdministratorAccount(args: GetAdministratorAccountCommandInput, cb: (err: any, data?: GetAdministratorAccountCommandOutput) => void): void;
304
334
  getAdministratorAccount(args: GetAdministratorAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAdministratorAccountCommandOutput) => void): void;
335
+ /**
336
+ * @see {@link GetConfigurationPolicyCommand}
337
+ */
338
+ getConfigurationPolicy(args: GetConfigurationPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetConfigurationPolicyCommandOutput>;
339
+ getConfigurationPolicy(args: GetConfigurationPolicyCommandInput, cb: (err: any, data?: GetConfigurationPolicyCommandOutput) => void): void;
340
+ getConfigurationPolicy(args: GetConfigurationPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfigurationPolicyCommandOutput) => void): void;
341
+ /**
342
+ * @see {@link GetConfigurationPolicyAssociationCommand}
343
+ */
344
+ getConfigurationPolicyAssociation(args: GetConfigurationPolicyAssociationCommandInput, options?: __HttpHandlerOptions): Promise<GetConfigurationPolicyAssociationCommandOutput>;
345
+ getConfigurationPolicyAssociation(args: GetConfigurationPolicyAssociationCommandInput, cb: (err: any, data?: GetConfigurationPolicyAssociationCommandOutput) => void): void;
346
+ getConfigurationPolicyAssociation(args: GetConfigurationPolicyAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfigurationPolicyAssociationCommandOutput) => void): void;
305
347
  /**
306
348
  * @see {@link GetEnabledStandardsCommand}
307
349
  */
@@ -356,6 +398,12 @@ export interface SecurityHub {
356
398
  getMembers(args: GetMembersCommandInput, options?: __HttpHandlerOptions): Promise<GetMembersCommandOutput>;
357
399
  getMembers(args: GetMembersCommandInput, cb: (err: any, data?: GetMembersCommandOutput) => void): void;
358
400
  getMembers(args: GetMembersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMembersCommandOutput) => void): void;
401
+ /**
402
+ * @see {@link GetSecurityControlDefinitionCommand}
403
+ */
404
+ getSecurityControlDefinition(args: GetSecurityControlDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<GetSecurityControlDefinitionCommandOutput>;
405
+ getSecurityControlDefinition(args: GetSecurityControlDefinitionCommandInput, cb: (err: any, data?: GetSecurityControlDefinitionCommandOutput) => void): void;
406
+ getSecurityControlDefinition(args: GetSecurityControlDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSecurityControlDefinitionCommandOutput) => void): void;
359
407
  /**
360
408
  * @see {@link InviteMembersCommand}
361
409
  */
@@ -368,6 +416,18 @@ export interface SecurityHub {
368
416
  listAutomationRules(args: ListAutomationRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListAutomationRulesCommandOutput>;
369
417
  listAutomationRules(args: ListAutomationRulesCommandInput, cb: (err: any, data?: ListAutomationRulesCommandOutput) => void): void;
370
418
  listAutomationRules(args: ListAutomationRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAutomationRulesCommandOutput) => void): void;
419
+ /**
420
+ * @see {@link ListConfigurationPoliciesCommand}
421
+ */
422
+ listConfigurationPolicies(args: ListConfigurationPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigurationPoliciesCommandOutput>;
423
+ listConfigurationPolicies(args: ListConfigurationPoliciesCommandInput, cb: (err: any, data?: ListConfigurationPoliciesCommandOutput) => void): void;
424
+ listConfigurationPolicies(args: ListConfigurationPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationPoliciesCommandOutput) => void): void;
425
+ /**
426
+ * @see {@link ListConfigurationPolicyAssociationsCommand}
427
+ */
428
+ listConfigurationPolicyAssociations(args: ListConfigurationPolicyAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigurationPolicyAssociationsCommandOutput>;
429
+ listConfigurationPolicyAssociations(args: ListConfigurationPolicyAssociationsCommandInput, cb: (err: any, data?: ListConfigurationPolicyAssociationsCommandOutput) => void): void;
430
+ listConfigurationPolicyAssociations(args: ListConfigurationPolicyAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationPolicyAssociationsCommandOutput) => void): void;
371
431
  /**
372
432
  * @see {@link ListEnabledProductsForImportCommand}
373
433
  */
@@ -416,6 +476,18 @@ export interface SecurityHub {
416
476
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
417
477
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
418
478
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
479
+ /**
480
+ * @see {@link StartConfigurationPolicyAssociationCommand}
481
+ */
482
+ startConfigurationPolicyAssociation(args: StartConfigurationPolicyAssociationCommandInput, options?: __HttpHandlerOptions): Promise<StartConfigurationPolicyAssociationCommandOutput>;
483
+ startConfigurationPolicyAssociation(args: StartConfigurationPolicyAssociationCommandInput, cb: (err: any, data?: StartConfigurationPolicyAssociationCommandOutput) => void): void;
484
+ startConfigurationPolicyAssociation(args: StartConfigurationPolicyAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartConfigurationPolicyAssociationCommandOutput) => void): void;
485
+ /**
486
+ * @see {@link StartConfigurationPolicyDisassociationCommand}
487
+ */
488
+ startConfigurationPolicyDisassociation(args: StartConfigurationPolicyDisassociationCommandInput, options?: __HttpHandlerOptions): Promise<StartConfigurationPolicyDisassociationCommandOutput>;
489
+ startConfigurationPolicyDisassociation(args: StartConfigurationPolicyDisassociationCommandInput, cb: (err: any, data?: StartConfigurationPolicyDisassociationCommandOutput) => void): void;
490
+ startConfigurationPolicyDisassociation(args: StartConfigurationPolicyDisassociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartConfigurationPolicyDisassociationCommandOutput) => void): void;
419
491
  /**
420
492
  * @see {@link TagResourceCommand}
421
493
  */
@@ -434,6 +506,12 @@ export interface SecurityHub {
434
506
  updateActionTarget(args: UpdateActionTargetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateActionTargetCommandOutput>;
435
507
  updateActionTarget(args: UpdateActionTargetCommandInput, cb: (err: any, data?: UpdateActionTargetCommandOutput) => void): void;
436
508
  updateActionTarget(args: UpdateActionTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateActionTargetCommandOutput) => void): void;
509
+ /**
510
+ * @see {@link UpdateConfigurationPolicyCommand}
511
+ */
512
+ updateConfigurationPolicy(args: UpdateConfigurationPolicyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConfigurationPolicyCommandOutput>;
513
+ updateConfigurationPolicy(args: UpdateConfigurationPolicyCommandInput, cb: (err: any, data?: UpdateConfigurationPolicyCommandOutput) => void): void;
514
+ updateConfigurationPolicy(args: UpdateConfigurationPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConfigurationPolicyCommandOutput) => void): void;
437
515
  /**
438
516
  * @see {@link UpdateFindingAggregatorCommand}
439
517
  */
@@ -458,6 +536,12 @@ export interface SecurityHub {
458
536
  updateOrganizationConfiguration(args: UpdateOrganizationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateOrganizationConfigurationCommandOutput>;
459
537
  updateOrganizationConfiguration(args: UpdateOrganizationConfigurationCommandInput, cb: (err: any, data?: UpdateOrganizationConfigurationCommandOutput) => void): void;
460
538
  updateOrganizationConfiguration(args: UpdateOrganizationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateOrganizationConfigurationCommandOutput) => void): void;
539
+ /**
540
+ * @see {@link UpdateSecurityControlCommand}
541
+ */
542
+ updateSecurityControl(args: UpdateSecurityControlCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSecurityControlCommandOutput>;
543
+ updateSecurityControl(args: UpdateSecurityControlCommandInput, cb: (err: any, data?: UpdateSecurityControlCommandOutput) => void): void;
544
+ updateSecurityControl(args: UpdateSecurityControlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSecurityControlCommandOutput) => void): void;
461
545
  /**
462
546
  * @see {@link UpdateSecurityHubConfigurationCommand}
463
547
  */
@@ -14,6 +14,7 @@ import { BatchDeleteAutomationRulesCommandInput, BatchDeleteAutomationRulesComma
14
14
  import { BatchDisableStandardsCommandInput, BatchDisableStandardsCommandOutput } from "./commands/BatchDisableStandardsCommand";
15
15
  import { BatchEnableStandardsCommandInput, BatchEnableStandardsCommandOutput } from "./commands/BatchEnableStandardsCommand";
16
16
  import { BatchGetAutomationRulesCommandInput, BatchGetAutomationRulesCommandOutput } from "./commands/BatchGetAutomationRulesCommand";
17
+ import { BatchGetConfigurationPolicyAssociationsCommandInput, BatchGetConfigurationPolicyAssociationsCommandOutput } from "./commands/BatchGetConfigurationPolicyAssociationsCommand";
17
18
  import { BatchGetSecurityControlsCommandInput, BatchGetSecurityControlsCommandOutput } from "./commands/BatchGetSecurityControlsCommand";
18
19
  import { BatchGetStandardsControlAssociationsCommandInput, BatchGetStandardsControlAssociationsCommandOutput } from "./commands/BatchGetStandardsControlAssociationsCommand";
19
20
  import { BatchImportFindingsCommandInput, BatchImportFindingsCommandOutput } from "./commands/BatchImportFindingsCommand";
@@ -22,11 +23,13 @@ import { BatchUpdateFindingsCommandInput, BatchUpdateFindingsCommandOutput } fro
22
23
  import { BatchUpdateStandardsControlAssociationsCommandInput, BatchUpdateStandardsControlAssociationsCommandOutput } from "./commands/BatchUpdateStandardsControlAssociationsCommand";
23
24
  import { CreateActionTargetCommandInput, CreateActionTargetCommandOutput } from "./commands/CreateActionTargetCommand";
24
25
  import { CreateAutomationRuleCommandInput, CreateAutomationRuleCommandOutput } from "./commands/CreateAutomationRuleCommand";
26
+ import { CreateConfigurationPolicyCommandInput, CreateConfigurationPolicyCommandOutput } from "./commands/CreateConfigurationPolicyCommand";
25
27
  import { CreateFindingAggregatorCommandInput, CreateFindingAggregatorCommandOutput } from "./commands/CreateFindingAggregatorCommand";
26
28
  import { CreateInsightCommandInput, CreateInsightCommandOutput } from "./commands/CreateInsightCommand";
27
29
  import { CreateMembersCommandInput, CreateMembersCommandOutput } from "./commands/CreateMembersCommand";
28
30
  import { DeclineInvitationsCommandInput, DeclineInvitationsCommandOutput } from "./commands/DeclineInvitationsCommand";
29
31
  import { DeleteActionTargetCommandInput, DeleteActionTargetCommandOutput } from "./commands/DeleteActionTargetCommand";
32
+ import { DeleteConfigurationPolicyCommandInput, DeleteConfigurationPolicyCommandOutput } from "./commands/DeleteConfigurationPolicyCommand";
30
33
  import { DeleteFindingAggregatorCommandInput, DeleteFindingAggregatorCommandOutput } from "./commands/DeleteFindingAggregatorCommand";
31
34
  import { DeleteInsightCommandInput, DeleteInsightCommandOutput } from "./commands/DeleteInsightCommand";
32
35
  import { DeleteInvitationsCommandInput, DeleteInvitationsCommandOutput } from "./commands/DeleteInvitationsCommand";
@@ -47,6 +50,8 @@ import { EnableImportFindingsForProductCommandInput, EnableImportFindingsForProd
47
50
  import { EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput } from "./commands/EnableOrganizationAdminAccountCommand";
48
51
  import { EnableSecurityHubCommandInput, EnableSecurityHubCommandOutput } from "./commands/EnableSecurityHubCommand";
49
52
  import { GetAdministratorAccountCommandInput, GetAdministratorAccountCommandOutput } from "./commands/GetAdministratorAccountCommand";
53
+ import { GetConfigurationPolicyAssociationCommandInput, GetConfigurationPolicyAssociationCommandOutput } from "./commands/GetConfigurationPolicyAssociationCommand";
54
+ import { GetConfigurationPolicyCommandInput, GetConfigurationPolicyCommandOutput } from "./commands/GetConfigurationPolicyCommand";
50
55
  import { GetEnabledStandardsCommandInput, GetEnabledStandardsCommandOutput } from "./commands/GetEnabledStandardsCommand";
51
56
  import { GetFindingAggregatorCommandInput, GetFindingAggregatorCommandOutput } from "./commands/GetFindingAggregatorCommand";
52
57
  import { GetFindingHistoryCommandInput, GetFindingHistoryCommandOutput } from "./commands/GetFindingHistoryCommand";
@@ -56,8 +61,11 @@ import { GetInsightsCommandInput, GetInsightsCommandOutput } from "./commands/Ge
56
61
  import { GetInvitationsCountCommandInput, GetInvitationsCountCommandOutput } from "./commands/GetInvitationsCountCommand";
57
62
  import { GetMasterAccountCommandInput, GetMasterAccountCommandOutput } from "./commands/GetMasterAccountCommand";
58
63
  import { GetMembersCommandInput, GetMembersCommandOutput } from "./commands/GetMembersCommand";
64
+ import { GetSecurityControlDefinitionCommandInput, GetSecurityControlDefinitionCommandOutput } from "./commands/GetSecurityControlDefinitionCommand";
59
65
  import { InviteMembersCommandInput, InviteMembersCommandOutput } from "./commands/InviteMembersCommand";
60
66
  import { ListAutomationRulesCommandInput, ListAutomationRulesCommandOutput } from "./commands/ListAutomationRulesCommand";
67
+ import { ListConfigurationPoliciesCommandInput, ListConfigurationPoliciesCommandOutput } from "./commands/ListConfigurationPoliciesCommand";
68
+ import { ListConfigurationPolicyAssociationsCommandInput, ListConfigurationPolicyAssociationsCommandOutput } from "./commands/ListConfigurationPolicyAssociationsCommand";
61
69
  import { ListEnabledProductsForImportCommandInput, ListEnabledProductsForImportCommandOutput } from "./commands/ListEnabledProductsForImportCommand";
62
70
  import { ListFindingAggregatorsCommandInput, ListFindingAggregatorsCommandOutput } from "./commands/ListFindingAggregatorsCommand";
63
71
  import { ListInvitationsCommandInput, ListInvitationsCommandOutput } from "./commands/ListInvitationsCommand";
@@ -66,13 +74,17 @@ import { ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccount
66
74
  import { ListSecurityControlDefinitionsCommandInput, ListSecurityControlDefinitionsCommandOutput } from "./commands/ListSecurityControlDefinitionsCommand";
67
75
  import { ListStandardsControlAssociationsCommandInput, ListStandardsControlAssociationsCommandOutput } from "./commands/ListStandardsControlAssociationsCommand";
68
76
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
77
+ import { StartConfigurationPolicyAssociationCommandInput, StartConfigurationPolicyAssociationCommandOutput } from "./commands/StartConfigurationPolicyAssociationCommand";
78
+ import { StartConfigurationPolicyDisassociationCommandInput, StartConfigurationPolicyDisassociationCommandOutput } from "./commands/StartConfigurationPolicyDisassociationCommand";
69
79
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
70
80
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
71
81
  import { UpdateActionTargetCommandInput, UpdateActionTargetCommandOutput } from "./commands/UpdateActionTargetCommand";
82
+ import { UpdateConfigurationPolicyCommandInput, UpdateConfigurationPolicyCommandOutput } from "./commands/UpdateConfigurationPolicyCommand";
72
83
  import { UpdateFindingAggregatorCommandInput, UpdateFindingAggregatorCommandOutput } from "./commands/UpdateFindingAggregatorCommand";
73
84
  import { UpdateFindingsCommandInput, UpdateFindingsCommandOutput } from "./commands/UpdateFindingsCommand";
74
85
  import { UpdateInsightCommandInput, UpdateInsightCommandOutput } from "./commands/UpdateInsightCommand";
75
86
  import { UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput } from "./commands/UpdateOrganizationConfigurationCommand";
87
+ import { UpdateSecurityControlCommandInput, UpdateSecurityControlCommandOutput } from "./commands/UpdateSecurityControlCommand";
76
88
  import { UpdateSecurityHubConfigurationCommandInput, UpdateSecurityHubConfigurationCommandOutput } from "./commands/UpdateSecurityHubConfigurationCommand";
77
89
  import { UpdateStandardsControlCommandInput, UpdateStandardsControlCommandOutput } from "./commands/UpdateStandardsControlCommand";
78
90
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
@@ -81,11 +93,11 @@ export { __Client };
81
93
  /**
82
94
  * @public
83
95
  */
84
- export type ServiceInputTypes = AcceptAdministratorInvitationCommandInput | AcceptInvitationCommandInput | BatchDeleteAutomationRulesCommandInput | BatchDisableStandardsCommandInput | BatchEnableStandardsCommandInput | BatchGetAutomationRulesCommandInput | BatchGetSecurityControlsCommandInput | BatchGetStandardsControlAssociationsCommandInput | BatchImportFindingsCommandInput | BatchUpdateAutomationRulesCommandInput | BatchUpdateFindingsCommandInput | BatchUpdateStandardsControlAssociationsCommandInput | CreateActionTargetCommandInput | CreateAutomationRuleCommandInput | CreateFindingAggregatorCommandInput | CreateInsightCommandInput | CreateMembersCommandInput | DeclineInvitationsCommandInput | DeleteActionTargetCommandInput | DeleteFindingAggregatorCommandInput | DeleteInsightCommandInput | DeleteInvitationsCommandInput | DeleteMembersCommandInput | DescribeActionTargetsCommandInput | DescribeHubCommandInput | DescribeOrganizationConfigurationCommandInput | DescribeProductsCommandInput | DescribeStandardsCommandInput | DescribeStandardsControlsCommandInput | DisableImportFindingsForProductCommandInput | DisableOrganizationAdminAccountCommandInput | DisableSecurityHubCommandInput | DisassociateFromAdministratorAccountCommandInput | DisassociateFromMasterAccountCommandInput | DisassociateMembersCommandInput | EnableImportFindingsForProductCommandInput | EnableOrganizationAdminAccountCommandInput | EnableSecurityHubCommandInput | GetAdministratorAccountCommandInput | GetEnabledStandardsCommandInput | GetFindingAggregatorCommandInput | GetFindingHistoryCommandInput | GetFindingsCommandInput | GetInsightResultsCommandInput | GetInsightsCommandInput | GetInvitationsCountCommandInput | GetMasterAccountCommandInput | GetMembersCommandInput | InviteMembersCommandInput | ListAutomationRulesCommandInput | ListEnabledProductsForImportCommandInput | ListFindingAggregatorsCommandInput | ListInvitationsCommandInput | ListMembersCommandInput | ListOrganizationAdminAccountsCommandInput | ListSecurityControlDefinitionsCommandInput | ListStandardsControlAssociationsCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateActionTargetCommandInput | UpdateFindingAggregatorCommandInput | UpdateFindingsCommandInput | UpdateInsightCommandInput | UpdateOrganizationConfigurationCommandInput | UpdateSecurityHubConfigurationCommandInput | UpdateStandardsControlCommandInput;
96
+ export type ServiceInputTypes = AcceptAdministratorInvitationCommandInput | AcceptInvitationCommandInput | BatchDeleteAutomationRulesCommandInput | BatchDisableStandardsCommandInput | BatchEnableStandardsCommandInput | BatchGetAutomationRulesCommandInput | BatchGetConfigurationPolicyAssociationsCommandInput | BatchGetSecurityControlsCommandInput | BatchGetStandardsControlAssociationsCommandInput | BatchImportFindingsCommandInput | BatchUpdateAutomationRulesCommandInput | BatchUpdateFindingsCommandInput | BatchUpdateStandardsControlAssociationsCommandInput | CreateActionTargetCommandInput | CreateAutomationRuleCommandInput | CreateConfigurationPolicyCommandInput | CreateFindingAggregatorCommandInput | CreateInsightCommandInput | CreateMembersCommandInput | DeclineInvitationsCommandInput | DeleteActionTargetCommandInput | DeleteConfigurationPolicyCommandInput | DeleteFindingAggregatorCommandInput | DeleteInsightCommandInput | DeleteInvitationsCommandInput | DeleteMembersCommandInput | DescribeActionTargetsCommandInput | DescribeHubCommandInput | DescribeOrganizationConfigurationCommandInput | DescribeProductsCommandInput | DescribeStandardsCommandInput | DescribeStandardsControlsCommandInput | DisableImportFindingsForProductCommandInput | DisableOrganizationAdminAccountCommandInput | DisableSecurityHubCommandInput | DisassociateFromAdministratorAccountCommandInput | DisassociateFromMasterAccountCommandInput | DisassociateMembersCommandInput | EnableImportFindingsForProductCommandInput | EnableOrganizationAdminAccountCommandInput | EnableSecurityHubCommandInput | GetAdministratorAccountCommandInput | GetConfigurationPolicyAssociationCommandInput | GetConfigurationPolicyCommandInput | GetEnabledStandardsCommandInput | GetFindingAggregatorCommandInput | GetFindingHistoryCommandInput | GetFindingsCommandInput | GetInsightResultsCommandInput | GetInsightsCommandInput | GetInvitationsCountCommandInput | GetMasterAccountCommandInput | GetMembersCommandInput | GetSecurityControlDefinitionCommandInput | InviteMembersCommandInput | ListAutomationRulesCommandInput | ListConfigurationPoliciesCommandInput | ListConfigurationPolicyAssociationsCommandInput | ListEnabledProductsForImportCommandInput | ListFindingAggregatorsCommandInput | ListInvitationsCommandInput | ListMembersCommandInput | ListOrganizationAdminAccountsCommandInput | ListSecurityControlDefinitionsCommandInput | ListStandardsControlAssociationsCommandInput | ListTagsForResourceCommandInput | StartConfigurationPolicyAssociationCommandInput | StartConfigurationPolicyDisassociationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateActionTargetCommandInput | UpdateConfigurationPolicyCommandInput | UpdateFindingAggregatorCommandInput | UpdateFindingsCommandInput | UpdateInsightCommandInput | UpdateOrganizationConfigurationCommandInput | UpdateSecurityControlCommandInput | UpdateSecurityHubConfigurationCommandInput | UpdateStandardsControlCommandInput;
85
97
  /**
86
98
  * @public
87
99
  */
88
- export type ServiceOutputTypes = AcceptAdministratorInvitationCommandOutput | AcceptInvitationCommandOutput | BatchDeleteAutomationRulesCommandOutput | BatchDisableStandardsCommandOutput | BatchEnableStandardsCommandOutput | BatchGetAutomationRulesCommandOutput | BatchGetSecurityControlsCommandOutput | BatchGetStandardsControlAssociationsCommandOutput | BatchImportFindingsCommandOutput | BatchUpdateAutomationRulesCommandOutput | BatchUpdateFindingsCommandOutput | BatchUpdateStandardsControlAssociationsCommandOutput | CreateActionTargetCommandOutput | CreateAutomationRuleCommandOutput | CreateFindingAggregatorCommandOutput | CreateInsightCommandOutput | CreateMembersCommandOutput | DeclineInvitationsCommandOutput | DeleteActionTargetCommandOutput | DeleteFindingAggregatorCommandOutput | DeleteInsightCommandOutput | DeleteInvitationsCommandOutput | DeleteMembersCommandOutput | DescribeActionTargetsCommandOutput | DescribeHubCommandOutput | DescribeOrganizationConfigurationCommandOutput | DescribeProductsCommandOutput | DescribeStandardsCommandOutput | DescribeStandardsControlsCommandOutput | DisableImportFindingsForProductCommandOutput | DisableOrganizationAdminAccountCommandOutput | DisableSecurityHubCommandOutput | DisassociateFromAdministratorAccountCommandOutput | DisassociateFromMasterAccountCommandOutput | DisassociateMembersCommandOutput | EnableImportFindingsForProductCommandOutput | EnableOrganizationAdminAccountCommandOutput | EnableSecurityHubCommandOutput | GetAdministratorAccountCommandOutput | GetEnabledStandardsCommandOutput | GetFindingAggregatorCommandOutput | GetFindingHistoryCommandOutput | GetFindingsCommandOutput | GetInsightResultsCommandOutput | GetInsightsCommandOutput | GetInvitationsCountCommandOutput | GetMasterAccountCommandOutput | GetMembersCommandOutput | InviteMembersCommandOutput | ListAutomationRulesCommandOutput | ListEnabledProductsForImportCommandOutput | ListFindingAggregatorsCommandOutput | ListInvitationsCommandOutput | ListMembersCommandOutput | ListOrganizationAdminAccountsCommandOutput | ListSecurityControlDefinitionsCommandOutput | ListStandardsControlAssociationsCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateActionTargetCommandOutput | UpdateFindingAggregatorCommandOutput | UpdateFindingsCommandOutput | UpdateInsightCommandOutput | UpdateOrganizationConfigurationCommandOutput | UpdateSecurityHubConfigurationCommandOutput | UpdateStandardsControlCommandOutput;
100
+ export type ServiceOutputTypes = AcceptAdministratorInvitationCommandOutput | AcceptInvitationCommandOutput | BatchDeleteAutomationRulesCommandOutput | BatchDisableStandardsCommandOutput | BatchEnableStandardsCommandOutput | BatchGetAutomationRulesCommandOutput | BatchGetConfigurationPolicyAssociationsCommandOutput | BatchGetSecurityControlsCommandOutput | BatchGetStandardsControlAssociationsCommandOutput | BatchImportFindingsCommandOutput | BatchUpdateAutomationRulesCommandOutput | BatchUpdateFindingsCommandOutput | BatchUpdateStandardsControlAssociationsCommandOutput | CreateActionTargetCommandOutput | CreateAutomationRuleCommandOutput | CreateConfigurationPolicyCommandOutput | CreateFindingAggregatorCommandOutput | CreateInsightCommandOutput | CreateMembersCommandOutput | DeclineInvitationsCommandOutput | DeleteActionTargetCommandOutput | DeleteConfigurationPolicyCommandOutput | DeleteFindingAggregatorCommandOutput | DeleteInsightCommandOutput | DeleteInvitationsCommandOutput | DeleteMembersCommandOutput | DescribeActionTargetsCommandOutput | DescribeHubCommandOutput | DescribeOrganizationConfigurationCommandOutput | DescribeProductsCommandOutput | DescribeStandardsCommandOutput | DescribeStandardsControlsCommandOutput | DisableImportFindingsForProductCommandOutput | DisableOrganizationAdminAccountCommandOutput | DisableSecurityHubCommandOutput | DisassociateFromAdministratorAccountCommandOutput | DisassociateFromMasterAccountCommandOutput | DisassociateMembersCommandOutput | EnableImportFindingsForProductCommandOutput | EnableOrganizationAdminAccountCommandOutput | EnableSecurityHubCommandOutput | GetAdministratorAccountCommandOutput | GetConfigurationPolicyAssociationCommandOutput | GetConfigurationPolicyCommandOutput | GetEnabledStandardsCommandOutput | GetFindingAggregatorCommandOutput | GetFindingHistoryCommandOutput | GetFindingsCommandOutput | GetInsightResultsCommandOutput | GetInsightsCommandOutput | GetInvitationsCountCommandOutput | GetMasterAccountCommandOutput | GetMembersCommandOutput | GetSecurityControlDefinitionCommandOutput | InviteMembersCommandOutput | ListAutomationRulesCommandOutput | ListConfigurationPoliciesCommandOutput | ListConfigurationPolicyAssociationsCommandOutput | ListEnabledProductsForImportCommandOutput | ListFindingAggregatorsCommandOutput | ListInvitationsCommandOutput | ListMembersCommandOutput | ListOrganizationAdminAccountsCommandOutput | ListSecurityControlDefinitionsCommandOutput | ListStandardsControlAssociationsCommandOutput | ListTagsForResourceCommandOutput | StartConfigurationPolicyAssociationCommandOutput | StartConfigurationPolicyDisassociationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateActionTargetCommandOutput | UpdateConfigurationPolicyCommandOutput | UpdateFindingAggregatorCommandOutput | UpdateFindingsCommandOutput | UpdateInsightCommandOutput | UpdateOrganizationConfigurationCommandOutput | UpdateSecurityControlCommandOutput | UpdateSecurityHubConfigurationCommandOutput | UpdateStandardsControlCommandOutput;
89
101
  /**
90
102
  * @public
91
103
  */
@@ -64,6 +64,9 @@ export interface BatchDisableStandardsCommandOutput extends BatchDisableStandard
64
64
  * @see {@link BatchDisableStandardsCommandOutput} for command's `response` shape.
65
65
  * @see {@link SecurityHubClientResolvedConfig | config} for SecurityHubClient's `config` shape.
66
66
  *
67
+ * @throws {@link AccessDeniedException} (client fault)
68
+ * <p>You don't have permission to perform the action specified in the request.</p>
69
+ *
67
70
  * @throws {@link InternalException} (server fault)
68
71
  * <p>Internal server error.</p>
69
72
  *
@@ -70,6 +70,9 @@ export interface BatchEnableStandardsCommandOutput extends BatchEnableStandardsR
70
70
  * @see {@link BatchEnableStandardsCommandOutput} for command's `response` shape.
71
71
  * @see {@link SecurityHubClientResolvedConfig | config} for SecurityHubClient's `config` shape.
72
72
  *
73
+ * @throws {@link AccessDeniedException} (client fault)
74
+ * <p>You don't have permission to perform the action specified in the request.</p>
75
+ *
73
76
  * @throws {@link InternalException} (server fault)
74
77
  * <p>Internal server error.</p>
75
78
  *
@@ -124,6 +124,8 @@ export interface BatchGetAutomationRulesCommandOutput extends BatchGetAutomation
124
124
  * // { // NumberFilter
125
125
  * // Gte: Number("double"),
126
126
  * // Lte: Number("double"),
127
+ * // Gt: Number("double"),
128
+ * // Lt: Number("double"),
127
129
  * // Eq: Number("double"),
128
130
  * // },
129
131
  * // ],
@@ -131,6 +133,8 @@ export interface BatchGetAutomationRulesCommandOutput extends BatchGetAutomation
131
133
  * // {
132
134
  * // Gte: Number("double"),
133
135
  * // Lte: Number("double"),
136
+ * // Gt: Number("double"),
137
+ * // Lt: Number("double"),
134
138
  * // Eq: Number("double"),
135
139
  * // },
136
140
  * // ],
@@ -185,6 +189,9 @@ export interface BatchGetAutomationRulesCommandOutput extends BatchGetAutomation
185
189
  * // Comparison: "EQUALS" || "NOT_EQUALS" || "CONTAINS" || "NOT_CONTAINS",
186
190
  * // },
187
191
  * // ],
192
+ * // ResourceApplicationArn: "<StringFilterList>",
193
+ * // ResourceApplicationName: "<StringFilterList>",
194
+ * // AwsAccountName: "<StringFilterList>",
188
195
  * // },
189
196
  * // Actions: [ // ActionList
190
197
  * // { // AutomationRulesAction
@@ -0,0 +1,128 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { BatchGetConfigurationPolicyAssociationsRequest, BatchGetConfigurationPolicyAssociationsResponse } from "../models/models_2";
5
+ import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link BatchGetConfigurationPolicyAssociationsCommand}.
14
+ */
15
+ export interface BatchGetConfigurationPolicyAssociationsCommandInput extends BatchGetConfigurationPolicyAssociationsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link BatchGetConfigurationPolicyAssociationsCommand}.
21
+ */
22
+ export interface BatchGetConfigurationPolicyAssociationsCommandOutput extends BatchGetConfigurationPolicyAssociationsResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>
27
+ * Returns associations between an Security Hub configuration and a batch of target accounts, organizational units, or the root.
28
+ * Only the Security Hub delegated administrator can invoke this operation from the home Region. A configuration
29
+ * can refer to a configuration policy or to a self-managed configuration.
30
+ * </p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { SecurityHubClient, BatchGetConfigurationPolicyAssociationsCommand } from "@aws-sdk/client-securityhub"; // ES Modules import
35
+ * // const { SecurityHubClient, BatchGetConfigurationPolicyAssociationsCommand } = require("@aws-sdk/client-securityhub"); // CommonJS import
36
+ * const client = new SecurityHubClient(config);
37
+ * const input = { // BatchGetConfigurationPolicyAssociationsRequest
38
+ * ConfigurationPolicyAssociationIdentifiers: [ // ConfigurationPolicyAssociationsList // required
39
+ * { // ConfigurationPolicyAssociation
40
+ * Target: { // Target Union: only one key present
41
+ * AccountId: "STRING_VALUE",
42
+ * OrganizationalUnitId: "STRING_VALUE",
43
+ * RootId: "STRING_VALUE",
44
+ * },
45
+ * },
46
+ * ],
47
+ * };
48
+ * const command = new BatchGetConfigurationPolicyAssociationsCommand(input);
49
+ * const response = await client.send(command);
50
+ * // { // BatchGetConfigurationPolicyAssociationsResponse
51
+ * // ConfigurationPolicyAssociations: [ // ConfigurationPolicyAssociationList
52
+ * // { // ConfigurationPolicyAssociationSummary
53
+ * // ConfigurationPolicyId: "STRING_VALUE",
54
+ * // TargetId: "STRING_VALUE",
55
+ * // TargetType: "ACCOUNT" || "ORGANIZATIONAL_UNIT",
56
+ * // AssociationType: "INHERITED" || "APPLIED",
57
+ * // UpdatedAt: new Date("TIMESTAMP"),
58
+ * // AssociationStatus: "PENDING" || "SUCCESS" || "FAILED",
59
+ * // AssociationStatusMessage: "STRING_VALUE",
60
+ * // },
61
+ * // ],
62
+ * // UnprocessedConfigurationPolicyAssociations: [ // UnprocessedConfigurationPolicyAssociationList
63
+ * // { // UnprocessedConfigurationPolicyAssociation
64
+ * // ConfigurationPolicyAssociationIdentifiers: { // ConfigurationPolicyAssociation
65
+ * // Target: { // Target Union: only one key present
66
+ * // AccountId: "STRING_VALUE",
67
+ * // OrganizationalUnitId: "STRING_VALUE",
68
+ * // RootId: "STRING_VALUE",
69
+ * // },
70
+ * // },
71
+ * // ErrorCode: "STRING_VALUE",
72
+ * // ErrorReason: "STRING_VALUE",
73
+ * // },
74
+ * // ],
75
+ * // };
76
+ *
77
+ * ```
78
+ *
79
+ * @param BatchGetConfigurationPolicyAssociationsCommandInput - {@link BatchGetConfigurationPolicyAssociationsCommandInput}
80
+ * @returns {@link BatchGetConfigurationPolicyAssociationsCommandOutput}
81
+ * @see {@link BatchGetConfigurationPolicyAssociationsCommandInput} for command's `input` shape.
82
+ * @see {@link BatchGetConfigurationPolicyAssociationsCommandOutput} for command's `response` shape.
83
+ * @see {@link SecurityHubClientResolvedConfig | config} for SecurityHubClient's `config` shape.
84
+ *
85
+ * @throws {@link AccessDeniedException} (client fault)
86
+ * <p>You don't have permission to perform the action specified in the request.</p>
87
+ *
88
+ * @throws {@link InternalException} (server fault)
89
+ * <p>Internal server error.</p>
90
+ *
91
+ * @throws {@link InvalidAccessException} (client fault)
92
+ * <p>The account doesn't have permission to perform this action.</p>
93
+ *
94
+ * @throws {@link InvalidInputException} (client fault)
95
+ * <p>The request was rejected because you supplied an invalid or out-of-range value for an
96
+ * input parameter.</p>
97
+ *
98
+ * @throws {@link LimitExceededException} (client fault)
99
+ * <p>The request was rejected because it attempted to create resources beyond the current Amazon Web Services
100
+ * account or throttling limits. The error code describes the limit exceeded.</p>
101
+ *
102
+ * @throws {@link ResourceNotFoundException} (client fault)
103
+ * <p>The request was rejected because we can't find the specified resource.</p>
104
+ *
105
+ * @throws {@link SecurityHubServiceException}
106
+ * <p>Base exception class for all service exceptions from SecurityHub service.</p>
107
+ *
108
+ */
109
+ export declare class BatchGetConfigurationPolicyAssociationsCommand extends $Command<BatchGetConfigurationPolicyAssociationsCommandInput, BatchGetConfigurationPolicyAssociationsCommandOutput, SecurityHubClientResolvedConfig> {
110
+ readonly input: BatchGetConfigurationPolicyAssociationsCommandInput;
111
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
112
+ /**
113
+ * @public
114
+ */
115
+ constructor(input: BatchGetConfigurationPolicyAssociationsCommandInput);
116
+ /**
117
+ * @internal
118
+ */
119
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityHubClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetConfigurationPolicyAssociationsCommandInput, BatchGetConfigurationPolicyAssociationsCommandOutput>;
120
+ /**
121
+ * @internal
122
+ */
123
+ private serialize;
124
+ /**
125
+ * @internal
126
+ */
127
+ private deserialize;
128
+ }
@@ -49,6 +49,29 @@ export interface BatchGetSecurityControlsCommandOutput extends BatchGetSecurityC
49
49
  * // RemediationUrl: "STRING_VALUE", // required
50
50
  * // SeverityRating: "LOW" || "MEDIUM" || "HIGH" || "CRITICAL", // required
51
51
  * // SecurityControlStatus: "ENABLED" || "DISABLED", // required
52
+ * // UpdateStatus: "READY" || "UPDATING",
53
+ * // Parameters: { // Parameters
54
+ * // "<keys>": { // ParameterConfiguration
55
+ * // ValueType: "DEFAULT" || "CUSTOM", // required
56
+ * // Value: { // ParameterValue Union: only one key present
57
+ * // Integer: Number("int"),
58
+ * // IntegerList: [ // IntegerList
59
+ * // Number("int"),
60
+ * // ],
61
+ * // Double: Number("double"),
62
+ * // String: "STRING_VALUE",
63
+ * // StringList: [ // StringList
64
+ * // "STRING_VALUE",
65
+ * // ],
66
+ * // Boolean: true || false,
67
+ * // Enum: "STRING_VALUE",
68
+ * // EnumList: [
69
+ * // "STRING_VALUE",
70
+ * // ],
71
+ * // },
72
+ * // },
73
+ * // },
74
+ * // LastUpdateReason: "STRING_VALUE",
52
75
  * // },
53
76
  * // ],
54
77
  * // UnprocessedIds: [ // UnprocessedSecurityControls
@@ -101,21 +124,41 @@ export interface BatchGetSecurityControlsCommandOutput extends BatchGetSecurityC
101
124
  * "SecurityControls": [
102
125
  * {
103
126
  * "Description": "This AWS control checks whether ACM Certificates in your account are marked for expiration within a specified time period. Certificates provided by ACM are automatically renewed. ACM does not automatically renew certificates that you import.",
127
+ * "LastUpdateReason": "Stayed with default value",
128
+ * "Parameters": {
129
+ * "daysToExpiration": {
130
+ * "Value": {
131
+ * "Integer": 30
132
+ * },
133
+ * "ValueType": "DEFAULT"
134
+ * }
135
+ * },
104
136
  * "RemediationUrl": "https://docs.aws.amazon.com/console/securityhub/ACM.1/remediation",
105
137
  * "SecurityControlArn": "arn:aws:securityhub:us-west-2:123456789012:security-control/ACM.1",
106
138
  * "SecurityControlId": "ACM.1",
107
139
  * "SecurityControlStatus": "ENABLED",
108
140
  * "SeverityRating": "MEDIUM",
109
- * "Title": "Imported and ACM-issued certificates should be renewed after a specified time period"
141
+ * "Title": "Imported and ACM-issued certificates should be renewed after a specified time period",
142
+ * "UpdateStatus": "UPDATING"
110
143
  * },
111
144
  * {
112
145
  * "Description": "This control checks whether all stages of Amazon API Gateway REST and WebSocket APIs have logging enabled. The control fails if logging is not enabled for all methods of a stage or if loggingLevel is neither ERROR nor INFO.",
146
+ * "LastUpdateReason": "Updated control parameters to comply with internal requirements",
147
+ * "Parameters": {
148
+ * "loggingLevel": {
149
+ * "Value": {
150
+ * "Enum": "ERROR"
151
+ * },
152
+ * "ValueType": "CUSTOM"
153
+ * }
154
+ * },
113
155
  * "RemediationUrl": "https://docs.aws.amazon.com/console/securityhub/APIGateway.1/remediation",
114
156
  * "SecurityControlArn": "arn:aws:securityhub:us-west-2:123456789012:security-control/APIGateway.1",
115
157
  * "SecurityControlId": "APIGateway.1",
116
158
  * "SecurityControlStatus": "ENABLED",
117
159
  * "SeverityRating": "MEDIUM",
118
- * "Title": "API Gateway REST and WebSocket API execution logging should be enabled"
160
+ * "Title": "API Gateway REST and WebSocket API execution logging should be enabled",
161
+ * "UpdateStatus": "UPDATING"
119
162
  * }
120
163
  * ]
121
164
  * }
@@ -3972,6 +3972,8 @@ export interface BatchImportFindingsCommandOutput extends BatchImportFindingsRes
3972
3972
  * },
3973
3973
  * },
3974
3974
  * },
3975
+ * ApplicationName: "STRING_VALUE",
3976
+ * ApplicationArn: "STRING_VALUE",
3975
3977
  * },
3976
3978
  * ],
3977
3979
  * Compliance: { // Compliance
@@ -3991,6 +3993,14 @@ export interface BatchImportFindingsCommandOutput extends BatchImportFindingsRes
3991
3993
  * StandardsId: "STRING_VALUE",
3992
3994
  * },
3993
3995
  * ],
3996
+ * SecurityControlParameters: [ // SecurityControlParametersList
3997
+ * { // SecurityControlParameter
3998
+ * Name: "STRING_VALUE",
3999
+ * Value: [
4000
+ * "STRING_VALUE",
4001
+ * ],
4002
+ * },
4003
+ * ],
3994
4004
  * },
3995
4005
  * VerificationState: "UNKNOWN" || "TRUE_POSITIVE" || "FALSE_POSITIVE" || "BENIGN_POSITIVE",
3996
4006
  * WorkflowState: "NEW" || "ASSIGNED" || "IN_PROGRESS" || "DEFERRED" || "RESOLVED",
@@ -4055,9 +4065,7 @@ export interface BatchImportFindingsCommandOutput extends BatchImportFindingsRes
4055
4065
  * ExploitAvailable: "YES" || "NO",
4056
4066
  * CodeVulnerabilities: [ // VulnerabilityCodeVulnerabilitiesList
4057
4067
  * { // VulnerabilityCodeVulnerabilities
4058
- * Cwes: [
4059
- * "STRING_VALUE",
4060
- * ],
4068
+ * Cwes: "<TypeList>",
4061
4069
  * FilePath: { // CodeVulnerabilitiesFilePath
4062
4070
  * EndLine: Number("int"),
4063
4071
  * FileName: "STRING_VALUE",
@@ -4209,6 +4217,8 @@ export interface BatchImportFindingsCommandOutput extends BatchImportFindingsRes
4209
4217
  * Description: "STRING_VALUE",
4210
4218
  * Labels: "<TypeList>",
4211
4219
  * },
4220
+ * ProcessedAt: "STRING_VALUE",
4221
+ * AwsAccountName: "STRING_VALUE",
4212
4222
  * },
4213
4223
  * ],
4214
4224
  * };
@@ -117,6 +117,8 @@ export interface BatchUpdateAutomationRulesCommandOutput extends BatchUpdateAuto
117
117
  * { // NumberFilter
118
118
  * Gte: Number("double"),
119
119
  * Lte: Number("double"),
120
+ * Gt: Number("double"),
121
+ * Lt: Number("double"),
120
122
  * Eq: Number("double"),
121
123
  * },
122
124
  * ],
@@ -124,6 +126,8 @@ export interface BatchUpdateAutomationRulesCommandOutput extends BatchUpdateAuto
124
126
  * {
125
127
  * Gte: Number("double"),
126
128
  * Lte: Number("double"),
129
+ * Gt: Number("double"),
130
+ * Lt: Number("double"),
127
131
  * Eq: Number("double"),
128
132
  * },
129
133
  * ],
@@ -178,6 +182,9 @@ export interface BatchUpdateAutomationRulesCommandOutput extends BatchUpdateAuto
178
182
  * Comparison: "EQUALS" || "NOT_EQUALS" || "CONTAINS" || "NOT_CONTAINS",
179
183
  * },
180
184
  * ],
185
+ * ResourceApplicationArn: "<StringFilterList>",
186
+ * ResourceApplicationName: "<StringFilterList>",
187
+ * AwsAccountName: "<StringFilterList>",
181
188
  * },
182
189
  * Actions: [ // ActionList
183
190
  * { // AutomationRulesAction