@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
@@ -67,6 +67,9 @@ export interface BatchUpdateStandardsControlAssociationsCommandOutput extends Ba
67
67
  * @see {@link BatchUpdateStandardsControlAssociationsCommandOutput} for command's `response` shape.
68
68
  * @see {@link SecurityHubClientResolvedConfig | config} for SecurityHubClient's `config` shape.
69
69
  *
70
+ * @throws {@link AccessDeniedException} (client fault)
71
+ * <p>You don't have permission to perform the action specified in the request.</p>
72
+ *
70
73
  * @throws {@link InternalException} (server fault)
71
74
  * <p>Internal server error.</p>
72
75
  *
@@ -116,6 +116,8 @@ export interface CreateAutomationRuleCommandOutput extends CreateAutomationRuleR
116
116
  * { // NumberFilter
117
117
  * Gte: Number("double"),
118
118
  * Lte: Number("double"),
119
+ * Gt: Number("double"),
120
+ * Lt: Number("double"),
119
121
  * Eq: Number("double"),
120
122
  * },
121
123
  * ],
@@ -123,6 +125,8 @@ export interface CreateAutomationRuleCommandOutput extends CreateAutomationRuleR
123
125
  * {
124
126
  * Gte: Number("double"),
125
127
  * Lte: Number("double"),
128
+ * Gt: Number("double"),
129
+ * Lt: Number("double"),
126
130
  * Eq: Number("double"),
127
131
  * },
128
132
  * ],
@@ -177,6 +181,9 @@ export interface CreateAutomationRuleCommandOutput extends CreateAutomationRuleR
177
181
  * Comparison: "EQUALS" || "NOT_EQUALS" || "CONTAINS" || "NOT_CONTAINS",
178
182
  * },
179
183
  * ],
184
+ * ResourceApplicationArn: "<StringFilterList>",
185
+ * ResourceApplicationName: "<StringFilterList>",
186
+ * AwsAccountName: "<StringFilterList>",
180
187
  * },
181
188
  * Actions: [ // ActionList // required
182
189
  * { // AutomationRulesAction
@@ -0,0 +1,189 @@
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 { CreateConfigurationPolicyRequest, CreateConfigurationPolicyResponse } 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 CreateConfigurationPolicyCommand}.
14
+ */
15
+ export interface CreateConfigurationPolicyCommandInput extends CreateConfigurationPolicyRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateConfigurationPolicyCommand}.
21
+ */
22
+ export interface CreateConfigurationPolicyCommandOutput extends CreateConfigurationPolicyResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>
27
+ * Creates a configuration policy with the defined configuration. Only the Security Hub delegated administrator
28
+ * can invoke this operation from the home Region.
29
+ * </p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { SecurityHubClient, CreateConfigurationPolicyCommand } from "@aws-sdk/client-securityhub"; // ES Modules import
34
+ * // const { SecurityHubClient, CreateConfigurationPolicyCommand } = require("@aws-sdk/client-securityhub"); // CommonJS import
35
+ * const client = new SecurityHubClient(config);
36
+ * const input = { // CreateConfigurationPolicyRequest
37
+ * Name: "STRING_VALUE", // required
38
+ * Description: "STRING_VALUE",
39
+ * ConfigurationPolicy: { // Policy Union: only one key present
40
+ * SecurityHub: { // SecurityHubPolicy
41
+ * ServiceEnabled: true || false,
42
+ * EnabledStandardIdentifiers: [ // EnabledStandardIdentifierList
43
+ * "STRING_VALUE",
44
+ * ],
45
+ * SecurityControlsConfiguration: { // SecurityControlsConfiguration
46
+ * EnabledSecurityControlIdentifiers: [ // EnabledSecurityControlIdentifierList
47
+ * "STRING_VALUE",
48
+ * ],
49
+ * DisabledSecurityControlIdentifiers: [ // DisabledSecurityControlIdentifierList
50
+ * "STRING_VALUE",
51
+ * ],
52
+ * SecurityControlCustomParameters: [ // SecurityControlCustomParametersList
53
+ * { // SecurityControlCustomParameter
54
+ * SecurityControlId: "STRING_VALUE",
55
+ * Parameters: { // Parameters
56
+ * "<keys>": { // ParameterConfiguration
57
+ * ValueType: "DEFAULT" || "CUSTOM", // required
58
+ * Value: { // ParameterValue Union: only one key present
59
+ * Integer: Number("int"),
60
+ * IntegerList: [ // IntegerList
61
+ * Number("int"),
62
+ * ],
63
+ * Double: Number("double"),
64
+ * String: "STRING_VALUE",
65
+ * StringList: [ // StringList
66
+ * "STRING_VALUE",
67
+ * ],
68
+ * Boolean: true || false,
69
+ * Enum: "STRING_VALUE",
70
+ * EnumList: [
71
+ * "STRING_VALUE",
72
+ * ],
73
+ * },
74
+ * },
75
+ * },
76
+ * },
77
+ * ],
78
+ * },
79
+ * },
80
+ * },
81
+ * Tags: { // TagMap
82
+ * "<keys>": "STRING_VALUE",
83
+ * },
84
+ * };
85
+ * const command = new CreateConfigurationPolicyCommand(input);
86
+ * const response = await client.send(command);
87
+ * // { // CreateConfigurationPolicyResponse
88
+ * // Arn: "STRING_VALUE",
89
+ * // Id: "STRING_VALUE",
90
+ * // Name: "STRING_VALUE",
91
+ * // Description: "STRING_VALUE",
92
+ * // UpdatedAt: new Date("TIMESTAMP"),
93
+ * // CreatedAt: new Date("TIMESTAMP"),
94
+ * // ConfigurationPolicy: { // Policy Union: only one key present
95
+ * // SecurityHub: { // SecurityHubPolicy
96
+ * // ServiceEnabled: true || false,
97
+ * // EnabledStandardIdentifiers: [ // EnabledStandardIdentifierList
98
+ * // "STRING_VALUE",
99
+ * // ],
100
+ * // SecurityControlsConfiguration: { // SecurityControlsConfiguration
101
+ * // EnabledSecurityControlIdentifiers: [ // EnabledSecurityControlIdentifierList
102
+ * // "STRING_VALUE",
103
+ * // ],
104
+ * // DisabledSecurityControlIdentifiers: [ // DisabledSecurityControlIdentifierList
105
+ * // "STRING_VALUE",
106
+ * // ],
107
+ * // SecurityControlCustomParameters: [ // SecurityControlCustomParametersList
108
+ * // { // SecurityControlCustomParameter
109
+ * // SecurityControlId: "STRING_VALUE",
110
+ * // Parameters: { // Parameters
111
+ * // "<keys>": { // ParameterConfiguration
112
+ * // ValueType: "DEFAULT" || "CUSTOM", // required
113
+ * // Value: { // ParameterValue Union: only one key present
114
+ * // Integer: Number("int"),
115
+ * // IntegerList: [ // IntegerList
116
+ * // Number("int"),
117
+ * // ],
118
+ * // Double: Number("double"),
119
+ * // String: "STRING_VALUE",
120
+ * // StringList: [ // StringList
121
+ * // "STRING_VALUE",
122
+ * // ],
123
+ * // Boolean: true || false,
124
+ * // Enum: "STRING_VALUE",
125
+ * // EnumList: [
126
+ * // "STRING_VALUE",
127
+ * // ],
128
+ * // },
129
+ * // },
130
+ * // },
131
+ * // },
132
+ * // ],
133
+ * // },
134
+ * // },
135
+ * // },
136
+ * // };
137
+ *
138
+ * ```
139
+ *
140
+ * @param CreateConfigurationPolicyCommandInput - {@link CreateConfigurationPolicyCommandInput}
141
+ * @returns {@link CreateConfigurationPolicyCommandOutput}
142
+ * @see {@link CreateConfigurationPolicyCommandInput} for command's `input` shape.
143
+ * @see {@link CreateConfigurationPolicyCommandOutput} for command's `response` shape.
144
+ * @see {@link SecurityHubClientResolvedConfig | config} for SecurityHubClient's `config` shape.
145
+ *
146
+ * @throws {@link AccessDeniedException} (client fault)
147
+ * <p>You don't have permission to perform the action specified in the request.</p>
148
+ *
149
+ * @throws {@link InternalException} (server fault)
150
+ * <p>Internal server error.</p>
151
+ *
152
+ * @throws {@link InvalidAccessException} (client fault)
153
+ * <p>The account doesn't have permission to perform this action.</p>
154
+ *
155
+ * @throws {@link InvalidInputException} (client fault)
156
+ * <p>The request was rejected because you supplied an invalid or out-of-range value for an
157
+ * input parameter.</p>
158
+ *
159
+ * @throws {@link LimitExceededException} (client fault)
160
+ * <p>The request was rejected because it attempted to create resources beyond the current Amazon Web Services
161
+ * account or throttling limits. The error code describes the limit exceeded.</p>
162
+ *
163
+ * @throws {@link ResourceConflictException} (client fault)
164
+ * <p>The resource specified in the request conflicts with an existing resource.</p>
165
+ *
166
+ * @throws {@link SecurityHubServiceException}
167
+ * <p>Base exception class for all service exceptions from SecurityHub service.</p>
168
+ *
169
+ */
170
+ export declare class CreateConfigurationPolicyCommand extends $Command<CreateConfigurationPolicyCommandInput, CreateConfigurationPolicyCommandOutput, SecurityHubClientResolvedConfig> {
171
+ readonly input: CreateConfigurationPolicyCommandInput;
172
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
173
+ /**
174
+ * @public
175
+ */
176
+ constructor(input: CreateConfigurationPolicyCommandInput);
177
+ /**
178
+ * @internal
179
+ */
180
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityHubClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateConfigurationPolicyCommandInput, CreateConfigurationPolicyCommandOutput>;
181
+ /**
182
+ * @internal
183
+ */
184
+ private serialize;
185
+ /**
186
+ * @internal
187
+ */
188
+ private deserialize;
189
+ }
@@ -111,6 +111,8 @@ export interface CreateInsightCommandOutput extends CreateInsightResponse, __Met
111
111
  * { // NumberFilter
112
112
  * Gte: Number("double"),
113
113
  * Lte: Number("double"),
114
+ * Gt: Number("double"),
115
+ * Lt: Number("double"),
114
116
  * Eq: Number("double"),
115
117
  * },
116
118
  * ],
@@ -118,6 +120,8 @@ export interface CreateInsightCommandOutput extends CreateInsightResponse, __Met
118
120
  * {
119
121
  * Gte: Number("double"),
120
122
  * Lte: Number("double"),
123
+ * Gt: Number("double"),
124
+ * Lt: Number("double"),
121
125
  * Eq: Number("double"),
122
126
  * },
123
127
  * ],
@@ -126,6 +130,8 @@ export interface CreateInsightCommandOutput extends CreateInsightResponse, __Met
126
130
  * {
127
131
  * Gte: Number("double"),
128
132
  * Lte: Number("double"),
133
+ * Gt: Number("double"),
134
+ * Lt: Number("double"),
129
135
  * Eq: Number("double"),
130
136
  * },
131
137
  * ],
@@ -133,6 +139,8 @@ export interface CreateInsightCommandOutput extends CreateInsightResponse, __Met
133
139
  * {
134
140
  * Gte: Number("double"),
135
141
  * Lte: Number("double"),
142
+ * Gt: Number("double"),
143
+ * Lt: Number("double"),
136
144
  * Eq: Number("double"),
137
145
  * },
138
146
  * ],
@@ -176,6 +184,8 @@ export interface CreateInsightCommandOutput extends CreateInsightResponse, __Met
176
184
  * {
177
185
  * Gte: Number("double"),
178
186
  * Lte: Number("double"),
187
+ * Gt: Number("double"),
188
+ * Lt: Number("double"),
179
189
  * Eq: Number("double"),
180
190
  * },
181
191
  * ],
@@ -285,6 +295,13 @@ export interface CreateInsightCommandOutput extends CreateInsightResponse, __Met
285
295
  * ],
286
296
  * ComplianceSecurityControlId: "<StringFilterList>",
287
297
  * ComplianceAssociatedStandardsId: "<StringFilterList>",
298
+ * VulnerabilitiesExploitAvailable: "<StringFilterList>",
299
+ * VulnerabilitiesFixAvailable: "<StringFilterList>",
300
+ * ComplianceSecurityControlParametersName: "<StringFilterList>",
301
+ * ComplianceSecurityControlParametersValue: "<StringFilterList>",
302
+ * AwsAccountName: "<StringFilterList>",
303
+ * ResourceApplicationName: "<StringFilterList>",
304
+ * ResourceApplicationArn: "<StringFilterList>",
288
305
  * },
289
306
  * GroupByAttribute: "STRING_VALUE", // required
290
307
  * };
@@ -91,6 +91,9 @@ export interface CreateMembersCommandOutput extends CreateMembersResponse, __Met
91
91
  * @see {@link CreateMembersCommandOutput} for command's `response` shape.
92
92
  * @see {@link SecurityHubClientResolvedConfig | config} for SecurityHubClient's `config` shape.
93
93
  *
94
+ * @throws {@link AccessDeniedException} (client fault)
95
+ * <p>You don't have permission to perform the action specified in the request.</p>
96
+ *
94
97
  * @throws {@link InternalException} (server fault)
95
98
  * <p>Internal server error.</p>
96
99
  *
@@ -0,0 +1,98 @@
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 { DeleteConfigurationPolicyRequest, DeleteConfigurationPolicyResponse } 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 DeleteConfigurationPolicyCommand}.
14
+ */
15
+ export interface DeleteConfigurationPolicyCommandInput extends DeleteConfigurationPolicyRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteConfigurationPolicyCommand}.
21
+ */
22
+ export interface DeleteConfigurationPolicyCommandOutput extends DeleteConfigurationPolicyResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>
27
+ * Deletes a configuration policy. Only the Security Hub delegated administrator can invoke this operation
28
+ * from the home Region. For the deletion to succeed, you must first disassociate a configuration policy from target accounts,
29
+ * organizational units, or the root by invoking the <code>StartConfigurationPolicyDisassociation</code> operation.
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, DeleteConfigurationPolicyCommand } from "@aws-sdk/client-securityhub"; // ES Modules import
35
+ * // const { SecurityHubClient, DeleteConfigurationPolicyCommand } = require("@aws-sdk/client-securityhub"); // CommonJS import
36
+ * const client = new SecurityHubClient(config);
37
+ * const input = { // DeleteConfigurationPolicyRequest
38
+ * Identifier: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new DeleteConfigurationPolicyCommand(input);
41
+ * const response = await client.send(command);
42
+ * // {};
43
+ *
44
+ * ```
45
+ *
46
+ * @param DeleteConfigurationPolicyCommandInput - {@link DeleteConfigurationPolicyCommandInput}
47
+ * @returns {@link DeleteConfigurationPolicyCommandOutput}
48
+ * @see {@link DeleteConfigurationPolicyCommandInput} for command's `input` shape.
49
+ * @see {@link DeleteConfigurationPolicyCommandOutput} for command's `response` shape.
50
+ * @see {@link SecurityHubClientResolvedConfig | config} for SecurityHubClient's `config` shape.
51
+ *
52
+ * @throws {@link AccessDeniedException} (client fault)
53
+ * <p>You don't have permission to perform the action specified in the request.</p>
54
+ *
55
+ * @throws {@link InternalException} (server fault)
56
+ * <p>Internal server error.</p>
57
+ *
58
+ * @throws {@link InvalidAccessException} (client fault)
59
+ * <p>The account doesn't have permission to perform this action.</p>
60
+ *
61
+ * @throws {@link InvalidInputException} (client fault)
62
+ * <p>The request was rejected because you supplied an invalid or out-of-range value for an
63
+ * input parameter.</p>
64
+ *
65
+ * @throws {@link LimitExceededException} (client fault)
66
+ * <p>The request was rejected because it attempted to create resources beyond the current Amazon Web Services
67
+ * account or throttling limits. The error code describes the limit exceeded.</p>
68
+ *
69
+ * @throws {@link ResourceConflictException} (client fault)
70
+ * <p>The resource specified in the request conflicts with an existing resource.</p>
71
+ *
72
+ * @throws {@link ResourceNotFoundException} (client fault)
73
+ * <p>The request was rejected because we can't find the specified resource.</p>
74
+ *
75
+ * @throws {@link SecurityHubServiceException}
76
+ * <p>Base exception class for all service exceptions from SecurityHub service.</p>
77
+ *
78
+ */
79
+ export declare class DeleteConfigurationPolicyCommand extends $Command<DeleteConfigurationPolicyCommandInput, DeleteConfigurationPolicyCommandOutput, SecurityHubClientResolvedConfig> {
80
+ readonly input: DeleteConfigurationPolicyCommandInput;
81
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
82
+ /**
83
+ * @public
84
+ */
85
+ constructor(input: DeleteConfigurationPolicyCommandInput);
86
+ /**
87
+ * @internal
88
+ */
89
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityHubClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteConfigurationPolicyCommandInput, DeleteConfigurationPolicyCommandOutput>;
90
+ /**
91
+ * @internal
92
+ */
93
+ private serialize;
94
+ /**
95
+ * @internal
96
+ */
97
+ private deserialize;
98
+ }
@@ -23,8 +23,8 @@ export interface DescribeOrganizationConfigurationCommandOutput extends Describe
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p>Returns information about the Organizations configuration for Security Hub. Can only be
27
- * called from a Security Hub administrator account.</p>
26
+ * <p>Returns information about the way your organization is configured in Security Hub. Only the
27
+ * Security Hub administrator account can invoke this operation.</p>
28
28
  * @example
29
29
  * Use a bare-bones client and the command you need to make an API call.
30
30
  * ```javascript
@@ -38,6 +38,11 @@ export interface DescribeOrganizationConfigurationCommandOutput extends Describe
38
38
  * // AutoEnable: true || false,
39
39
  * // MemberAccountLimitReached: true || false,
40
40
  * // AutoEnableStandards: "NONE" || "DEFAULT",
41
+ * // OrganizationConfiguration: { // OrganizationConfiguration
42
+ * // ConfigurationType: "CENTRAL" || "LOCAL",
43
+ * // Status: "PENDING" || "ENABLED" || "FAILED",
44
+ * // StatusMessage: "STRING_VALUE",
45
+ * // },
41
46
  * // };
42
47
  *
43
48
  * ```
@@ -46,6 +46,9 @@ export interface DisableOrganizationAdminAccountCommandOutput extends DisableOrg
46
46
  * @see {@link DisableOrganizationAdminAccountCommandOutput} for command's `response` shape.
47
47
  * @see {@link SecurityHubClientResolvedConfig | config} for SecurityHubClient's `config` shape.
48
48
  *
49
+ * @throws {@link AccessDeniedException} (client fault)
50
+ * <p>You don't have permission to perform the action specified in the request.</p>
51
+ *
49
52
  * @throws {@link InternalException} (server fault)
50
53
  * <p>Internal server error.</p>
51
54
  *
@@ -50,6 +50,9 @@ export interface DisableSecurityHubCommandOutput extends DisableSecurityHubRespo
50
50
  * @see {@link DisableSecurityHubCommandOutput} for command's `response` shape.
51
51
  * @see {@link SecurityHubClientResolvedConfig | config} for SecurityHubClient's `config` shape.
52
52
  *
53
+ * @throws {@link AccessDeniedException} (client fault)
54
+ * <p>You don't have permission to perform the action specified in the request.</p>
55
+ *
53
56
  * @throws {@link InternalException} (server fault)
54
57
  * <p>Internal server error.</p>
55
58
  *
@@ -49,6 +49,9 @@ export interface DisassociateMembersCommandOutput extends DisassociateMembersRes
49
49
  * @see {@link DisassociateMembersCommandOutput} for command's `response` shape.
50
50
  * @see {@link SecurityHubClientResolvedConfig | config} for SecurityHubClient's `config` shape.
51
51
  *
52
+ * @throws {@link AccessDeniedException} (client fault)
53
+ * <p>You don't have permission to perform the action specified in the request.</p>
54
+ *
52
55
  * @throws {@link InternalException} (server fault)
53
56
  * <p>Internal server error.</p>
54
57
  *
@@ -46,6 +46,9 @@ export interface EnableOrganizationAdminAccountCommandOutput extends EnableOrgan
46
46
  * @see {@link EnableOrganizationAdminAccountCommandOutput} for command's `response` shape.
47
47
  * @see {@link SecurityHubClientResolvedConfig | config} for SecurityHubClient's `config` shape.
48
48
  *
49
+ * @throws {@link AccessDeniedException} (client fault)
50
+ * <p>You don't have permission to perform the action specified in the request.</p>
51
+ *
49
52
  * @throws {@link InternalException} (server fault)
50
53
  * <p>Internal server error.</p>
51
54
  *
@@ -0,0 +1,107 @@
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 { GetConfigurationPolicyAssociationRequest, GetConfigurationPolicyAssociationResponse } 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 GetConfigurationPolicyAssociationCommand}.
14
+ */
15
+ export interface GetConfigurationPolicyAssociationCommandInput extends GetConfigurationPolicyAssociationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetConfigurationPolicyAssociationCommand}.
21
+ */
22
+ export interface GetConfigurationPolicyAssociationCommandOutput extends GetConfigurationPolicyAssociationResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>
27
+ * Returns the association between a configuration and a target account, organizational unit, or the root. The
28
+ * configuration can be a configuration policy or self-managed behavior. Only the Security Hub delegated administrator can
29
+ * invoke this operation from the home Region.
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, GetConfigurationPolicyAssociationCommand } from "@aws-sdk/client-securityhub"; // ES Modules import
35
+ * // const { SecurityHubClient, GetConfigurationPolicyAssociationCommand } = require("@aws-sdk/client-securityhub"); // CommonJS import
36
+ * const client = new SecurityHubClient(config);
37
+ * const input = { // GetConfigurationPolicyAssociationRequest
38
+ * Target: { // Target Union: only one key present
39
+ * AccountId: "STRING_VALUE",
40
+ * OrganizationalUnitId: "STRING_VALUE",
41
+ * RootId: "STRING_VALUE",
42
+ * },
43
+ * };
44
+ * const command = new GetConfigurationPolicyAssociationCommand(input);
45
+ * const response = await client.send(command);
46
+ * // { // GetConfigurationPolicyAssociationResponse
47
+ * // ConfigurationPolicyId: "STRING_VALUE",
48
+ * // TargetId: "STRING_VALUE",
49
+ * // TargetType: "ACCOUNT" || "ORGANIZATIONAL_UNIT",
50
+ * // AssociationType: "INHERITED" || "APPLIED",
51
+ * // UpdatedAt: new Date("TIMESTAMP"),
52
+ * // AssociationStatus: "PENDING" || "SUCCESS" || "FAILED",
53
+ * // AssociationStatusMessage: "STRING_VALUE",
54
+ * // };
55
+ *
56
+ * ```
57
+ *
58
+ * @param GetConfigurationPolicyAssociationCommandInput - {@link GetConfigurationPolicyAssociationCommandInput}
59
+ * @returns {@link GetConfigurationPolicyAssociationCommandOutput}
60
+ * @see {@link GetConfigurationPolicyAssociationCommandInput} for command's `input` shape.
61
+ * @see {@link GetConfigurationPolicyAssociationCommandOutput} for command's `response` shape.
62
+ * @see {@link SecurityHubClientResolvedConfig | config} for SecurityHubClient's `config` shape.
63
+ *
64
+ * @throws {@link AccessDeniedException} (client fault)
65
+ * <p>You don't have permission to perform the action specified in the request.</p>
66
+ *
67
+ * @throws {@link InternalException} (server fault)
68
+ * <p>Internal server error.</p>
69
+ *
70
+ * @throws {@link InvalidAccessException} (client fault)
71
+ * <p>The account doesn't have permission to perform this action.</p>
72
+ *
73
+ * @throws {@link InvalidInputException} (client fault)
74
+ * <p>The request was rejected because you supplied an invalid or out-of-range value for an
75
+ * input parameter.</p>
76
+ *
77
+ * @throws {@link LimitExceededException} (client fault)
78
+ * <p>The request was rejected because it attempted to create resources beyond the current Amazon Web Services
79
+ * account or throttling limits. The error code describes the limit exceeded.</p>
80
+ *
81
+ * @throws {@link ResourceNotFoundException} (client fault)
82
+ * <p>The request was rejected because we can't find the specified resource.</p>
83
+ *
84
+ * @throws {@link SecurityHubServiceException}
85
+ * <p>Base exception class for all service exceptions from SecurityHub service.</p>
86
+ *
87
+ */
88
+ export declare class GetConfigurationPolicyAssociationCommand extends $Command<GetConfigurationPolicyAssociationCommandInput, GetConfigurationPolicyAssociationCommandOutput, SecurityHubClientResolvedConfig> {
89
+ readonly input: GetConfigurationPolicyAssociationCommandInput;
90
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
91
+ /**
92
+ * @public
93
+ */
94
+ constructor(input: GetConfigurationPolicyAssociationCommandInput);
95
+ /**
96
+ * @internal
97
+ */
98
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityHubClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetConfigurationPolicyAssociationCommandInput, GetConfigurationPolicyAssociationCommandOutput>;
99
+ /**
100
+ * @internal
101
+ */
102
+ private serialize;
103
+ /**
104
+ * @internal
105
+ */
106
+ private deserialize;
107
+ }