@aws-sdk/client-securityhub 3.687.0 → 3.692.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.
- package/dist-types/models/models_0.d.ts +1293 -1293
- package/dist-types/models/models_1.d.ts +1252 -1252
- package/dist-types/models/models_2.d.ts +737 -737
- package/dist-types/ts3.4/models/models_0.d.ts +1455 -1293
- package/dist-types/ts3.4/models/models_1.d.ts +1436 -1252
- package/dist-types/ts3.4/models/models_2.d.ts +769 -737
- package/package.json +35 -35
|
@@ -135,260 +135,278 @@ import {
|
|
|
135
135
|
} from "./models_1";
|
|
136
136
|
import { SecurityHubServiceException as __BaseException } from "./SecurityHubServiceException";
|
|
137
137
|
export interface AwsWafRegionalWebAclRulesListDetails {
|
|
138
|
-
Action?: AwsWafRegionalWebAclRulesListActionDetails;
|
|
139
|
-
OverrideAction?:
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
138
|
+
Action?: AwsWafRegionalWebAclRulesListActionDetails | undefined;
|
|
139
|
+
OverrideAction?:
|
|
140
|
+
| AwsWafRegionalWebAclRulesListOverrideActionDetails
|
|
141
|
+
| undefined;
|
|
142
|
+
Priority?: number | undefined;
|
|
143
|
+
RuleId?: string | undefined;
|
|
144
|
+
Type?: string | undefined;
|
|
143
145
|
}
|
|
144
146
|
export interface AwsWafRegionalWebAclDetails {
|
|
145
|
-
DefaultAction?: string;
|
|
146
|
-
MetricName?: string;
|
|
147
|
-
Name?: string;
|
|
148
|
-
RulesList?: AwsWafRegionalWebAclRulesListDetails[];
|
|
149
|
-
WebAclId?: string;
|
|
147
|
+
DefaultAction?: string | undefined;
|
|
148
|
+
MetricName?: string | undefined;
|
|
149
|
+
Name?: string | undefined;
|
|
150
|
+
RulesList?: AwsWafRegionalWebAclRulesListDetails[] | undefined;
|
|
151
|
+
WebAclId?: string | undefined;
|
|
150
152
|
}
|
|
151
153
|
export interface AwsWafRulePredicateListDetails {
|
|
152
|
-
DataId?: string;
|
|
153
|
-
Negated?: boolean;
|
|
154
|
-
Type?: string;
|
|
154
|
+
DataId?: string | undefined;
|
|
155
|
+
Negated?: boolean | undefined;
|
|
156
|
+
Type?: string | undefined;
|
|
155
157
|
}
|
|
156
158
|
export interface AwsWafRuleDetails {
|
|
157
|
-
MetricName?: string;
|
|
158
|
-
Name?: string;
|
|
159
|
-
PredicateList?: AwsWafRulePredicateListDetails[];
|
|
160
|
-
RuleId?: string;
|
|
159
|
+
MetricName?: string | undefined;
|
|
160
|
+
Name?: string | undefined;
|
|
161
|
+
PredicateList?: AwsWafRulePredicateListDetails[] | undefined;
|
|
162
|
+
RuleId?: string | undefined;
|
|
161
163
|
}
|
|
162
164
|
export interface AwsWafRuleGroupRulesActionDetails {
|
|
163
|
-
Type?: string;
|
|
165
|
+
Type?: string | undefined;
|
|
164
166
|
}
|
|
165
167
|
export interface AwsWafRuleGroupRulesDetails {
|
|
166
|
-
Action?: AwsWafRuleGroupRulesActionDetails;
|
|
167
|
-
Priority?: number;
|
|
168
|
-
RuleId?: string;
|
|
169
|
-
Type?: string;
|
|
168
|
+
Action?: AwsWafRuleGroupRulesActionDetails | undefined;
|
|
169
|
+
Priority?: number | undefined;
|
|
170
|
+
RuleId?: string | undefined;
|
|
171
|
+
Type?: string | undefined;
|
|
170
172
|
}
|
|
171
173
|
export interface AwsWafRuleGroupDetails {
|
|
172
|
-
MetricName?: string;
|
|
173
|
-
Name?: string;
|
|
174
|
-
RuleGroupId?: string;
|
|
175
|
-
Rules?: AwsWafRuleGroupRulesDetails[];
|
|
174
|
+
MetricName?: string | undefined;
|
|
175
|
+
Name?: string | undefined;
|
|
176
|
+
RuleGroupId?: string | undefined;
|
|
177
|
+
Rules?: AwsWafRuleGroupRulesDetails[] | undefined;
|
|
176
178
|
}
|
|
177
179
|
export interface AwsWafv2CustomHttpHeader {
|
|
178
|
-
Name?: string;
|
|
179
|
-
Value?: string;
|
|
180
|
+
Name?: string | undefined;
|
|
181
|
+
Value?: string | undefined;
|
|
180
182
|
}
|
|
181
183
|
export interface AwsWafv2CustomRequestHandlingDetails {
|
|
182
|
-
InsertHeaders?: AwsWafv2CustomHttpHeader[];
|
|
184
|
+
InsertHeaders?: AwsWafv2CustomHttpHeader[] | undefined;
|
|
183
185
|
}
|
|
184
186
|
export interface AwsWafv2ActionAllowDetails {
|
|
185
|
-
CustomRequestHandling?: AwsWafv2CustomRequestHandlingDetails;
|
|
187
|
+
CustomRequestHandling?: AwsWafv2CustomRequestHandlingDetails | undefined;
|
|
186
188
|
}
|
|
187
189
|
export interface AwsWafv2CustomResponseDetails {
|
|
188
|
-
CustomResponseBodyKey?: string;
|
|
189
|
-
ResponseCode?: number;
|
|
190
|
-
ResponseHeaders?: AwsWafv2CustomHttpHeader[];
|
|
190
|
+
CustomResponseBodyKey?: string | undefined;
|
|
191
|
+
ResponseCode?: number | undefined;
|
|
192
|
+
ResponseHeaders?: AwsWafv2CustomHttpHeader[] | undefined;
|
|
191
193
|
}
|
|
192
194
|
export interface AwsWafv2ActionBlockDetails {
|
|
193
|
-
CustomResponse?: AwsWafv2CustomResponseDetails;
|
|
195
|
+
CustomResponse?: AwsWafv2CustomResponseDetails | undefined;
|
|
194
196
|
}
|
|
195
197
|
export interface AwsWafv2RulesActionCaptchaDetails {
|
|
196
|
-
CustomRequestHandling?: AwsWafv2CustomRequestHandlingDetails;
|
|
198
|
+
CustomRequestHandling?: AwsWafv2CustomRequestHandlingDetails | undefined;
|
|
197
199
|
}
|
|
198
200
|
export interface AwsWafv2RulesActionCountDetails {
|
|
199
|
-
CustomRequestHandling?: AwsWafv2CustomRequestHandlingDetails;
|
|
201
|
+
CustomRequestHandling?: AwsWafv2CustomRequestHandlingDetails | undefined;
|
|
200
202
|
}
|
|
201
203
|
export interface AwsWafv2RulesActionDetails {
|
|
202
|
-
Allow?: AwsWafv2ActionAllowDetails;
|
|
203
|
-
Block?: AwsWafv2ActionBlockDetails;
|
|
204
|
-
Captcha?: AwsWafv2RulesActionCaptchaDetails;
|
|
205
|
-
Count?: AwsWafv2RulesActionCountDetails;
|
|
204
|
+
Allow?: AwsWafv2ActionAllowDetails | undefined;
|
|
205
|
+
Block?: AwsWafv2ActionBlockDetails | undefined;
|
|
206
|
+
Captcha?: AwsWafv2RulesActionCaptchaDetails | undefined;
|
|
207
|
+
Count?: AwsWafv2RulesActionCountDetails | undefined;
|
|
206
208
|
}
|
|
207
209
|
export interface AwsWafv2VisibilityConfigDetails {
|
|
208
|
-
CloudWatchMetricsEnabled?: boolean;
|
|
209
|
-
MetricName?: string;
|
|
210
|
-
SampledRequestsEnabled?: boolean;
|
|
210
|
+
CloudWatchMetricsEnabled?: boolean | undefined;
|
|
211
|
+
MetricName?: string | undefined;
|
|
212
|
+
SampledRequestsEnabled?: boolean | undefined;
|
|
211
213
|
}
|
|
212
214
|
export interface AwsWafv2RulesDetails {
|
|
213
|
-
Action?: AwsWafv2RulesActionDetails;
|
|
214
|
-
Name?: string;
|
|
215
|
-
OverrideAction?: string;
|
|
216
|
-
Priority?: number;
|
|
217
|
-
VisibilityConfig?: AwsWafv2VisibilityConfigDetails;
|
|
215
|
+
Action?: AwsWafv2RulesActionDetails | undefined;
|
|
216
|
+
Name?: string | undefined;
|
|
217
|
+
OverrideAction?: string | undefined;
|
|
218
|
+
Priority?: number | undefined;
|
|
219
|
+
VisibilityConfig?: AwsWafv2VisibilityConfigDetails | undefined;
|
|
218
220
|
}
|
|
219
221
|
export interface AwsWafv2RuleGroupDetails {
|
|
220
|
-
Capacity?: number;
|
|
221
|
-
Description?: string;
|
|
222
|
-
Id?: string;
|
|
223
|
-
Name?: string;
|
|
224
|
-
Arn?: string;
|
|
225
|
-
Rules?: AwsWafv2RulesDetails[];
|
|
226
|
-
Scope?: string;
|
|
227
|
-
VisibilityConfig?: AwsWafv2VisibilityConfigDetails;
|
|
222
|
+
Capacity?: number | undefined;
|
|
223
|
+
Description?: string | undefined;
|
|
224
|
+
Id?: string | undefined;
|
|
225
|
+
Name?: string | undefined;
|
|
226
|
+
Arn?: string | undefined;
|
|
227
|
+
Rules?: AwsWafv2RulesDetails[] | undefined;
|
|
228
|
+
Scope?: string | undefined;
|
|
229
|
+
VisibilityConfig?: AwsWafv2VisibilityConfigDetails | undefined;
|
|
228
230
|
}
|
|
229
231
|
export interface AwsWafv2WebAclCaptchaConfigImmunityTimePropertyDetails {
|
|
230
|
-
ImmunityTime?: number;
|
|
232
|
+
ImmunityTime?: number | undefined;
|
|
231
233
|
}
|
|
232
234
|
export interface AwsWafv2WebAclCaptchaConfigDetails {
|
|
233
|
-
ImmunityTimeProperty?:
|
|
235
|
+
ImmunityTimeProperty?:
|
|
236
|
+
| AwsWafv2WebAclCaptchaConfigImmunityTimePropertyDetails
|
|
237
|
+
| undefined;
|
|
234
238
|
}
|
|
235
239
|
export interface AwsWafv2WebAclActionDetails {
|
|
236
|
-
Allow?: AwsWafv2ActionAllowDetails;
|
|
237
|
-
Block?: AwsWafv2ActionBlockDetails;
|
|
240
|
+
Allow?: AwsWafv2ActionAllowDetails | undefined;
|
|
241
|
+
Block?: AwsWafv2ActionBlockDetails | undefined;
|
|
238
242
|
}
|
|
239
243
|
export interface AwsWafv2WebAclDetails {
|
|
240
|
-
Name?: string;
|
|
241
|
-
Arn?: string;
|
|
242
|
-
ManagedbyFirewallManager?: boolean;
|
|
243
|
-
Id?: string;
|
|
244
|
-
Capacity?: number;
|
|
245
|
-
CaptchaConfig?: AwsWafv2WebAclCaptchaConfigDetails;
|
|
246
|
-
DefaultAction?: AwsWafv2WebAclActionDetails;
|
|
247
|
-
Description?: string;
|
|
248
|
-
Rules?: AwsWafv2RulesDetails[];
|
|
249
|
-
VisibilityConfig?: AwsWafv2VisibilityConfigDetails;
|
|
244
|
+
Name?: string | undefined;
|
|
245
|
+
Arn?: string | undefined;
|
|
246
|
+
ManagedbyFirewallManager?: boolean | undefined;
|
|
247
|
+
Id?: string | undefined;
|
|
248
|
+
Capacity?: number | undefined;
|
|
249
|
+
CaptchaConfig?: AwsWafv2WebAclCaptchaConfigDetails | undefined;
|
|
250
|
+
DefaultAction?: AwsWafv2WebAclActionDetails | undefined;
|
|
251
|
+
Description?: string | undefined;
|
|
252
|
+
Rules?: AwsWafv2RulesDetails[] | undefined;
|
|
253
|
+
VisibilityConfig?: AwsWafv2VisibilityConfigDetails | undefined;
|
|
250
254
|
}
|
|
251
255
|
export interface WafAction {
|
|
252
|
-
Type?: string;
|
|
256
|
+
Type?: string | undefined;
|
|
253
257
|
}
|
|
254
258
|
export interface WafExcludedRule {
|
|
255
|
-
RuleId?: string;
|
|
259
|
+
RuleId?: string | undefined;
|
|
256
260
|
}
|
|
257
261
|
export interface WafOverrideAction {
|
|
258
|
-
Type?: string;
|
|
262
|
+
Type?: string | undefined;
|
|
259
263
|
}
|
|
260
264
|
export interface AwsWafWebAclRule {
|
|
261
|
-
Action?: WafAction;
|
|
262
|
-
ExcludedRules?: WafExcludedRule[];
|
|
263
|
-
OverrideAction?: WafOverrideAction;
|
|
264
|
-
Priority?: number;
|
|
265
|
-
RuleId?: string;
|
|
266
|
-
Type?: string;
|
|
265
|
+
Action?: WafAction | undefined;
|
|
266
|
+
ExcludedRules?: WafExcludedRule[] | undefined;
|
|
267
|
+
OverrideAction?: WafOverrideAction | undefined;
|
|
268
|
+
Priority?: number | undefined;
|
|
269
|
+
RuleId?: string | undefined;
|
|
270
|
+
Type?: string | undefined;
|
|
267
271
|
}
|
|
268
272
|
export interface AwsWafWebAclDetails {
|
|
269
|
-
Name?: string;
|
|
270
|
-
DefaultAction?: string;
|
|
271
|
-
Rules?: AwsWafWebAclRule[];
|
|
272
|
-
WebAclId?: string;
|
|
273
|
+
Name?: string | undefined;
|
|
274
|
+
DefaultAction?: string | undefined;
|
|
275
|
+
Rules?: AwsWafWebAclRule[] | undefined;
|
|
276
|
+
WebAclId?: string | undefined;
|
|
273
277
|
}
|
|
274
278
|
export interface AwsXrayEncryptionConfigDetails {
|
|
275
|
-
KeyId?: string;
|
|
276
|
-
Status?: string;
|
|
277
|
-
Type?: string;
|
|
279
|
+
KeyId?: string | undefined;
|
|
280
|
+
Status?: string | undefined;
|
|
281
|
+
Type?: string | undefined;
|
|
278
282
|
}
|
|
279
283
|
export interface VolumeMount {
|
|
280
|
-
Name?: string;
|
|
281
|
-
MountPath?: string;
|
|
284
|
+
Name?: string | undefined;
|
|
285
|
+
MountPath?: string | undefined;
|
|
282
286
|
}
|
|
283
287
|
export interface ContainerDetails {
|
|
284
|
-
ContainerRuntime?: string;
|
|
285
|
-
Name?: string;
|
|
286
|
-
ImageId?: string;
|
|
287
|
-
ImageName?: string;
|
|
288
|
-
LaunchedAt?: string;
|
|
289
|
-
VolumeMounts?: VolumeMount[];
|
|
290
|
-
Privileged?: boolean;
|
|
288
|
+
ContainerRuntime?: string | undefined;
|
|
289
|
+
Name?: string | undefined;
|
|
290
|
+
ImageId?: string | undefined;
|
|
291
|
+
ImageName?: string | undefined;
|
|
292
|
+
LaunchedAt?: string | undefined;
|
|
293
|
+
VolumeMounts?: VolumeMount[] | undefined;
|
|
294
|
+
Privileged?: boolean | undefined;
|
|
291
295
|
}
|
|
292
296
|
export interface ResourceDetails {
|
|
293
|
-
AwsAutoScalingAutoScalingGroup?:
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
297
|
+
AwsAutoScalingAutoScalingGroup?:
|
|
298
|
+
| AwsAutoScalingAutoScalingGroupDetails
|
|
299
|
+
| undefined;
|
|
300
|
+
AwsCodeBuildProject?: AwsCodeBuildProjectDetails | undefined;
|
|
301
|
+
AwsCloudFrontDistribution?: AwsCloudFrontDistributionDetails | undefined;
|
|
302
|
+
AwsEc2Instance?: AwsEc2InstanceDetails | undefined;
|
|
303
|
+
AwsEc2NetworkInterface?: AwsEc2NetworkInterfaceDetails | undefined;
|
|
304
|
+
AwsEc2SecurityGroup?: AwsEc2SecurityGroupDetails | undefined;
|
|
305
|
+
AwsEc2Volume?: AwsEc2VolumeDetails | undefined;
|
|
306
|
+
AwsEc2Vpc?: AwsEc2VpcDetails | undefined;
|
|
307
|
+
AwsEc2Eip?: AwsEc2EipDetails | undefined;
|
|
308
|
+
AwsEc2Subnet?: AwsEc2SubnetDetails | undefined;
|
|
309
|
+
AwsEc2NetworkAcl?: AwsEc2NetworkAclDetails | undefined;
|
|
310
|
+
AwsElbv2LoadBalancer?: AwsElbv2LoadBalancerDetails | undefined;
|
|
311
|
+
AwsElasticBeanstalkEnvironment?:
|
|
312
|
+
| AwsElasticBeanstalkEnvironmentDetails
|
|
313
|
+
| undefined;
|
|
314
|
+
AwsElasticsearchDomain?: AwsElasticsearchDomainDetails | undefined;
|
|
315
|
+
AwsS3Bucket?: AwsS3BucketDetails | undefined;
|
|
316
|
+
AwsS3AccountPublicAccessBlock?:
|
|
317
|
+
| AwsS3AccountPublicAccessBlockDetails
|
|
318
|
+
| undefined;
|
|
319
|
+
AwsS3Object?: AwsS3ObjectDetails | undefined;
|
|
320
|
+
AwsSecretsManagerSecret?: AwsSecretsManagerSecretDetails | undefined;
|
|
321
|
+
AwsIamAccessKey?: AwsIamAccessKeyDetails | undefined;
|
|
322
|
+
AwsIamUser?: AwsIamUserDetails | undefined;
|
|
323
|
+
AwsIamPolicy?: AwsIamPolicyDetails | undefined;
|
|
324
|
+
AwsApiGatewayV2Stage?: AwsApiGatewayV2StageDetails | undefined;
|
|
325
|
+
AwsApiGatewayV2Api?: AwsApiGatewayV2ApiDetails | undefined;
|
|
326
|
+
AwsDynamoDbTable?: AwsDynamoDbTableDetails | undefined;
|
|
327
|
+
AwsApiGatewayStage?: AwsApiGatewayStageDetails | undefined;
|
|
328
|
+
AwsApiGatewayRestApi?: AwsApiGatewayRestApiDetails | undefined;
|
|
329
|
+
AwsCloudTrailTrail?: AwsCloudTrailTrailDetails | undefined;
|
|
330
|
+
AwsSsmPatchCompliance?: AwsSsmPatchComplianceDetails | undefined;
|
|
331
|
+
AwsCertificateManagerCertificate?:
|
|
332
|
+
| AwsCertificateManagerCertificateDetails
|
|
333
|
+
| undefined;
|
|
334
|
+
AwsRedshiftCluster?: AwsRedshiftClusterDetails | undefined;
|
|
335
|
+
AwsElbLoadBalancer?: AwsElbLoadBalancerDetails | undefined;
|
|
336
|
+
AwsIamGroup?: AwsIamGroupDetails | undefined;
|
|
337
|
+
AwsIamRole?: AwsIamRoleDetails | undefined;
|
|
338
|
+
AwsKmsKey?: AwsKmsKeyDetails | undefined;
|
|
339
|
+
AwsLambdaFunction?: AwsLambdaFunctionDetails | undefined;
|
|
340
|
+
AwsLambdaLayerVersion?: AwsLambdaLayerVersionDetails | undefined;
|
|
341
|
+
AwsRdsDbInstance?: AwsRdsDbInstanceDetails | undefined;
|
|
342
|
+
AwsSnsTopic?: AwsSnsTopicDetails | undefined;
|
|
343
|
+
AwsSqsQueue?: AwsSqsQueueDetails | undefined;
|
|
344
|
+
AwsWafWebAcl?: AwsWafWebAclDetails | undefined;
|
|
345
|
+
AwsRdsDbSnapshot?: AwsRdsDbSnapshotDetails | undefined;
|
|
346
|
+
AwsRdsDbClusterSnapshot?: AwsRdsDbClusterSnapshotDetails | undefined;
|
|
347
|
+
AwsRdsDbCluster?: AwsRdsDbClusterDetails | undefined;
|
|
348
|
+
AwsEcsCluster?: AwsEcsClusterDetails | undefined;
|
|
349
|
+
AwsEcsContainer?: AwsEcsContainerDetails | undefined;
|
|
350
|
+
AwsEcsTaskDefinition?: AwsEcsTaskDefinitionDetails | undefined;
|
|
351
|
+
Container?: ContainerDetails | undefined;
|
|
352
|
+
Other?: Record<string, string> | undefined;
|
|
353
|
+
AwsRdsEventSubscription?: AwsRdsEventSubscriptionDetails | undefined;
|
|
354
|
+
AwsEcsService?: AwsEcsServiceDetails | undefined;
|
|
355
|
+
AwsAutoScalingLaunchConfiguration?:
|
|
356
|
+
| AwsAutoScalingLaunchConfigurationDetails
|
|
357
|
+
| undefined;
|
|
358
|
+
AwsEc2VpnConnection?: AwsEc2VpnConnectionDetails | undefined;
|
|
359
|
+
AwsEcrContainerImage?: AwsEcrContainerImageDetails | undefined;
|
|
360
|
+
AwsOpenSearchServiceDomain?: AwsOpenSearchServiceDomainDetails | undefined;
|
|
361
|
+
AwsEc2VpcEndpointService?: AwsEc2VpcEndpointServiceDetails | undefined;
|
|
362
|
+
AwsXrayEncryptionConfig?: AwsXrayEncryptionConfigDetails | undefined;
|
|
363
|
+
AwsWafRateBasedRule?: AwsWafRateBasedRuleDetails | undefined;
|
|
364
|
+
AwsWafRegionalRateBasedRule?: AwsWafRegionalRateBasedRuleDetails | undefined;
|
|
365
|
+
AwsEcrRepository?: AwsEcrRepositoryDetails | undefined;
|
|
366
|
+
AwsEksCluster?: AwsEksClusterDetails | undefined;
|
|
367
|
+
AwsNetworkFirewallFirewallPolicy?:
|
|
368
|
+
| AwsNetworkFirewallFirewallPolicyDetails
|
|
369
|
+
| undefined;
|
|
370
|
+
AwsNetworkFirewallFirewall?: AwsNetworkFirewallFirewallDetails | undefined;
|
|
371
|
+
AwsNetworkFirewallRuleGroup?: AwsNetworkFirewallRuleGroupDetails | undefined;
|
|
372
|
+
AwsRdsDbSecurityGroup?: AwsRdsDbSecurityGroupDetails | undefined;
|
|
373
|
+
AwsKinesisStream?: AwsKinesisStreamDetails | undefined;
|
|
374
|
+
AwsEc2TransitGateway?: AwsEc2TransitGatewayDetails | undefined;
|
|
375
|
+
AwsEfsAccessPoint?: AwsEfsAccessPointDetails | undefined;
|
|
376
|
+
AwsCloudFormationStack?: AwsCloudFormationStackDetails | undefined;
|
|
377
|
+
AwsCloudWatchAlarm?: AwsCloudWatchAlarmDetails | undefined;
|
|
378
|
+
AwsEc2VpcPeeringConnection?: AwsEc2VpcPeeringConnectionDetails | undefined;
|
|
379
|
+
AwsWafRegionalRuleGroup?: AwsWafRegionalRuleGroupDetails | undefined;
|
|
380
|
+
AwsWafRegionalRule?: AwsWafRegionalRuleDetails | undefined;
|
|
381
|
+
AwsWafRegionalWebAcl?: AwsWafRegionalWebAclDetails | undefined;
|
|
382
|
+
AwsWafRule?: AwsWafRuleDetails | undefined;
|
|
383
|
+
AwsWafRuleGroup?: AwsWafRuleGroupDetails | undefined;
|
|
384
|
+
AwsEcsTask?: AwsEcsTaskDetails | undefined;
|
|
385
|
+
AwsBackupBackupVault?: AwsBackupBackupVaultDetails | undefined;
|
|
386
|
+
AwsBackupBackupPlan?: AwsBackupBackupPlanDetails | undefined;
|
|
387
|
+
AwsBackupRecoveryPoint?: AwsBackupRecoveryPointDetails | undefined;
|
|
388
|
+
AwsEc2LaunchTemplate?: AwsEc2LaunchTemplateDetails | undefined;
|
|
389
|
+
AwsSageMakerNotebookInstance?:
|
|
390
|
+
| AwsSageMakerNotebookInstanceDetails
|
|
391
|
+
| undefined;
|
|
392
|
+
AwsWafv2WebAcl?: AwsWafv2WebAclDetails | undefined;
|
|
393
|
+
AwsWafv2RuleGroup?: AwsWafv2RuleGroupDetails | undefined;
|
|
394
|
+
AwsEc2RouteTable?: AwsEc2RouteTableDetails | undefined;
|
|
395
|
+
AwsAmazonMqBroker?: AwsAmazonMqBrokerDetails | undefined;
|
|
396
|
+
AwsAppSyncGraphQlApi?: AwsAppSyncGraphQlApiDetails | undefined;
|
|
397
|
+
AwsEventSchemasRegistry?: AwsEventSchemasRegistryDetails | undefined;
|
|
398
|
+
AwsGuardDutyDetector?: AwsGuardDutyDetectorDetails | undefined;
|
|
399
|
+
AwsStepFunctionStateMachine?: AwsStepFunctionStateMachineDetails | undefined;
|
|
400
|
+
AwsAthenaWorkGroup?: AwsAthenaWorkGroupDetails | undefined;
|
|
401
|
+
AwsEventsEventbus?: AwsEventsEventbusDetails | undefined;
|
|
402
|
+
AwsDmsEndpoint?: AwsDmsEndpointDetails | undefined;
|
|
403
|
+
AwsEventsEndpoint?: AwsEventsEndpointDetails | undefined;
|
|
404
|
+
AwsDmsReplicationTask?: AwsDmsReplicationTaskDetails | undefined;
|
|
405
|
+
AwsDmsReplicationInstance?: AwsDmsReplicationInstanceDetails | undefined;
|
|
406
|
+
AwsRoute53HostedZone?: AwsRoute53HostedZoneDetails | undefined;
|
|
407
|
+
AwsMskCluster?: AwsMskClusterDetails | undefined;
|
|
408
|
+
AwsS3AccessPoint?: AwsS3AccessPointDetails | undefined;
|
|
409
|
+
AwsEc2ClientVpnEndpoint?: AwsEc2ClientVpnEndpointDetails | undefined;
|
|
392
410
|
}
|
|
393
411
|
export declare const Partition: {
|
|
394
412
|
readonly AWS: "aws";
|
|
@@ -399,20 +417,20 @@ export type Partition = (typeof Partition)[keyof typeof Partition];
|
|
|
399
417
|
export interface Resource {
|
|
400
418
|
Type: string | undefined;
|
|
401
419
|
Id: string | undefined;
|
|
402
|
-
Partition?: Partition;
|
|
403
|
-
Region?: string;
|
|
404
|
-
ResourceRole?: string;
|
|
405
|
-
Tags?: Record<string, string
|
|
406
|
-
DataClassification?: DataClassificationDetails;
|
|
407
|
-
Details?: ResourceDetails;
|
|
408
|
-
ApplicationName?: string;
|
|
409
|
-
ApplicationArn?: string;
|
|
420
|
+
Partition?: Partition | undefined;
|
|
421
|
+
Region?: string | undefined;
|
|
422
|
+
ResourceRole?: string | undefined;
|
|
423
|
+
Tags?: Record<string, string> | undefined;
|
|
424
|
+
DataClassification?: DataClassificationDetails | undefined;
|
|
425
|
+
Details?: ResourceDetails | undefined;
|
|
426
|
+
ApplicationName?: string | undefined;
|
|
427
|
+
ApplicationArn?: string | undefined;
|
|
410
428
|
}
|
|
411
429
|
export interface Severity {
|
|
412
|
-
Product?: number;
|
|
413
|
-
Label?: SeverityLabel;
|
|
414
|
-
Normalized?: number;
|
|
415
|
-
Original?: string;
|
|
430
|
+
Product?: number | undefined;
|
|
431
|
+
Label?: SeverityLabel | undefined;
|
|
432
|
+
Normalized?: number | undefined;
|
|
433
|
+
Original?: string | undefined;
|
|
416
434
|
}
|
|
417
435
|
export declare const ThreatIntelIndicatorCategory: {
|
|
418
436
|
readonly BACKDOOR: "BACKDOOR";
|
|
@@ -440,42 +458,42 @@ export declare const ThreatIntelIndicatorType: {
|
|
|
440
458
|
export type ThreatIntelIndicatorType =
|
|
441
459
|
(typeof ThreatIntelIndicatorType)[keyof typeof ThreatIntelIndicatorType];
|
|
442
460
|
export interface ThreatIntelIndicator {
|
|
443
|
-
Type?: ThreatIntelIndicatorType;
|
|
444
|
-
Value?: string;
|
|
445
|
-
Category?: ThreatIntelIndicatorCategory;
|
|
446
|
-
LastObservedAt?: string;
|
|
447
|
-
Source?: string;
|
|
448
|
-
SourceUrl?: string;
|
|
461
|
+
Type?: ThreatIntelIndicatorType | undefined;
|
|
462
|
+
Value?: string | undefined;
|
|
463
|
+
Category?: ThreatIntelIndicatorCategory | undefined;
|
|
464
|
+
LastObservedAt?: string | undefined;
|
|
465
|
+
Source?: string | undefined;
|
|
466
|
+
SourceUrl?: string | undefined;
|
|
449
467
|
}
|
|
450
468
|
export interface FilePaths {
|
|
451
|
-
FilePath?: string;
|
|
452
|
-
FileName?: string;
|
|
453
|
-
ResourceId?: string;
|
|
454
|
-
Hash?: string;
|
|
469
|
+
FilePath?: string | undefined;
|
|
470
|
+
FileName?: string | undefined;
|
|
471
|
+
ResourceId?: string | undefined;
|
|
472
|
+
Hash?: string | undefined;
|
|
455
473
|
}
|
|
456
474
|
export interface Threat {
|
|
457
|
-
Name?: string;
|
|
458
|
-
Severity?: string;
|
|
459
|
-
ItemCount?: number;
|
|
460
|
-
FilePaths?: FilePaths[];
|
|
475
|
+
Name?: string | undefined;
|
|
476
|
+
Severity?: string | undefined;
|
|
477
|
+
ItemCount?: number | undefined;
|
|
478
|
+
FilePaths?: FilePaths[] | undefined;
|
|
461
479
|
}
|
|
462
480
|
export interface CodeVulnerabilitiesFilePath {
|
|
463
|
-
EndLine?: number;
|
|
464
|
-
FileName?: string;
|
|
465
|
-
FilePath?: string;
|
|
466
|
-
StartLine?: number;
|
|
481
|
+
EndLine?: number | undefined;
|
|
482
|
+
FileName?: string | undefined;
|
|
483
|
+
FilePath?: string | undefined;
|
|
484
|
+
StartLine?: number | undefined;
|
|
467
485
|
}
|
|
468
486
|
export interface VulnerabilityCodeVulnerabilities {
|
|
469
|
-
Cwes?: string[];
|
|
470
|
-
FilePath?: CodeVulnerabilitiesFilePath;
|
|
471
|
-
SourceArn?: string;
|
|
487
|
+
Cwes?: string[] | undefined;
|
|
488
|
+
FilePath?: CodeVulnerabilitiesFilePath | undefined;
|
|
489
|
+
SourceArn?: string | undefined;
|
|
472
490
|
}
|
|
473
491
|
export interface Cvss {
|
|
474
|
-
Version?: string;
|
|
475
|
-
BaseScore?: number;
|
|
476
|
-
BaseVector?: string;
|
|
477
|
-
Source?: string;
|
|
478
|
-
Adjustments?: Adjustment[];
|
|
492
|
+
Version?: string | undefined;
|
|
493
|
+
BaseScore?: number | undefined;
|
|
494
|
+
BaseVector?: string | undefined;
|
|
495
|
+
Source?: string | undefined;
|
|
496
|
+
Adjustments?: Adjustment[] | undefined;
|
|
479
497
|
}
|
|
480
498
|
export declare const VulnerabilityExploitAvailable: {
|
|
481
499
|
readonly NO: "NO";
|
|
@@ -492,39 +510,39 @@ export type VulnerabilityFixAvailable =
|
|
|
492
510
|
(typeof VulnerabilityFixAvailable)[keyof typeof VulnerabilityFixAvailable];
|
|
493
511
|
export interface VulnerabilityVendor {
|
|
494
512
|
Name: string | undefined;
|
|
495
|
-
Url?: string;
|
|
496
|
-
VendorSeverity?: string;
|
|
497
|
-
VendorCreatedAt?: string;
|
|
498
|
-
VendorUpdatedAt?: string;
|
|
513
|
+
Url?: string | undefined;
|
|
514
|
+
VendorSeverity?: string | undefined;
|
|
515
|
+
VendorCreatedAt?: string | undefined;
|
|
516
|
+
VendorUpdatedAt?: string | undefined;
|
|
499
517
|
}
|
|
500
518
|
export interface SoftwarePackage {
|
|
501
|
-
Name?: string;
|
|
502
|
-
Version?: string;
|
|
503
|
-
Epoch?: string;
|
|
504
|
-
Release?: string;
|
|
505
|
-
Architecture?: string;
|
|
506
|
-
PackageManager?: string;
|
|
507
|
-
FilePath?: string;
|
|
508
|
-
FixedInVersion?: string;
|
|
509
|
-
Remediation?: string;
|
|
510
|
-
SourceLayerHash?: string;
|
|
511
|
-
SourceLayerArn?: string;
|
|
519
|
+
Name?: string | undefined;
|
|
520
|
+
Version?: string | undefined;
|
|
521
|
+
Epoch?: string | undefined;
|
|
522
|
+
Release?: string | undefined;
|
|
523
|
+
Architecture?: string | undefined;
|
|
524
|
+
PackageManager?: string | undefined;
|
|
525
|
+
FilePath?: string | undefined;
|
|
526
|
+
FixedInVersion?: string | undefined;
|
|
527
|
+
Remediation?: string | undefined;
|
|
528
|
+
SourceLayerHash?: string | undefined;
|
|
529
|
+
SourceLayerArn?: string | undefined;
|
|
512
530
|
}
|
|
513
531
|
export interface Vulnerability {
|
|
514
532
|
Id: string | undefined;
|
|
515
|
-
VulnerablePackages?: SoftwarePackage[];
|
|
516
|
-
Cvss?: Cvss[];
|
|
517
|
-
RelatedVulnerabilities?: string[];
|
|
518
|
-
Vendor?: VulnerabilityVendor;
|
|
519
|
-
ReferenceUrls?: string[];
|
|
520
|
-
FixAvailable?: VulnerabilityFixAvailable;
|
|
521
|
-
EpssScore?: number;
|
|
522
|
-
ExploitAvailable?: VulnerabilityExploitAvailable;
|
|
523
|
-
LastKnownExploitAt?: string;
|
|
524
|
-
CodeVulnerabilities?: VulnerabilityCodeVulnerabilities[];
|
|
533
|
+
VulnerablePackages?: SoftwarePackage[] | undefined;
|
|
534
|
+
Cvss?: Cvss[] | undefined;
|
|
535
|
+
RelatedVulnerabilities?: string[] | undefined;
|
|
536
|
+
Vendor?: VulnerabilityVendor | undefined;
|
|
537
|
+
ReferenceUrls?: string[] | undefined;
|
|
538
|
+
FixAvailable?: VulnerabilityFixAvailable | undefined;
|
|
539
|
+
EpssScore?: number | undefined;
|
|
540
|
+
ExploitAvailable?: VulnerabilityExploitAvailable | undefined;
|
|
541
|
+
LastKnownExploitAt?: string | undefined;
|
|
542
|
+
CodeVulnerabilities?: VulnerabilityCodeVulnerabilities[] | undefined;
|
|
525
543
|
}
|
|
526
544
|
export interface Workflow {
|
|
527
|
-
Status?: WorkflowStatus;
|
|
545
|
+
Status?: WorkflowStatus | undefined;
|
|
528
546
|
}
|
|
529
547
|
export declare const WorkflowState: {
|
|
530
548
|
readonly ASSIGNED: "ASSIGNED";
|
|
@@ -538,162 +556,162 @@ export interface AwsSecurityFinding {
|
|
|
538
556
|
SchemaVersion: string | undefined;
|
|
539
557
|
Id: string | undefined;
|
|
540
558
|
ProductArn: string | undefined;
|
|
541
|
-
ProductName?: string;
|
|
542
|
-
CompanyName?: string;
|
|
543
|
-
Region?: string;
|
|
559
|
+
ProductName?: string | undefined;
|
|
560
|
+
CompanyName?: string | undefined;
|
|
561
|
+
Region?: string | undefined;
|
|
544
562
|
GeneratorId: string | undefined;
|
|
545
563
|
AwsAccountId: string | undefined;
|
|
546
|
-
Types?: string[];
|
|
547
|
-
FirstObservedAt?: string;
|
|
548
|
-
LastObservedAt?: string;
|
|
564
|
+
Types?: string[] | undefined;
|
|
565
|
+
FirstObservedAt?: string | undefined;
|
|
566
|
+
LastObservedAt?: string | undefined;
|
|
549
567
|
CreatedAt: string | undefined;
|
|
550
568
|
UpdatedAt: string | undefined;
|
|
551
|
-
Severity?: Severity;
|
|
552
|
-
Confidence?: number;
|
|
553
|
-
Criticality?: number;
|
|
569
|
+
Severity?: Severity | undefined;
|
|
570
|
+
Confidence?: number | undefined;
|
|
571
|
+
Criticality?: number | undefined;
|
|
554
572
|
Title: string | undefined;
|
|
555
573
|
Description: string | undefined;
|
|
556
|
-
Remediation?: Remediation;
|
|
557
|
-
SourceUrl?: string;
|
|
558
|
-
ProductFields?: Record<string, string
|
|
559
|
-
UserDefinedFields?: Record<string, string
|
|
560
|
-
Malware?: Malware[];
|
|
561
|
-
Network?: Network;
|
|
562
|
-
NetworkPath?: NetworkPathComponent[];
|
|
563
|
-
Process?: ProcessDetails;
|
|
564
|
-
Threats?: Threat[];
|
|
565
|
-
ThreatIntelIndicators?: ThreatIntelIndicator[];
|
|
574
|
+
Remediation?: Remediation | undefined;
|
|
575
|
+
SourceUrl?: string | undefined;
|
|
576
|
+
ProductFields?: Record<string, string> | undefined;
|
|
577
|
+
UserDefinedFields?: Record<string, string> | undefined;
|
|
578
|
+
Malware?: Malware[] | undefined;
|
|
579
|
+
Network?: Network | undefined;
|
|
580
|
+
NetworkPath?: NetworkPathComponent[] | undefined;
|
|
581
|
+
Process?: ProcessDetails | undefined;
|
|
582
|
+
Threats?: Threat[] | undefined;
|
|
583
|
+
ThreatIntelIndicators?: ThreatIntelIndicator[] | undefined;
|
|
566
584
|
Resources: Resource[] | undefined;
|
|
567
|
-
Compliance?: Compliance;
|
|
568
|
-
VerificationState?: VerificationState;
|
|
569
|
-
WorkflowState?: WorkflowState;
|
|
570
|
-
Workflow?: Workflow;
|
|
571
|
-
RecordState?: RecordState;
|
|
572
|
-
RelatedFindings?: RelatedFinding[];
|
|
573
|
-
Note?: Note;
|
|
574
|
-
Vulnerabilities?: Vulnerability[];
|
|
575
|
-
PatchSummary?: PatchSummary;
|
|
576
|
-
Action?: Action;
|
|
577
|
-
FindingProviderFields?: FindingProviderFields;
|
|
578
|
-
Sample?: boolean;
|
|
579
|
-
GeneratorDetails?: GeneratorDetails;
|
|
580
|
-
ProcessedAt?: string;
|
|
581
|
-
AwsAccountName?: string;
|
|
585
|
+
Compliance?: Compliance | undefined;
|
|
586
|
+
VerificationState?: VerificationState | undefined;
|
|
587
|
+
WorkflowState?: WorkflowState | undefined;
|
|
588
|
+
Workflow?: Workflow | undefined;
|
|
589
|
+
RecordState?: RecordState | undefined;
|
|
590
|
+
RelatedFindings?: RelatedFinding[] | undefined;
|
|
591
|
+
Note?: Note | undefined;
|
|
592
|
+
Vulnerabilities?: Vulnerability[] | undefined;
|
|
593
|
+
PatchSummary?: PatchSummary | undefined;
|
|
594
|
+
Action?: Action | undefined;
|
|
595
|
+
FindingProviderFields?: FindingProviderFields | undefined;
|
|
596
|
+
Sample?: boolean | undefined;
|
|
597
|
+
GeneratorDetails?: GeneratorDetails | undefined;
|
|
598
|
+
ProcessedAt?: string | undefined;
|
|
599
|
+
AwsAccountName?: string | undefined;
|
|
582
600
|
}
|
|
583
601
|
export interface KeywordFilter {
|
|
584
|
-
Value?: string;
|
|
602
|
+
Value?: string | undefined;
|
|
585
603
|
}
|
|
586
604
|
export interface IpFilter {
|
|
587
|
-
Cidr?: string;
|
|
605
|
+
Cidr?: string | undefined;
|
|
588
606
|
}
|
|
589
607
|
export interface BooleanFilter {
|
|
590
|
-
Value?: boolean;
|
|
608
|
+
Value?: boolean | undefined;
|
|
591
609
|
}
|
|
592
610
|
export interface AwsSecurityFindingFilters {
|
|
593
|
-
ProductArn?: StringFilter[];
|
|
594
|
-
AwsAccountId?: StringFilter[];
|
|
595
|
-
Id?: StringFilter[];
|
|
596
|
-
GeneratorId?: StringFilter[];
|
|
597
|
-
Region?: StringFilter[];
|
|
598
|
-
Type?: StringFilter[];
|
|
599
|
-
FirstObservedAt?: DateFilter[];
|
|
600
|
-
LastObservedAt?: DateFilter[];
|
|
601
|
-
CreatedAt?: DateFilter[];
|
|
602
|
-
UpdatedAt?: DateFilter[];
|
|
603
|
-
SeverityProduct?: NumberFilter[];
|
|
604
|
-
SeverityNormalized?: NumberFilter[];
|
|
605
|
-
SeverityLabel?: StringFilter[];
|
|
606
|
-
Confidence?: NumberFilter[];
|
|
607
|
-
Criticality?: NumberFilter[];
|
|
608
|
-
Title?: StringFilter[];
|
|
609
|
-
Description?: StringFilter[];
|
|
610
|
-
RecommendationText?: StringFilter[];
|
|
611
|
-
SourceUrl?: StringFilter[];
|
|
612
|
-
ProductFields?: MapFilter[];
|
|
613
|
-
ProductName?: StringFilter[];
|
|
614
|
-
CompanyName?: StringFilter[];
|
|
615
|
-
UserDefinedFields?: MapFilter[];
|
|
616
|
-
MalwareName?: StringFilter[];
|
|
617
|
-
MalwareType?: StringFilter[];
|
|
618
|
-
MalwarePath?: StringFilter[];
|
|
619
|
-
MalwareState?: StringFilter[];
|
|
620
|
-
NetworkDirection?: StringFilter[];
|
|
621
|
-
NetworkProtocol?: StringFilter[];
|
|
622
|
-
NetworkSourceIpV4?: IpFilter[];
|
|
623
|
-
NetworkSourceIpV6?: IpFilter[];
|
|
624
|
-
NetworkSourcePort?: NumberFilter[];
|
|
625
|
-
NetworkSourceDomain?: StringFilter[];
|
|
626
|
-
NetworkSourceMac?: StringFilter[];
|
|
627
|
-
NetworkDestinationIpV4?: IpFilter[];
|
|
628
|
-
NetworkDestinationIpV6?: IpFilter[];
|
|
629
|
-
NetworkDestinationPort?: NumberFilter[];
|
|
630
|
-
NetworkDestinationDomain?: StringFilter[];
|
|
631
|
-
ProcessName?: StringFilter[];
|
|
632
|
-
ProcessPath?: StringFilter[];
|
|
633
|
-
ProcessPid?: NumberFilter[];
|
|
634
|
-
ProcessParentPid?: NumberFilter[];
|
|
635
|
-
ProcessLaunchedAt?: DateFilter[];
|
|
636
|
-
ProcessTerminatedAt?: DateFilter[];
|
|
637
|
-
ThreatIntelIndicatorType?: StringFilter[];
|
|
638
|
-
ThreatIntelIndicatorValue?: StringFilter[];
|
|
639
|
-
ThreatIntelIndicatorCategory?: StringFilter[];
|
|
640
|
-
ThreatIntelIndicatorLastObservedAt?: DateFilter[];
|
|
641
|
-
ThreatIntelIndicatorSource?: StringFilter[];
|
|
642
|
-
ThreatIntelIndicatorSourceUrl?: StringFilter[];
|
|
643
|
-
ResourceType?: StringFilter[];
|
|
644
|
-
ResourceId?: StringFilter[];
|
|
645
|
-
ResourcePartition?: StringFilter[];
|
|
646
|
-
ResourceRegion?: StringFilter[];
|
|
647
|
-
ResourceTags?: MapFilter[];
|
|
648
|
-
ResourceAwsEc2InstanceType?: StringFilter[];
|
|
649
|
-
ResourceAwsEc2InstanceImageId?: StringFilter[];
|
|
650
|
-
ResourceAwsEc2InstanceIpV4Addresses?: IpFilter[];
|
|
651
|
-
ResourceAwsEc2InstanceIpV6Addresses?: IpFilter[];
|
|
652
|
-
ResourceAwsEc2InstanceKeyName?: StringFilter[];
|
|
653
|
-
ResourceAwsEc2InstanceIamInstanceProfileArn?: StringFilter[];
|
|
654
|
-
ResourceAwsEc2InstanceVpcId?: StringFilter[];
|
|
655
|
-
ResourceAwsEc2InstanceSubnetId?: StringFilter[];
|
|
656
|
-
ResourceAwsEc2InstanceLaunchedAt?: DateFilter[];
|
|
657
|
-
ResourceAwsS3BucketOwnerId?: StringFilter[];
|
|
658
|
-
ResourceAwsS3BucketOwnerName?: StringFilter[];
|
|
659
|
-
ResourceAwsIamAccessKeyUserName?: StringFilter[];
|
|
660
|
-
ResourceAwsIamAccessKeyPrincipalName?: StringFilter[];
|
|
661
|
-
ResourceAwsIamAccessKeyStatus?: StringFilter[];
|
|
662
|
-
ResourceAwsIamAccessKeyCreatedAt?: DateFilter[];
|
|
663
|
-
ResourceAwsIamUserUserName?: StringFilter[];
|
|
664
|
-
ResourceContainerName?: StringFilter[];
|
|
665
|
-
ResourceContainerImageId?: StringFilter[];
|
|
666
|
-
ResourceContainerImageName?: StringFilter[];
|
|
667
|
-
ResourceContainerLaunchedAt?: DateFilter[];
|
|
668
|
-
ResourceDetailsOther?: MapFilter[];
|
|
669
|
-
ComplianceStatus?: StringFilter[];
|
|
670
|
-
VerificationState?: StringFilter[];
|
|
671
|
-
WorkflowState?: StringFilter[];
|
|
672
|
-
WorkflowStatus?: StringFilter[];
|
|
673
|
-
RecordState?: StringFilter[];
|
|
674
|
-
RelatedFindingsProductArn?: StringFilter[];
|
|
675
|
-
RelatedFindingsId?: StringFilter[];
|
|
676
|
-
NoteText?: StringFilter[];
|
|
677
|
-
NoteUpdatedAt?: DateFilter[];
|
|
678
|
-
NoteUpdatedBy?: StringFilter[];
|
|
679
|
-
Keyword?: KeywordFilter[];
|
|
680
|
-
FindingProviderFieldsConfidence?: NumberFilter[];
|
|
681
|
-
FindingProviderFieldsCriticality?: NumberFilter[];
|
|
682
|
-
FindingProviderFieldsRelatedFindingsId?: StringFilter[];
|
|
683
|
-
FindingProviderFieldsRelatedFindingsProductArn?: StringFilter[];
|
|
684
|
-
FindingProviderFieldsSeverityLabel?: StringFilter[];
|
|
685
|
-
FindingProviderFieldsSeverityOriginal?: StringFilter[];
|
|
686
|
-
FindingProviderFieldsTypes?: StringFilter[];
|
|
687
|
-
Sample?: BooleanFilter[];
|
|
688
|
-
ComplianceSecurityControlId?: StringFilter[];
|
|
689
|
-
ComplianceAssociatedStandardsId?: StringFilter[];
|
|
690
|
-
VulnerabilitiesExploitAvailable?: StringFilter[];
|
|
691
|
-
VulnerabilitiesFixAvailable?: StringFilter[];
|
|
692
|
-
ComplianceSecurityControlParametersName?: StringFilter[];
|
|
693
|
-
ComplianceSecurityControlParametersValue?: StringFilter[];
|
|
694
|
-
AwsAccountName?: StringFilter[];
|
|
695
|
-
ResourceApplicationName?: StringFilter[];
|
|
696
|
-
ResourceApplicationArn?: StringFilter[];
|
|
611
|
+
ProductArn?: StringFilter[] | undefined;
|
|
612
|
+
AwsAccountId?: StringFilter[] | undefined;
|
|
613
|
+
Id?: StringFilter[] | undefined;
|
|
614
|
+
GeneratorId?: StringFilter[] | undefined;
|
|
615
|
+
Region?: StringFilter[] | undefined;
|
|
616
|
+
Type?: StringFilter[] | undefined;
|
|
617
|
+
FirstObservedAt?: DateFilter[] | undefined;
|
|
618
|
+
LastObservedAt?: DateFilter[] | undefined;
|
|
619
|
+
CreatedAt?: DateFilter[] | undefined;
|
|
620
|
+
UpdatedAt?: DateFilter[] | undefined;
|
|
621
|
+
SeverityProduct?: NumberFilter[] | undefined;
|
|
622
|
+
SeverityNormalized?: NumberFilter[] | undefined;
|
|
623
|
+
SeverityLabel?: StringFilter[] | undefined;
|
|
624
|
+
Confidence?: NumberFilter[] | undefined;
|
|
625
|
+
Criticality?: NumberFilter[] | undefined;
|
|
626
|
+
Title?: StringFilter[] | undefined;
|
|
627
|
+
Description?: StringFilter[] | undefined;
|
|
628
|
+
RecommendationText?: StringFilter[] | undefined;
|
|
629
|
+
SourceUrl?: StringFilter[] | undefined;
|
|
630
|
+
ProductFields?: MapFilter[] | undefined;
|
|
631
|
+
ProductName?: StringFilter[] | undefined;
|
|
632
|
+
CompanyName?: StringFilter[] | undefined;
|
|
633
|
+
UserDefinedFields?: MapFilter[] | undefined;
|
|
634
|
+
MalwareName?: StringFilter[] | undefined;
|
|
635
|
+
MalwareType?: StringFilter[] | undefined;
|
|
636
|
+
MalwarePath?: StringFilter[] | undefined;
|
|
637
|
+
MalwareState?: StringFilter[] | undefined;
|
|
638
|
+
NetworkDirection?: StringFilter[] | undefined;
|
|
639
|
+
NetworkProtocol?: StringFilter[] | undefined;
|
|
640
|
+
NetworkSourceIpV4?: IpFilter[] | undefined;
|
|
641
|
+
NetworkSourceIpV6?: IpFilter[] | undefined;
|
|
642
|
+
NetworkSourcePort?: NumberFilter[] | undefined;
|
|
643
|
+
NetworkSourceDomain?: StringFilter[] | undefined;
|
|
644
|
+
NetworkSourceMac?: StringFilter[] | undefined;
|
|
645
|
+
NetworkDestinationIpV4?: IpFilter[] | undefined;
|
|
646
|
+
NetworkDestinationIpV6?: IpFilter[] | undefined;
|
|
647
|
+
NetworkDestinationPort?: NumberFilter[] | undefined;
|
|
648
|
+
NetworkDestinationDomain?: StringFilter[] | undefined;
|
|
649
|
+
ProcessName?: StringFilter[] | undefined;
|
|
650
|
+
ProcessPath?: StringFilter[] | undefined;
|
|
651
|
+
ProcessPid?: NumberFilter[] | undefined;
|
|
652
|
+
ProcessParentPid?: NumberFilter[] | undefined;
|
|
653
|
+
ProcessLaunchedAt?: DateFilter[] | undefined;
|
|
654
|
+
ProcessTerminatedAt?: DateFilter[] | undefined;
|
|
655
|
+
ThreatIntelIndicatorType?: StringFilter[] | undefined;
|
|
656
|
+
ThreatIntelIndicatorValue?: StringFilter[] | undefined;
|
|
657
|
+
ThreatIntelIndicatorCategory?: StringFilter[] | undefined;
|
|
658
|
+
ThreatIntelIndicatorLastObservedAt?: DateFilter[] | undefined;
|
|
659
|
+
ThreatIntelIndicatorSource?: StringFilter[] | undefined;
|
|
660
|
+
ThreatIntelIndicatorSourceUrl?: StringFilter[] | undefined;
|
|
661
|
+
ResourceType?: StringFilter[] | undefined;
|
|
662
|
+
ResourceId?: StringFilter[] | undefined;
|
|
663
|
+
ResourcePartition?: StringFilter[] | undefined;
|
|
664
|
+
ResourceRegion?: StringFilter[] | undefined;
|
|
665
|
+
ResourceTags?: MapFilter[] | undefined;
|
|
666
|
+
ResourceAwsEc2InstanceType?: StringFilter[] | undefined;
|
|
667
|
+
ResourceAwsEc2InstanceImageId?: StringFilter[] | undefined;
|
|
668
|
+
ResourceAwsEc2InstanceIpV4Addresses?: IpFilter[] | undefined;
|
|
669
|
+
ResourceAwsEc2InstanceIpV6Addresses?: IpFilter[] | undefined;
|
|
670
|
+
ResourceAwsEc2InstanceKeyName?: StringFilter[] | undefined;
|
|
671
|
+
ResourceAwsEc2InstanceIamInstanceProfileArn?: StringFilter[] | undefined;
|
|
672
|
+
ResourceAwsEc2InstanceVpcId?: StringFilter[] | undefined;
|
|
673
|
+
ResourceAwsEc2InstanceSubnetId?: StringFilter[] | undefined;
|
|
674
|
+
ResourceAwsEc2InstanceLaunchedAt?: DateFilter[] | undefined;
|
|
675
|
+
ResourceAwsS3BucketOwnerId?: StringFilter[] | undefined;
|
|
676
|
+
ResourceAwsS3BucketOwnerName?: StringFilter[] | undefined;
|
|
677
|
+
ResourceAwsIamAccessKeyUserName?: StringFilter[] | undefined;
|
|
678
|
+
ResourceAwsIamAccessKeyPrincipalName?: StringFilter[] | undefined;
|
|
679
|
+
ResourceAwsIamAccessKeyStatus?: StringFilter[] | undefined;
|
|
680
|
+
ResourceAwsIamAccessKeyCreatedAt?: DateFilter[] | undefined;
|
|
681
|
+
ResourceAwsIamUserUserName?: StringFilter[] | undefined;
|
|
682
|
+
ResourceContainerName?: StringFilter[] | undefined;
|
|
683
|
+
ResourceContainerImageId?: StringFilter[] | undefined;
|
|
684
|
+
ResourceContainerImageName?: StringFilter[] | undefined;
|
|
685
|
+
ResourceContainerLaunchedAt?: DateFilter[] | undefined;
|
|
686
|
+
ResourceDetailsOther?: MapFilter[] | undefined;
|
|
687
|
+
ComplianceStatus?: StringFilter[] | undefined;
|
|
688
|
+
VerificationState?: StringFilter[] | undefined;
|
|
689
|
+
WorkflowState?: StringFilter[] | undefined;
|
|
690
|
+
WorkflowStatus?: StringFilter[] | undefined;
|
|
691
|
+
RecordState?: StringFilter[] | undefined;
|
|
692
|
+
RelatedFindingsProductArn?: StringFilter[] | undefined;
|
|
693
|
+
RelatedFindingsId?: StringFilter[] | undefined;
|
|
694
|
+
NoteText?: StringFilter[] | undefined;
|
|
695
|
+
NoteUpdatedAt?: DateFilter[] | undefined;
|
|
696
|
+
NoteUpdatedBy?: StringFilter[] | undefined;
|
|
697
|
+
Keyword?: KeywordFilter[] | undefined;
|
|
698
|
+
FindingProviderFieldsConfidence?: NumberFilter[] | undefined;
|
|
699
|
+
FindingProviderFieldsCriticality?: NumberFilter[] | undefined;
|
|
700
|
+
FindingProviderFieldsRelatedFindingsId?: StringFilter[] | undefined;
|
|
701
|
+
FindingProviderFieldsRelatedFindingsProductArn?: StringFilter[] | undefined;
|
|
702
|
+
FindingProviderFieldsSeverityLabel?: StringFilter[] | undefined;
|
|
703
|
+
FindingProviderFieldsSeverityOriginal?: StringFilter[] | undefined;
|
|
704
|
+
FindingProviderFieldsTypes?: StringFilter[] | undefined;
|
|
705
|
+
Sample?: BooleanFilter[] | undefined;
|
|
706
|
+
ComplianceSecurityControlId?: StringFilter[] | undefined;
|
|
707
|
+
ComplianceAssociatedStandardsId?: StringFilter[] | undefined;
|
|
708
|
+
VulnerabilitiesExploitAvailable?: StringFilter[] | undefined;
|
|
709
|
+
VulnerabilitiesFixAvailable?: StringFilter[] | undefined;
|
|
710
|
+
ComplianceSecurityControlParametersName?: StringFilter[] | undefined;
|
|
711
|
+
ComplianceSecurityControlParametersValue?: StringFilter[] | undefined;
|
|
712
|
+
AwsAccountName?: StringFilter[] | undefined;
|
|
713
|
+
ResourceApplicationName?: StringFilter[] | undefined;
|
|
714
|
+
ResourceApplicationArn?: StringFilter[] | undefined;
|
|
697
715
|
}
|
|
698
716
|
export interface AwsSecurityFindingIdentifier {
|
|
699
717
|
Id: string | undefined;
|
|
@@ -703,13 +721,13 @@ export interface BatchDeleteAutomationRulesRequest {
|
|
|
703
721
|
AutomationRulesArns: string[] | undefined;
|
|
704
722
|
}
|
|
705
723
|
export interface UnprocessedAutomationRule {
|
|
706
|
-
RuleArn?: string;
|
|
707
|
-
ErrorCode?: number;
|
|
708
|
-
ErrorMessage?: string;
|
|
724
|
+
RuleArn?: string | undefined;
|
|
725
|
+
ErrorCode?: number | undefined;
|
|
726
|
+
ErrorMessage?: string | undefined;
|
|
709
727
|
}
|
|
710
728
|
export interface BatchDeleteAutomationRulesResponse {
|
|
711
|
-
ProcessedAutomationRules?: string[];
|
|
712
|
-
UnprocessedAutomationRules?: UnprocessedAutomationRule[];
|
|
729
|
+
ProcessedAutomationRules?: string[] | undefined;
|
|
730
|
+
UnprocessedAutomationRules?: UnprocessedAutomationRule[] | undefined;
|
|
713
731
|
}
|
|
714
732
|
export interface BatchDisableStandardsRequest {
|
|
715
733
|
StandardsSubscriptionArns: string[] | undefined;
|
|
@@ -737,27 +755,27 @@ export interface StandardsSubscription {
|
|
|
737
755
|
StandardsArn: string | undefined;
|
|
738
756
|
StandardsInput: Record<string, string> | undefined;
|
|
739
757
|
StandardsStatus: StandardsStatus | undefined;
|
|
740
|
-
StandardsStatusReason?: StandardsStatusReason;
|
|
758
|
+
StandardsStatusReason?: StandardsStatusReason | undefined;
|
|
741
759
|
}
|
|
742
760
|
export interface BatchDisableStandardsResponse {
|
|
743
|
-
StandardsSubscriptions?: StandardsSubscription[];
|
|
761
|
+
StandardsSubscriptions?: StandardsSubscription[] | undefined;
|
|
744
762
|
}
|
|
745
763
|
export interface StandardsSubscriptionRequest {
|
|
746
764
|
StandardsArn: string | undefined;
|
|
747
|
-
StandardsInput?: Record<string, string
|
|
765
|
+
StandardsInput?: Record<string, string> | undefined;
|
|
748
766
|
}
|
|
749
767
|
export interface BatchEnableStandardsRequest {
|
|
750
768
|
StandardsSubscriptionRequests: StandardsSubscriptionRequest[] | undefined;
|
|
751
769
|
}
|
|
752
770
|
export interface BatchEnableStandardsResponse {
|
|
753
|
-
StandardsSubscriptions?: StandardsSubscription[];
|
|
771
|
+
StandardsSubscriptions?: StandardsSubscription[] | undefined;
|
|
754
772
|
}
|
|
755
773
|
export interface BatchGetAutomationRulesRequest {
|
|
756
774
|
AutomationRulesArns: string[] | undefined;
|
|
757
775
|
}
|
|
758
776
|
export interface BatchGetAutomationRulesResponse {
|
|
759
|
-
Rules?: AutomationRulesConfig[];
|
|
760
|
-
UnprocessedAutomationRules?: UnprocessedAutomationRule[];
|
|
777
|
+
Rules?: AutomationRulesConfig[] | undefined;
|
|
778
|
+
UnprocessedAutomationRules?: UnprocessedAutomationRule[] | undefined;
|
|
761
779
|
}
|
|
762
780
|
export type Target =
|
|
763
781
|
| Target.AccountIdMember
|
|
@@ -798,7 +816,7 @@ export declare namespace Target {
|
|
|
798
816
|
const visit: <T>(value: Target, visitor: Visitor<T>) => T;
|
|
799
817
|
}
|
|
800
818
|
export interface ConfigurationPolicyAssociation {
|
|
801
|
-
Target?: Target;
|
|
819
|
+
Target?: Target | undefined;
|
|
802
820
|
}
|
|
803
821
|
export interface BatchGetConfigurationPolicyAssociationsRequest {
|
|
804
822
|
ConfigurationPolicyAssociationIdentifiers:
|
|
@@ -812,22 +830,28 @@ export declare const TargetType: {
|
|
|
812
830
|
};
|
|
813
831
|
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
814
832
|
export interface ConfigurationPolicyAssociationSummary {
|
|
815
|
-
ConfigurationPolicyId?: string;
|
|
816
|
-
TargetId?: string;
|
|
817
|
-
TargetType?: TargetType;
|
|
818
|
-
AssociationType?: AssociationType;
|
|
819
|
-
UpdatedAt?: Date;
|
|
820
|
-
AssociationStatus?: ConfigurationPolicyAssociationStatus;
|
|
821
|
-
AssociationStatusMessage?: string;
|
|
833
|
+
ConfigurationPolicyId?: string | undefined;
|
|
834
|
+
TargetId?: string | undefined;
|
|
835
|
+
TargetType?: TargetType | undefined;
|
|
836
|
+
AssociationType?: AssociationType | undefined;
|
|
837
|
+
UpdatedAt?: Date | undefined;
|
|
838
|
+
AssociationStatus?: ConfigurationPolicyAssociationStatus | undefined;
|
|
839
|
+
AssociationStatusMessage?: string | undefined;
|
|
822
840
|
}
|
|
823
841
|
export interface UnprocessedConfigurationPolicyAssociation {
|
|
824
|
-
ConfigurationPolicyAssociationIdentifiers?:
|
|
825
|
-
|
|
826
|
-
|
|
842
|
+
ConfigurationPolicyAssociationIdentifiers?:
|
|
843
|
+
| ConfigurationPolicyAssociation
|
|
844
|
+
| undefined;
|
|
845
|
+
ErrorCode?: string | undefined;
|
|
846
|
+
ErrorReason?: string | undefined;
|
|
827
847
|
}
|
|
828
848
|
export interface BatchGetConfigurationPolicyAssociationsResponse {
|
|
829
|
-
ConfigurationPolicyAssociations?:
|
|
830
|
-
|
|
849
|
+
ConfigurationPolicyAssociations?:
|
|
850
|
+
| ConfigurationPolicyAssociationSummary[]
|
|
851
|
+
| undefined;
|
|
852
|
+
UnprocessedConfigurationPolicyAssociations?:
|
|
853
|
+
| UnprocessedConfigurationPolicyAssociation[]
|
|
854
|
+
| undefined;
|
|
831
855
|
}
|
|
832
856
|
export interface BatchGetSecurityControlsRequest {
|
|
833
857
|
SecurityControlIds: string[] | undefined;
|
|
@@ -963,7 +987,7 @@ export type ParameterValueType =
|
|
|
963
987
|
(typeof ParameterValueType)[keyof typeof ParameterValueType];
|
|
964
988
|
export interface ParameterConfiguration {
|
|
965
989
|
ValueType: ParameterValueType | undefined;
|
|
966
|
-
Value?: ParameterValue;
|
|
990
|
+
Value?: ParameterValue | undefined;
|
|
967
991
|
}
|
|
968
992
|
export declare const ControlStatus: {
|
|
969
993
|
readonly DISABLED: "DISABLED";
|
|
@@ -991,9 +1015,9 @@ export interface SecurityControl {
|
|
|
991
1015
|
RemediationUrl: string | undefined;
|
|
992
1016
|
SeverityRating: SeverityRating | undefined;
|
|
993
1017
|
SecurityControlStatus: ControlStatus | undefined;
|
|
994
|
-
UpdateStatus?: UpdateStatus;
|
|
995
|
-
Parameters?: Record<string, ParameterConfiguration
|
|
996
|
-
LastUpdateReason?: string;
|
|
1018
|
+
UpdateStatus?: UpdateStatus | undefined;
|
|
1019
|
+
Parameters?: Record<string, ParameterConfiguration> | undefined;
|
|
1020
|
+
LastUpdateReason?: string | undefined;
|
|
997
1021
|
}
|
|
998
1022
|
export declare const UnprocessedErrorCode: {
|
|
999
1023
|
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
@@ -1006,11 +1030,11 @@ export type UnprocessedErrorCode =
|
|
|
1006
1030
|
export interface UnprocessedSecurityControl {
|
|
1007
1031
|
SecurityControlId: string | undefined;
|
|
1008
1032
|
ErrorCode: UnprocessedErrorCode | undefined;
|
|
1009
|
-
ErrorReason?: string;
|
|
1033
|
+
ErrorReason?: string | undefined;
|
|
1010
1034
|
}
|
|
1011
1035
|
export interface BatchGetSecurityControlsResponse {
|
|
1012
1036
|
SecurityControls: SecurityControl[] | undefined;
|
|
1013
|
-
UnprocessedIds?: UnprocessedSecurityControl[];
|
|
1037
|
+
UnprocessedIds?: UnprocessedSecurityControl[] | undefined;
|
|
1014
1038
|
}
|
|
1015
1039
|
export interface StandardsControlAssociationId {
|
|
1016
1040
|
SecurityControlId: string | undefined;
|
|
@@ -1024,23 +1048,25 @@ export interface StandardsControlAssociationDetail {
|
|
|
1024
1048
|
SecurityControlId: string | undefined;
|
|
1025
1049
|
SecurityControlArn: string | undefined;
|
|
1026
1050
|
AssociationStatus: AssociationStatus | undefined;
|
|
1027
|
-
RelatedRequirements?: string[];
|
|
1028
|
-
UpdatedAt?: Date;
|
|
1029
|
-
UpdatedReason?: string;
|
|
1030
|
-
StandardsControlTitle?: string;
|
|
1031
|
-
StandardsControlDescription?: string;
|
|
1032
|
-
StandardsControlArns?: string[];
|
|
1051
|
+
RelatedRequirements?: string[] | undefined;
|
|
1052
|
+
UpdatedAt?: Date | undefined;
|
|
1053
|
+
UpdatedReason?: string | undefined;
|
|
1054
|
+
StandardsControlTitle?: string | undefined;
|
|
1055
|
+
StandardsControlDescription?: string | undefined;
|
|
1056
|
+
StandardsControlArns?: string[] | undefined;
|
|
1033
1057
|
}
|
|
1034
1058
|
export interface UnprocessedStandardsControlAssociation {
|
|
1035
1059
|
StandardsControlAssociationId: StandardsControlAssociationId | undefined;
|
|
1036
1060
|
ErrorCode: UnprocessedErrorCode | undefined;
|
|
1037
|
-
ErrorReason?: string;
|
|
1061
|
+
ErrorReason?: string | undefined;
|
|
1038
1062
|
}
|
|
1039
1063
|
export interface BatchGetStandardsControlAssociationsResponse {
|
|
1040
1064
|
StandardsControlAssociationDetails:
|
|
1041
1065
|
| StandardsControlAssociationDetail[]
|
|
1042
1066
|
| undefined;
|
|
1043
|
-
UnprocessedAssociations?:
|
|
1067
|
+
UnprocessedAssociations?:
|
|
1068
|
+
| UnprocessedStandardsControlAssociation[]
|
|
1069
|
+
| undefined;
|
|
1044
1070
|
}
|
|
1045
1071
|
export interface BatchImportFindingsRequest {
|
|
1046
1072
|
Findings: AwsSecurityFinding[] | undefined;
|
|
@@ -1053,17 +1079,17 @@ export interface ImportFindingsError {
|
|
|
1053
1079
|
export interface BatchImportFindingsResponse {
|
|
1054
1080
|
FailedCount: number | undefined;
|
|
1055
1081
|
SuccessCount: number | undefined;
|
|
1056
|
-
FailedFindings?: ImportFindingsError[];
|
|
1082
|
+
FailedFindings?: ImportFindingsError[] | undefined;
|
|
1057
1083
|
}
|
|
1058
1084
|
export interface UpdateAutomationRulesRequestItem {
|
|
1059
1085
|
RuleArn: string | undefined;
|
|
1060
|
-
RuleStatus?: RuleStatus;
|
|
1061
|
-
RuleOrder?: number;
|
|
1062
|
-
Description?: string;
|
|
1063
|
-
RuleName?: string;
|
|
1064
|
-
IsTerminal?: boolean;
|
|
1065
|
-
Criteria?: AutomationRulesFindingFilters;
|
|
1066
|
-
Actions?: AutomationRulesAction[];
|
|
1086
|
+
RuleStatus?: RuleStatus | undefined;
|
|
1087
|
+
RuleOrder?: number | undefined;
|
|
1088
|
+
Description?: string | undefined;
|
|
1089
|
+
RuleName?: string | undefined;
|
|
1090
|
+
IsTerminal?: boolean | undefined;
|
|
1091
|
+
Criteria?: AutomationRulesFindingFilters | undefined;
|
|
1092
|
+
Actions?: AutomationRulesAction[] | undefined;
|
|
1067
1093
|
}
|
|
1068
1094
|
export interface BatchUpdateAutomationRulesRequest {
|
|
1069
1095
|
UpdateAutomationRulesRequestItems:
|
|
@@ -1071,20 +1097,20 @@ export interface BatchUpdateAutomationRulesRequest {
|
|
|
1071
1097
|
| undefined;
|
|
1072
1098
|
}
|
|
1073
1099
|
export interface BatchUpdateAutomationRulesResponse {
|
|
1074
|
-
ProcessedAutomationRules?: string[];
|
|
1075
|
-
UnprocessedAutomationRules?: UnprocessedAutomationRule[];
|
|
1100
|
+
ProcessedAutomationRules?: string[] | undefined;
|
|
1101
|
+
UnprocessedAutomationRules?: UnprocessedAutomationRule[] | undefined;
|
|
1076
1102
|
}
|
|
1077
1103
|
export interface BatchUpdateFindingsRequest {
|
|
1078
1104
|
FindingIdentifiers: AwsSecurityFindingIdentifier[] | undefined;
|
|
1079
|
-
Note?: NoteUpdate;
|
|
1080
|
-
Severity?: SeverityUpdate;
|
|
1081
|
-
VerificationState?: VerificationState;
|
|
1082
|
-
Confidence?: number;
|
|
1083
|
-
Criticality?: number;
|
|
1084
|
-
Types?: string[];
|
|
1085
|
-
UserDefinedFields?: Record<string, string
|
|
1086
|
-
Workflow?: WorkflowUpdate;
|
|
1087
|
-
RelatedFindings?: RelatedFinding[];
|
|
1105
|
+
Note?: NoteUpdate | undefined;
|
|
1106
|
+
Severity?: SeverityUpdate | undefined;
|
|
1107
|
+
VerificationState?: VerificationState | undefined;
|
|
1108
|
+
Confidence?: number | undefined;
|
|
1109
|
+
Criticality?: number | undefined;
|
|
1110
|
+
Types?: string[] | undefined;
|
|
1111
|
+
UserDefinedFields?: Record<string, string> | undefined;
|
|
1112
|
+
Workflow?: WorkflowUpdate | undefined;
|
|
1113
|
+
RelatedFindings?: RelatedFinding[] | undefined;
|
|
1088
1114
|
}
|
|
1089
1115
|
export interface BatchUpdateFindingsUnprocessedFinding {
|
|
1090
1116
|
FindingIdentifier: AwsSecurityFindingIdentifier | undefined;
|
|
@@ -1099,7 +1125,7 @@ export interface StandardsControlAssociationUpdate {
|
|
|
1099
1125
|
StandardsArn: string | undefined;
|
|
1100
1126
|
SecurityControlId: string | undefined;
|
|
1101
1127
|
AssociationStatus: AssociationStatus | undefined;
|
|
1102
|
-
UpdatedReason?: string;
|
|
1128
|
+
UpdatedReason?: string | undefined;
|
|
1103
1129
|
}
|
|
1104
1130
|
export interface BatchUpdateStandardsControlAssociationsRequest {
|
|
1105
1131
|
StandardsControlAssociationUpdates:
|
|
@@ -1111,49 +1137,51 @@ export interface UnprocessedStandardsControlAssociationUpdate {
|
|
|
1111
1137
|
| StandardsControlAssociationUpdate
|
|
1112
1138
|
| undefined;
|
|
1113
1139
|
ErrorCode: UnprocessedErrorCode | undefined;
|
|
1114
|
-
ErrorReason?: string;
|
|
1140
|
+
ErrorReason?: string | undefined;
|
|
1115
1141
|
}
|
|
1116
1142
|
export interface BatchUpdateStandardsControlAssociationsResponse {
|
|
1117
|
-
UnprocessedAssociationUpdates?:
|
|
1143
|
+
UnprocessedAssociationUpdates?:
|
|
1144
|
+
| UnprocessedStandardsControlAssociationUpdate[]
|
|
1145
|
+
| undefined;
|
|
1118
1146
|
}
|
|
1119
1147
|
export interface BooleanConfigurationOptions {
|
|
1120
|
-
DefaultValue?: boolean;
|
|
1148
|
+
DefaultValue?: boolean | undefined;
|
|
1121
1149
|
}
|
|
1122
1150
|
export interface DoubleConfigurationOptions {
|
|
1123
|
-
DefaultValue?: number;
|
|
1124
|
-
Min?: number;
|
|
1125
|
-
Max?: number;
|
|
1151
|
+
DefaultValue?: number | undefined;
|
|
1152
|
+
Min?: number | undefined;
|
|
1153
|
+
Max?: number | undefined;
|
|
1126
1154
|
}
|
|
1127
1155
|
export interface EnumConfigurationOptions {
|
|
1128
|
-
DefaultValue?: string;
|
|
1129
|
-
AllowedValues?: string[];
|
|
1156
|
+
DefaultValue?: string | undefined;
|
|
1157
|
+
AllowedValues?: string[] | undefined;
|
|
1130
1158
|
}
|
|
1131
1159
|
export interface EnumListConfigurationOptions {
|
|
1132
|
-
DefaultValue?: string[];
|
|
1133
|
-
MaxItems?: number;
|
|
1134
|
-
AllowedValues?: string[];
|
|
1160
|
+
DefaultValue?: string[] | undefined;
|
|
1161
|
+
MaxItems?: number | undefined;
|
|
1162
|
+
AllowedValues?: string[] | undefined;
|
|
1135
1163
|
}
|
|
1136
1164
|
export interface IntegerConfigurationOptions {
|
|
1137
|
-
DefaultValue?: number;
|
|
1138
|
-
Min?: number;
|
|
1139
|
-
Max?: number;
|
|
1165
|
+
DefaultValue?: number | undefined;
|
|
1166
|
+
Min?: number | undefined;
|
|
1167
|
+
Max?: number | undefined;
|
|
1140
1168
|
}
|
|
1141
1169
|
export interface IntegerListConfigurationOptions {
|
|
1142
|
-
DefaultValue?: number[];
|
|
1143
|
-
Min?: number;
|
|
1144
|
-
Max?: number;
|
|
1145
|
-
MaxItems?: number;
|
|
1170
|
+
DefaultValue?: number[] | undefined;
|
|
1171
|
+
Min?: number | undefined;
|
|
1172
|
+
Max?: number | undefined;
|
|
1173
|
+
MaxItems?: number | undefined;
|
|
1146
1174
|
}
|
|
1147
1175
|
export interface StringConfigurationOptions {
|
|
1148
|
-
DefaultValue?: string;
|
|
1149
|
-
Re2Expression?: string;
|
|
1150
|
-
ExpressionDescription?: string;
|
|
1176
|
+
DefaultValue?: string | undefined;
|
|
1177
|
+
Re2Expression?: string | undefined;
|
|
1178
|
+
ExpressionDescription?: string | undefined;
|
|
1151
1179
|
}
|
|
1152
1180
|
export interface StringListConfigurationOptions {
|
|
1153
|
-
DefaultValue?: string[];
|
|
1154
|
-
Re2Expression?: string;
|
|
1155
|
-
MaxItems?: number;
|
|
1156
|
-
ExpressionDescription?: string;
|
|
1181
|
+
DefaultValue?: string[] | undefined;
|
|
1182
|
+
Re2Expression?: string | undefined;
|
|
1183
|
+
MaxItems?: number | undefined;
|
|
1184
|
+
ExpressionDescription?: string | undefined;
|
|
1157
1185
|
}
|
|
1158
1186
|
export type ConfigurationOptions =
|
|
1159
1187
|
| ConfigurationOptions.BooleanMember
|
|
@@ -1279,12 +1307,12 @@ export declare namespace ConfigurationOptions {
|
|
|
1279
1307
|
const visit: <T>(value: ConfigurationOptions, visitor: Visitor<T>) => T;
|
|
1280
1308
|
}
|
|
1281
1309
|
export interface ConfigurationPolicySummary {
|
|
1282
|
-
Arn?: string;
|
|
1283
|
-
Id?: string;
|
|
1284
|
-
Name?: string;
|
|
1285
|
-
Description?: string;
|
|
1286
|
-
UpdatedAt?: Date;
|
|
1287
|
-
ServiceEnabled?: boolean;
|
|
1310
|
+
Arn?: string | undefined;
|
|
1311
|
+
Id?: string | undefined;
|
|
1312
|
+
Name?: string | undefined;
|
|
1313
|
+
Description?: string | undefined;
|
|
1314
|
+
UpdatedAt?: Date | undefined;
|
|
1315
|
+
ServiceEnabled?: boolean | undefined;
|
|
1288
1316
|
}
|
|
1289
1317
|
export declare const ControlFindingGenerator: {
|
|
1290
1318
|
readonly SECURITY_CONTROL: "SECURITY_CONTROL";
|
|
@@ -1303,38 +1331,40 @@ export interface CreateActionTargetResponse {
|
|
|
1303
1331
|
export declare class ResourceConflictException extends __BaseException {
|
|
1304
1332
|
readonly name: "ResourceConflictException";
|
|
1305
1333
|
readonly $fault: "client";
|
|
1306
|
-
Message?: string;
|
|
1307
|
-
Code?: string;
|
|
1334
|
+
Message?: string | undefined;
|
|
1335
|
+
Code?: string | undefined;
|
|
1308
1336
|
constructor(
|
|
1309
1337
|
opts: __ExceptionOptionType<ResourceConflictException, __BaseException>
|
|
1310
1338
|
);
|
|
1311
1339
|
}
|
|
1312
1340
|
export interface CreateAutomationRuleRequest {
|
|
1313
|
-
Tags?: Record<string, string
|
|
1314
|
-
RuleStatus?: RuleStatus;
|
|
1341
|
+
Tags?: Record<string, string> | undefined;
|
|
1342
|
+
RuleStatus?: RuleStatus | undefined;
|
|
1315
1343
|
RuleOrder: number | undefined;
|
|
1316
1344
|
RuleName: string | undefined;
|
|
1317
1345
|
Description: string | undefined;
|
|
1318
|
-
IsTerminal?: boolean;
|
|
1346
|
+
IsTerminal?: boolean | undefined;
|
|
1319
1347
|
Criteria: AutomationRulesFindingFilters | undefined;
|
|
1320
1348
|
Actions: AutomationRulesAction[] | undefined;
|
|
1321
1349
|
}
|
|
1322
1350
|
export interface CreateAutomationRuleResponse {
|
|
1323
|
-
RuleArn?: string;
|
|
1351
|
+
RuleArn?: string | undefined;
|
|
1324
1352
|
}
|
|
1325
1353
|
export interface SecurityControlCustomParameter {
|
|
1326
|
-
SecurityControlId?: string;
|
|
1327
|
-
Parameters?: Record<string, ParameterConfiguration
|
|
1354
|
+
SecurityControlId?: string | undefined;
|
|
1355
|
+
Parameters?: Record<string, ParameterConfiguration> | undefined;
|
|
1328
1356
|
}
|
|
1329
1357
|
export interface SecurityControlsConfiguration {
|
|
1330
|
-
EnabledSecurityControlIdentifiers?: string[];
|
|
1331
|
-
DisabledSecurityControlIdentifiers?: string[];
|
|
1332
|
-
SecurityControlCustomParameters?:
|
|
1358
|
+
EnabledSecurityControlIdentifiers?: string[] | undefined;
|
|
1359
|
+
DisabledSecurityControlIdentifiers?: string[] | undefined;
|
|
1360
|
+
SecurityControlCustomParameters?:
|
|
1361
|
+
| SecurityControlCustomParameter[]
|
|
1362
|
+
| undefined;
|
|
1333
1363
|
}
|
|
1334
1364
|
export interface SecurityHubPolicy {
|
|
1335
|
-
ServiceEnabled?: boolean;
|
|
1336
|
-
EnabledStandardIdentifiers?: string[];
|
|
1337
|
-
SecurityControlsConfiguration?: SecurityControlsConfiguration;
|
|
1365
|
+
ServiceEnabled?: boolean | undefined;
|
|
1366
|
+
EnabledStandardIdentifiers?: string[] | undefined;
|
|
1367
|
+
SecurityControlsConfiguration?: SecurityControlsConfiguration | undefined;
|
|
1338
1368
|
}
|
|
1339
1369
|
export type Policy = Policy.SecurityHubMember | Policy.$UnknownMember;
|
|
1340
1370
|
export declare namespace Policy {
|
|
@@ -1354,28 +1384,28 @@ export declare namespace Policy {
|
|
|
1354
1384
|
}
|
|
1355
1385
|
export interface CreateConfigurationPolicyRequest {
|
|
1356
1386
|
Name: string | undefined;
|
|
1357
|
-
Description?: string;
|
|
1387
|
+
Description?: string | undefined;
|
|
1358
1388
|
ConfigurationPolicy: Policy | undefined;
|
|
1359
|
-
Tags?: Record<string, string
|
|
1389
|
+
Tags?: Record<string, string> | undefined;
|
|
1360
1390
|
}
|
|
1361
1391
|
export interface CreateConfigurationPolicyResponse {
|
|
1362
|
-
Arn?: string;
|
|
1363
|
-
Id?: string;
|
|
1364
|
-
Name?: string;
|
|
1365
|
-
Description?: string;
|
|
1366
|
-
UpdatedAt?: Date;
|
|
1367
|
-
CreatedAt?: Date;
|
|
1368
|
-
ConfigurationPolicy?: Policy;
|
|
1392
|
+
Arn?: string | undefined;
|
|
1393
|
+
Id?: string | undefined;
|
|
1394
|
+
Name?: string | undefined;
|
|
1395
|
+
Description?: string | undefined;
|
|
1396
|
+
UpdatedAt?: Date | undefined;
|
|
1397
|
+
CreatedAt?: Date | undefined;
|
|
1398
|
+
ConfigurationPolicy?: Policy | undefined;
|
|
1369
1399
|
}
|
|
1370
1400
|
export interface CreateFindingAggregatorRequest {
|
|
1371
1401
|
RegionLinkingMode: string | undefined;
|
|
1372
|
-
Regions?: string[];
|
|
1402
|
+
Regions?: string[] | undefined;
|
|
1373
1403
|
}
|
|
1374
1404
|
export interface CreateFindingAggregatorResponse {
|
|
1375
|
-
FindingAggregatorArn?: string;
|
|
1376
|
-
FindingAggregationRegion?: string;
|
|
1377
|
-
RegionLinkingMode?: string;
|
|
1378
|
-
Regions?: string[];
|
|
1405
|
+
FindingAggregatorArn?: string | undefined;
|
|
1406
|
+
FindingAggregationRegion?: string | undefined;
|
|
1407
|
+
RegionLinkingMode?: string | undefined;
|
|
1408
|
+
Regions?: string[] | undefined;
|
|
1379
1409
|
}
|
|
1380
1410
|
export interface CreateInsightRequest {
|
|
1381
1411
|
Name: string | undefined;
|
|
@@ -1389,11 +1419,11 @@ export interface CreateMembersRequest {
|
|
|
1389
1419
|
AccountDetails: AccountDetails[] | undefined;
|
|
1390
1420
|
}
|
|
1391
1421
|
export interface Result {
|
|
1392
|
-
AccountId?: string;
|
|
1393
|
-
ProcessingResult?: string;
|
|
1422
|
+
AccountId?: string | undefined;
|
|
1423
|
+
ProcessingResult?: string | undefined;
|
|
1394
1424
|
}
|
|
1395
1425
|
export interface CreateMembersResponse {
|
|
1396
|
-
UnprocessedAccounts?: Result[];
|
|
1426
|
+
UnprocessedAccounts?: Result[] | undefined;
|
|
1397
1427
|
}
|
|
1398
1428
|
export declare const SecurityControlProperty: {
|
|
1399
1429
|
readonly Parameters: "Parameters";
|
|
@@ -1404,7 +1434,7 @@ export interface DeclineInvitationsRequest {
|
|
|
1404
1434
|
AccountIds: string[] | undefined;
|
|
1405
1435
|
}
|
|
1406
1436
|
export interface DeclineInvitationsResponse {
|
|
1407
|
-
UnprocessedAccounts?: Result[];
|
|
1437
|
+
UnprocessedAccounts?: Result[] | undefined;
|
|
1408
1438
|
}
|
|
1409
1439
|
export interface DeleteActionTargetRequest {
|
|
1410
1440
|
ActionTargetArn: string | undefined;
|
|
@@ -1430,31 +1460,31 @@ export interface DeleteInvitationsRequest {
|
|
|
1430
1460
|
AccountIds: string[] | undefined;
|
|
1431
1461
|
}
|
|
1432
1462
|
export interface DeleteInvitationsResponse {
|
|
1433
|
-
UnprocessedAccounts?: Result[];
|
|
1463
|
+
UnprocessedAccounts?: Result[] | undefined;
|
|
1434
1464
|
}
|
|
1435
1465
|
export interface DeleteMembersRequest {
|
|
1436
1466
|
AccountIds: string[] | undefined;
|
|
1437
1467
|
}
|
|
1438
1468
|
export interface DeleteMembersResponse {
|
|
1439
|
-
UnprocessedAccounts?: Result[];
|
|
1469
|
+
UnprocessedAccounts?: Result[] | undefined;
|
|
1440
1470
|
}
|
|
1441
1471
|
export interface DescribeActionTargetsRequest {
|
|
1442
|
-
ActionTargetArns?: string[];
|
|
1443
|
-
NextToken?: string;
|
|
1444
|
-
MaxResults?: number;
|
|
1472
|
+
ActionTargetArns?: string[] | undefined;
|
|
1473
|
+
NextToken?: string | undefined;
|
|
1474
|
+
MaxResults?: number | undefined;
|
|
1445
1475
|
}
|
|
1446
1476
|
export interface DescribeActionTargetsResponse {
|
|
1447
1477
|
ActionTargets: ActionTarget[] | undefined;
|
|
1448
|
-
NextToken?: string;
|
|
1478
|
+
NextToken?: string | undefined;
|
|
1449
1479
|
}
|
|
1450
1480
|
export interface DescribeHubRequest {
|
|
1451
|
-
HubArn?: string;
|
|
1481
|
+
HubArn?: string | undefined;
|
|
1452
1482
|
}
|
|
1453
1483
|
export interface DescribeHubResponse {
|
|
1454
|
-
HubArn?: string;
|
|
1455
|
-
SubscribedAt?: string;
|
|
1456
|
-
AutoEnableControls?: boolean;
|
|
1457
|
-
ControlFindingGenerator?: ControlFindingGenerator;
|
|
1484
|
+
HubArn?: string | undefined;
|
|
1485
|
+
SubscribedAt?: string | undefined;
|
|
1486
|
+
AutoEnableControls?: boolean | undefined;
|
|
1487
|
+
ControlFindingGenerator?: ControlFindingGenerator | undefined;
|
|
1458
1488
|
}
|
|
1459
1489
|
export interface DescribeOrganizationConfigurationRequest {}
|
|
1460
1490
|
export declare const OrganizationConfigurationConfigurationType: {
|
|
@@ -1471,20 +1501,20 @@ export declare const OrganizationConfigurationStatus: {
|
|
|
1471
1501
|
export type OrganizationConfigurationStatus =
|
|
1472
1502
|
(typeof OrganizationConfigurationStatus)[keyof typeof OrganizationConfigurationStatus];
|
|
1473
1503
|
export interface OrganizationConfiguration {
|
|
1474
|
-
ConfigurationType?: OrganizationConfigurationConfigurationType;
|
|
1475
|
-
Status?: OrganizationConfigurationStatus;
|
|
1476
|
-
StatusMessage?: string;
|
|
1504
|
+
ConfigurationType?: OrganizationConfigurationConfigurationType | undefined;
|
|
1505
|
+
Status?: OrganizationConfigurationStatus | undefined;
|
|
1506
|
+
StatusMessage?: string | undefined;
|
|
1477
1507
|
}
|
|
1478
1508
|
export interface DescribeOrganizationConfigurationResponse {
|
|
1479
|
-
AutoEnable?: boolean;
|
|
1480
|
-
MemberAccountLimitReached?: boolean;
|
|
1481
|
-
AutoEnableStandards?: AutoEnableStandards;
|
|
1482
|
-
OrganizationConfiguration?: OrganizationConfiguration;
|
|
1509
|
+
AutoEnable?: boolean | undefined;
|
|
1510
|
+
MemberAccountLimitReached?: boolean | undefined;
|
|
1511
|
+
AutoEnableStandards?: AutoEnableStandards | undefined;
|
|
1512
|
+
OrganizationConfiguration?: OrganizationConfiguration | undefined;
|
|
1483
1513
|
}
|
|
1484
1514
|
export interface DescribeProductsRequest {
|
|
1485
|
-
NextToken?: string;
|
|
1486
|
-
MaxResults?: number;
|
|
1487
|
-
ProductArn?: string;
|
|
1515
|
+
NextToken?: string | undefined;
|
|
1516
|
+
MaxResults?: number | undefined;
|
|
1517
|
+
ProductArn?: string | undefined;
|
|
1488
1518
|
}
|
|
1489
1519
|
export declare const IntegrationType: {
|
|
1490
1520
|
readonly RECEIVE_FINDINGS_FROM_SECURITY_HUB: "RECEIVE_FINDINGS_FROM_SECURITY_HUB";
|
|
@@ -1495,58 +1525,58 @@ export type IntegrationType =
|
|
|
1495
1525
|
(typeof IntegrationType)[keyof typeof IntegrationType];
|
|
1496
1526
|
export interface Product {
|
|
1497
1527
|
ProductArn: string | undefined;
|
|
1498
|
-
ProductName?: string;
|
|
1499
|
-
CompanyName?: string;
|
|
1500
|
-
Description?: string;
|
|
1501
|
-
Categories?: string[];
|
|
1502
|
-
IntegrationTypes?: IntegrationType[];
|
|
1503
|
-
MarketplaceUrl?: string;
|
|
1504
|
-
ActivationUrl?: string;
|
|
1505
|
-
ProductSubscriptionResourcePolicy?: string;
|
|
1528
|
+
ProductName?: string | undefined;
|
|
1529
|
+
CompanyName?: string | undefined;
|
|
1530
|
+
Description?: string | undefined;
|
|
1531
|
+
Categories?: string[] | undefined;
|
|
1532
|
+
IntegrationTypes?: IntegrationType[] | undefined;
|
|
1533
|
+
MarketplaceUrl?: string | undefined;
|
|
1534
|
+
ActivationUrl?: string | undefined;
|
|
1535
|
+
ProductSubscriptionResourcePolicy?: string | undefined;
|
|
1506
1536
|
}
|
|
1507
1537
|
export interface DescribeProductsResponse {
|
|
1508
1538
|
Products: Product[] | undefined;
|
|
1509
|
-
NextToken?: string;
|
|
1539
|
+
NextToken?: string | undefined;
|
|
1510
1540
|
}
|
|
1511
1541
|
export interface DescribeStandardsRequest {
|
|
1512
|
-
NextToken?: string;
|
|
1513
|
-
MaxResults?: number;
|
|
1542
|
+
NextToken?: string | undefined;
|
|
1543
|
+
MaxResults?: number | undefined;
|
|
1514
1544
|
}
|
|
1515
1545
|
export interface StandardsManagedBy {
|
|
1516
|
-
Company?: string;
|
|
1517
|
-
Product?: string;
|
|
1546
|
+
Company?: string | undefined;
|
|
1547
|
+
Product?: string | undefined;
|
|
1518
1548
|
}
|
|
1519
1549
|
export interface Standard {
|
|
1520
|
-
StandardsArn?: string;
|
|
1521
|
-
Name?: string;
|
|
1522
|
-
Description?: string;
|
|
1523
|
-
EnabledByDefault?: boolean;
|
|
1524
|
-
StandardsManagedBy?: StandardsManagedBy;
|
|
1550
|
+
StandardsArn?: string | undefined;
|
|
1551
|
+
Name?: string | undefined;
|
|
1552
|
+
Description?: string | undefined;
|
|
1553
|
+
EnabledByDefault?: boolean | undefined;
|
|
1554
|
+
StandardsManagedBy?: StandardsManagedBy | undefined;
|
|
1525
1555
|
}
|
|
1526
1556
|
export interface DescribeStandardsResponse {
|
|
1527
|
-
Standards?: Standard[];
|
|
1528
|
-
NextToken?: string;
|
|
1557
|
+
Standards?: Standard[] | undefined;
|
|
1558
|
+
NextToken?: string | undefined;
|
|
1529
1559
|
}
|
|
1530
1560
|
export interface DescribeStandardsControlsRequest {
|
|
1531
1561
|
StandardsSubscriptionArn: string | undefined;
|
|
1532
|
-
NextToken?: string;
|
|
1533
|
-
MaxResults?: number;
|
|
1562
|
+
NextToken?: string | undefined;
|
|
1563
|
+
MaxResults?: number | undefined;
|
|
1534
1564
|
}
|
|
1535
1565
|
export interface StandardsControl {
|
|
1536
|
-
StandardsControlArn?: string;
|
|
1537
|
-
ControlStatus?: ControlStatus;
|
|
1538
|
-
DisabledReason?: string;
|
|
1539
|
-
ControlStatusUpdatedAt?: Date;
|
|
1540
|
-
ControlId?: string;
|
|
1541
|
-
Title?: string;
|
|
1542
|
-
Description?: string;
|
|
1543
|
-
RemediationUrl?: string;
|
|
1544
|
-
SeverityRating?: SeverityRating;
|
|
1545
|
-
RelatedRequirements?: string[];
|
|
1566
|
+
StandardsControlArn?: string | undefined;
|
|
1567
|
+
ControlStatus?: ControlStatus | undefined;
|
|
1568
|
+
DisabledReason?: string | undefined;
|
|
1569
|
+
ControlStatusUpdatedAt?: Date | undefined;
|
|
1570
|
+
ControlId?: string | undefined;
|
|
1571
|
+
Title?: string | undefined;
|
|
1572
|
+
Description?: string | undefined;
|
|
1573
|
+
RemediationUrl?: string | undefined;
|
|
1574
|
+
SeverityRating?: SeverityRating | undefined;
|
|
1575
|
+
RelatedRequirements?: string[] | undefined;
|
|
1546
1576
|
}
|
|
1547
1577
|
export interface DescribeStandardsControlsResponse {
|
|
1548
|
-
Controls?: StandardsControl[];
|
|
1549
|
-
NextToken?: string;
|
|
1578
|
+
Controls?: StandardsControl[] | undefined;
|
|
1579
|
+
NextToken?: string | undefined;
|
|
1550
1580
|
}
|
|
1551
1581
|
export interface DisableImportFindingsForProductRequest {
|
|
1552
1582
|
ProductSubscriptionArn: string | undefined;
|
|
@@ -1570,25 +1600,25 @@ export interface EnableImportFindingsForProductRequest {
|
|
|
1570
1600
|
ProductArn: string | undefined;
|
|
1571
1601
|
}
|
|
1572
1602
|
export interface EnableImportFindingsForProductResponse {
|
|
1573
|
-
ProductSubscriptionArn?: string;
|
|
1603
|
+
ProductSubscriptionArn?: string | undefined;
|
|
1574
1604
|
}
|
|
1575
1605
|
export interface EnableOrganizationAdminAccountRequest {
|
|
1576
1606
|
AdminAccountId: string | undefined;
|
|
1577
1607
|
}
|
|
1578
1608
|
export interface EnableOrganizationAdminAccountResponse {}
|
|
1579
1609
|
export interface EnableSecurityHubRequest {
|
|
1580
|
-
Tags?: Record<string, string
|
|
1581
|
-
EnableDefaultStandards?: boolean;
|
|
1582
|
-
ControlFindingGenerator?: ControlFindingGenerator;
|
|
1610
|
+
Tags?: Record<string, string> | undefined;
|
|
1611
|
+
EnableDefaultStandards?: boolean | undefined;
|
|
1612
|
+
ControlFindingGenerator?: ControlFindingGenerator | undefined;
|
|
1583
1613
|
}
|
|
1584
1614
|
export interface EnableSecurityHubResponse {}
|
|
1585
1615
|
export interface FindingAggregator {
|
|
1586
|
-
FindingAggregatorArn?: string;
|
|
1616
|
+
FindingAggregatorArn?: string | undefined;
|
|
1587
1617
|
}
|
|
1588
1618
|
export interface FindingHistoryUpdate {
|
|
1589
|
-
UpdatedField?: string;
|
|
1590
|
-
OldValue?: string;
|
|
1591
|
-
NewValue?: string;
|
|
1619
|
+
UpdatedField?: string | undefined;
|
|
1620
|
+
OldValue?: string | undefined;
|
|
1621
|
+
NewValue?: string | undefined;
|
|
1592
1622
|
}
|
|
1593
1623
|
export declare const FindingHistoryUpdateSourceType: {
|
|
1594
1624
|
readonly BATCH_IMPORT_FINDINGS: "BATCH_IMPORT_FINDINGS";
|
|
@@ -1597,79 +1627,79 @@ export declare const FindingHistoryUpdateSourceType: {
|
|
|
1597
1627
|
export type FindingHistoryUpdateSourceType =
|
|
1598
1628
|
(typeof FindingHistoryUpdateSourceType)[keyof typeof FindingHistoryUpdateSourceType];
|
|
1599
1629
|
export interface FindingHistoryUpdateSource {
|
|
1600
|
-
Type?: FindingHistoryUpdateSourceType;
|
|
1601
|
-
Identity?: string;
|
|
1630
|
+
Type?: FindingHistoryUpdateSourceType | undefined;
|
|
1631
|
+
Identity?: string | undefined;
|
|
1602
1632
|
}
|
|
1603
1633
|
export interface FindingHistoryRecord {
|
|
1604
|
-
FindingIdentifier?: AwsSecurityFindingIdentifier;
|
|
1605
|
-
UpdateTime?: Date;
|
|
1606
|
-
FindingCreated?: boolean;
|
|
1607
|
-
UpdateSource?: FindingHistoryUpdateSource;
|
|
1608
|
-
Updates?: FindingHistoryUpdate[];
|
|
1609
|
-
NextToken?: string;
|
|
1634
|
+
FindingIdentifier?: AwsSecurityFindingIdentifier | undefined;
|
|
1635
|
+
UpdateTime?: Date | undefined;
|
|
1636
|
+
FindingCreated?: boolean | undefined;
|
|
1637
|
+
UpdateSource?: FindingHistoryUpdateSource | undefined;
|
|
1638
|
+
Updates?: FindingHistoryUpdate[] | undefined;
|
|
1639
|
+
NextToken?: string | undefined;
|
|
1610
1640
|
}
|
|
1611
1641
|
export interface GetAdministratorAccountRequest {}
|
|
1612
1642
|
export interface Invitation {
|
|
1613
|
-
AccountId?: string;
|
|
1614
|
-
InvitationId?: string;
|
|
1615
|
-
InvitedAt?: Date;
|
|
1616
|
-
MemberStatus?: string;
|
|
1643
|
+
AccountId?: string | undefined;
|
|
1644
|
+
InvitationId?: string | undefined;
|
|
1645
|
+
InvitedAt?: Date | undefined;
|
|
1646
|
+
MemberStatus?: string | undefined;
|
|
1617
1647
|
}
|
|
1618
1648
|
export interface GetAdministratorAccountResponse {
|
|
1619
|
-
Administrator?: Invitation;
|
|
1649
|
+
Administrator?: Invitation | undefined;
|
|
1620
1650
|
}
|
|
1621
1651
|
export interface GetConfigurationPolicyRequest {
|
|
1622
1652
|
Identifier: string | undefined;
|
|
1623
1653
|
}
|
|
1624
1654
|
export interface GetConfigurationPolicyResponse {
|
|
1625
|
-
Arn?: string;
|
|
1626
|
-
Id?: string;
|
|
1627
|
-
Name?: string;
|
|
1628
|
-
Description?: string;
|
|
1629
|
-
UpdatedAt?: Date;
|
|
1630
|
-
CreatedAt?: Date;
|
|
1631
|
-
ConfigurationPolicy?: Policy;
|
|
1655
|
+
Arn?: string | undefined;
|
|
1656
|
+
Id?: string | undefined;
|
|
1657
|
+
Name?: string | undefined;
|
|
1658
|
+
Description?: string | undefined;
|
|
1659
|
+
UpdatedAt?: Date | undefined;
|
|
1660
|
+
CreatedAt?: Date | undefined;
|
|
1661
|
+
ConfigurationPolicy?: Policy | undefined;
|
|
1632
1662
|
}
|
|
1633
1663
|
export interface GetConfigurationPolicyAssociationRequest {
|
|
1634
1664
|
Target: Target | undefined;
|
|
1635
1665
|
}
|
|
1636
1666
|
export interface GetConfigurationPolicyAssociationResponse {
|
|
1637
|
-
ConfigurationPolicyId?: string;
|
|
1638
|
-
TargetId?: string;
|
|
1639
|
-
TargetType?: TargetType;
|
|
1640
|
-
AssociationType?: AssociationType;
|
|
1641
|
-
UpdatedAt?: Date;
|
|
1642
|
-
AssociationStatus?: ConfigurationPolicyAssociationStatus;
|
|
1643
|
-
AssociationStatusMessage?: string;
|
|
1667
|
+
ConfigurationPolicyId?: string | undefined;
|
|
1668
|
+
TargetId?: string | undefined;
|
|
1669
|
+
TargetType?: TargetType | undefined;
|
|
1670
|
+
AssociationType?: AssociationType | undefined;
|
|
1671
|
+
UpdatedAt?: Date | undefined;
|
|
1672
|
+
AssociationStatus?: ConfigurationPolicyAssociationStatus | undefined;
|
|
1673
|
+
AssociationStatusMessage?: string | undefined;
|
|
1644
1674
|
}
|
|
1645
1675
|
export interface GetEnabledStandardsRequest {
|
|
1646
|
-
StandardsSubscriptionArns?: string[];
|
|
1647
|
-
NextToken?: string;
|
|
1648
|
-
MaxResults?: number;
|
|
1676
|
+
StandardsSubscriptionArns?: string[] | undefined;
|
|
1677
|
+
NextToken?: string | undefined;
|
|
1678
|
+
MaxResults?: number | undefined;
|
|
1649
1679
|
}
|
|
1650
1680
|
export interface GetEnabledStandardsResponse {
|
|
1651
|
-
StandardsSubscriptions?: StandardsSubscription[];
|
|
1652
|
-
NextToken?: string;
|
|
1681
|
+
StandardsSubscriptions?: StandardsSubscription[] | undefined;
|
|
1682
|
+
NextToken?: string | undefined;
|
|
1653
1683
|
}
|
|
1654
1684
|
export interface GetFindingAggregatorRequest {
|
|
1655
1685
|
FindingAggregatorArn: string | undefined;
|
|
1656
1686
|
}
|
|
1657
1687
|
export interface GetFindingAggregatorResponse {
|
|
1658
|
-
FindingAggregatorArn?: string;
|
|
1659
|
-
FindingAggregationRegion?: string;
|
|
1660
|
-
RegionLinkingMode?: string;
|
|
1661
|
-
Regions?: string[];
|
|
1688
|
+
FindingAggregatorArn?: string | undefined;
|
|
1689
|
+
FindingAggregationRegion?: string | undefined;
|
|
1690
|
+
RegionLinkingMode?: string | undefined;
|
|
1691
|
+
Regions?: string[] | undefined;
|
|
1662
1692
|
}
|
|
1663
1693
|
export interface GetFindingHistoryRequest {
|
|
1664
1694
|
FindingIdentifier: AwsSecurityFindingIdentifier | undefined;
|
|
1665
|
-
StartTime?: Date;
|
|
1666
|
-
EndTime?: Date;
|
|
1667
|
-
NextToken?: string;
|
|
1668
|
-
MaxResults?: number;
|
|
1695
|
+
StartTime?: Date | undefined;
|
|
1696
|
+
EndTime?: Date | undefined;
|
|
1697
|
+
NextToken?: string | undefined;
|
|
1698
|
+
MaxResults?: number | undefined;
|
|
1669
1699
|
}
|
|
1670
1700
|
export interface GetFindingHistoryResponse {
|
|
1671
|
-
Records?: FindingHistoryRecord[];
|
|
1672
|
-
NextToken?: string;
|
|
1701
|
+
Records?: FindingHistoryRecord[] | undefined;
|
|
1702
|
+
NextToken?: string | undefined;
|
|
1673
1703
|
}
|
|
1674
1704
|
export declare const SortOrder: {
|
|
1675
1705
|
readonly ASCENDING: "asc";
|
|
@@ -1677,18 +1707,18 @@ export declare const SortOrder: {
|
|
|
1677
1707
|
};
|
|
1678
1708
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1679
1709
|
export interface SortCriterion {
|
|
1680
|
-
Field?: string;
|
|
1681
|
-
SortOrder?: SortOrder;
|
|
1710
|
+
Field?: string | undefined;
|
|
1711
|
+
SortOrder?: SortOrder | undefined;
|
|
1682
1712
|
}
|
|
1683
1713
|
export interface GetFindingsRequest {
|
|
1684
|
-
Filters?: AwsSecurityFindingFilters;
|
|
1685
|
-
SortCriteria?: SortCriterion[];
|
|
1686
|
-
NextToken?: string;
|
|
1687
|
-
MaxResults?: number;
|
|
1714
|
+
Filters?: AwsSecurityFindingFilters | undefined;
|
|
1715
|
+
SortCriteria?: SortCriterion[] | undefined;
|
|
1716
|
+
NextToken?: string | undefined;
|
|
1717
|
+
MaxResults?: number | undefined;
|
|
1688
1718
|
}
|
|
1689
1719
|
export interface GetFindingsResponse {
|
|
1690
1720
|
Findings: AwsSecurityFinding[] | undefined;
|
|
1691
|
-
NextToken?: string;
|
|
1721
|
+
NextToken?: string | undefined;
|
|
1692
1722
|
}
|
|
1693
1723
|
export interface GetInsightResultsRequest {
|
|
1694
1724
|
InsightArn: string | undefined;
|
|
@@ -1706,9 +1736,9 @@ export interface GetInsightResultsResponse {
|
|
|
1706
1736
|
InsightResults: InsightResults | undefined;
|
|
1707
1737
|
}
|
|
1708
1738
|
export interface GetInsightsRequest {
|
|
1709
|
-
InsightArns?: string[];
|
|
1710
|
-
NextToken?: string;
|
|
1711
|
-
MaxResults?: number;
|
|
1739
|
+
InsightArns?: string[] | undefined;
|
|
1740
|
+
NextToken?: string | undefined;
|
|
1741
|
+
MaxResults?: number | undefined;
|
|
1712
1742
|
}
|
|
1713
1743
|
export interface Insight {
|
|
1714
1744
|
InsightArn: string | undefined;
|
|
@@ -1718,31 +1748,31 @@ export interface Insight {
|
|
|
1718
1748
|
}
|
|
1719
1749
|
export interface GetInsightsResponse {
|
|
1720
1750
|
Insights: Insight[] | undefined;
|
|
1721
|
-
NextToken?: string;
|
|
1751
|
+
NextToken?: string | undefined;
|
|
1722
1752
|
}
|
|
1723
1753
|
export interface GetInvitationsCountRequest {}
|
|
1724
1754
|
export interface GetInvitationsCountResponse {
|
|
1725
|
-
InvitationsCount?: number;
|
|
1755
|
+
InvitationsCount?: number | undefined;
|
|
1726
1756
|
}
|
|
1727
1757
|
export interface GetMasterAccountRequest {}
|
|
1728
1758
|
export interface GetMasterAccountResponse {
|
|
1729
|
-
Master?: Invitation;
|
|
1759
|
+
Master?: Invitation | undefined;
|
|
1730
1760
|
}
|
|
1731
1761
|
export interface GetMembersRequest {
|
|
1732
1762
|
AccountIds: string[] | undefined;
|
|
1733
1763
|
}
|
|
1734
1764
|
export interface Member {
|
|
1735
|
-
AccountId?: string;
|
|
1736
|
-
Email?: string;
|
|
1737
|
-
MasterId?: string;
|
|
1738
|
-
AdministratorId?: string;
|
|
1739
|
-
MemberStatus?: string;
|
|
1740
|
-
InvitedAt?: Date;
|
|
1741
|
-
UpdatedAt?: Date;
|
|
1765
|
+
AccountId?: string | undefined;
|
|
1766
|
+
Email?: string | undefined;
|
|
1767
|
+
MasterId?: string | undefined;
|
|
1768
|
+
AdministratorId?: string | undefined;
|
|
1769
|
+
MemberStatus?: string | undefined;
|
|
1770
|
+
InvitedAt?: Date | undefined;
|
|
1771
|
+
UpdatedAt?: Date | undefined;
|
|
1742
1772
|
}
|
|
1743
1773
|
export interface GetMembersResponse {
|
|
1744
|
-
Members?: Member[];
|
|
1745
|
-
UnprocessedAccounts?: Result[];
|
|
1774
|
+
Members?: Member[] | undefined;
|
|
1775
|
+
UnprocessedAccounts?: Result[] | undefined;
|
|
1746
1776
|
}
|
|
1747
1777
|
export interface GetSecurityControlDefinitionRequest {
|
|
1748
1778
|
SecurityControlId: string | undefined;
|
|
@@ -1764,8 +1794,8 @@ export interface SecurityControlDefinition {
|
|
|
1764
1794
|
RemediationUrl: string | undefined;
|
|
1765
1795
|
SeverityRating: SeverityRating | undefined;
|
|
1766
1796
|
CurrentRegionAvailability: RegionAvailabilityStatus | undefined;
|
|
1767
|
-
CustomizableProperties?: SecurityControlProperty[];
|
|
1768
|
-
ParameterDefinitions?: Record<string, ParameterDefinition
|
|
1797
|
+
CustomizableProperties?: SecurityControlProperty[] | undefined;
|
|
1798
|
+
ParameterDefinitions?: Record<string, ParameterDefinition> | undefined;
|
|
1769
1799
|
}
|
|
1770
1800
|
export interface GetSecurityControlDefinitionResponse {
|
|
1771
1801
|
SecurityControlDefinition: SecurityControlDefinition | undefined;
|
|
@@ -1774,116 +1804,118 @@ export interface InviteMembersRequest {
|
|
|
1774
1804
|
AccountIds: string[] | undefined;
|
|
1775
1805
|
}
|
|
1776
1806
|
export interface InviteMembersResponse {
|
|
1777
|
-
UnprocessedAccounts?: Result[];
|
|
1807
|
+
UnprocessedAccounts?: Result[] | undefined;
|
|
1778
1808
|
}
|
|
1779
1809
|
export interface ListAutomationRulesRequest {
|
|
1780
|
-
NextToken?: string;
|
|
1781
|
-
MaxResults?: number;
|
|
1810
|
+
NextToken?: string | undefined;
|
|
1811
|
+
MaxResults?: number | undefined;
|
|
1782
1812
|
}
|
|
1783
1813
|
export interface ListAutomationRulesResponse {
|
|
1784
|
-
AutomationRulesMetadata?: AutomationRulesMetadata[];
|
|
1785
|
-
NextToken?: string;
|
|
1814
|
+
AutomationRulesMetadata?: AutomationRulesMetadata[] | undefined;
|
|
1815
|
+
NextToken?: string | undefined;
|
|
1786
1816
|
}
|
|
1787
1817
|
export interface ListConfigurationPoliciesRequest {
|
|
1788
|
-
NextToken?: string;
|
|
1789
|
-
MaxResults?: number;
|
|
1818
|
+
NextToken?: string | undefined;
|
|
1819
|
+
MaxResults?: number | undefined;
|
|
1790
1820
|
}
|
|
1791
1821
|
export interface ListConfigurationPoliciesResponse {
|
|
1792
|
-
ConfigurationPolicySummaries?: ConfigurationPolicySummary[];
|
|
1793
|
-
NextToken?: string;
|
|
1822
|
+
ConfigurationPolicySummaries?: ConfigurationPolicySummary[] | undefined;
|
|
1823
|
+
NextToken?: string | undefined;
|
|
1794
1824
|
}
|
|
1795
1825
|
export interface ListConfigurationPolicyAssociationsRequest {
|
|
1796
|
-
NextToken?: string;
|
|
1797
|
-
MaxResults?: number;
|
|
1798
|
-
Filters?: AssociationFilters;
|
|
1826
|
+
NextToken?: string | undefined;
|
|
1827
|
+
MaxResults?: number | undefined;
|
|
1828
|
+
Filters?: AssociationFilters | undefined;
|
|
1799
1829
|
}
|
|
1800
1830
|
export interface ListConfigurationPolicyAssociationsResponse {
|
|
1801
|
-
ConfigurationPolicyAssociationSummaries?:
|
|
1802
|
-
|
|
1831
|
+
ConfigurationPolicyAssociationSummaries?:
|
|
1832
|
+
| ConfigurationPolicyAssociationSummary[]
|
|
1833
|
+
| undefined;
|
|
1834
|
+
NextToken?: string | undefined;
|
|
1803
1835
|
}
|
|
1804
1836
|
export interface ListEnabledProductsForImportRequest {
|
|
1805
|
-
NextToken?: string;
|
|
1806
|
-
MaxResults?: number;
|
|
1837
|
+
NextToken?: string | undefined;
|
|
1838
|
+
MaxResults?: number | undefined;
|
|
1807
1839
|
}
|
|
1808
1840
|
export interface ListEnabledProductsForImportResponse {
|
|
1809
|
-
ProductSubscriptions?: string[];
|
|
1810
|
-
NextToken?: string;
|
|
1841
|
+
ProductSubscriptions?: string[] | undefined;
|
|
1842
|
+
NextToken?: string | undefined;
|
|
1811
1843
|
}
|
|
1812
1844
|
export interface ListFindingAggregatorsRequest {
|
|
1813
|
-
NextToken?: string;
|
|
1814
|
-
MaxResults?: number;
|
|
1845
|
+
NextToken?: string | undefined;
|
|
1846
|
+
MaxResults?: number | undefined;
|
|
1815
1847
|
}
|
|
1816
1848
|
export interface ListFindingAggregatorsResponse {
|
|
1817
|
-
FindingAggregators?: FindingAggregator[];
|
|
1818
|
-
NextToken?: string;
|
|
1849
|
+
FindingAggregators?: FindingAggregator[] | undefined;
|
|
1850
|
+
NextToken?: string | undefined;
|
|
1819
1851
|
}
|
|
1820
1852
|
export interface ListInvitationsRequest {
|
|
1821
|
-
MaxResults?: number;
|
|
1822
|
-
NextToken?: string;
|
|
1853
|
+
MaxResults?: number | undefined;
|
|
1854
|
+
NextToken?: string | undefined;
|
|
1823
1855
|
}
|
|
1824
1856
|
export interface ListInvitationsResponse {
|
|
1825
|
-
Invitations?: Invitation[];
|
|
1826
|
-
NextToken?: string;
|
|
1857
|
+
Invitations?: Invitation[] | undefined;
|
|
1858
|
+
NextToken?: string | undefined;
|
|
1827
1859
|
}
|
|
1828
1860
|
export interface ListMembersRequest {
|
|
1829
|
-
OnlyAssociated?: boolean;
|
|
1830
|
-
MaxResults?: number;
|
|
1831
|
-
NextToken?: string;
|
|
1861
|
+
OnlyAssociated?: boolean | undefined;
|
|
1862
|
+
MaxResults?: number | undefined;
|
|
1863
|
+
NextToken?: string | undefined;
|
|
1832
1864
|
}
|
|
1833
1865
|
export interface ListMembersResponse {
|
|
1834
|
-
Members?: Member[];
|
|
1835
|
-
NextToken?: string;
|
|
1866
|
+
Members?: Member[] | undefined;
|
|
1867
|
+
NextToken?: string | undefined;
|
|
1836
1868
|
}
|
|
1837
1869
|
export interface ListOrganizationAdminAccountsRequest {
|
|
1838
|
-
MaxResults?: number;
|
|
1839
|
-
NextToken?: string;
|
|
1870
|
+
MaxResults?: number | undefined;
|
|
1871
|
+
NextToken?: string | undefined;
|
|
1840
1872
|
}
|
|
1841
1873
|
export interface ListOrganizationAdminAccountsResponse {
|
|
1842
|
-
AdminAccounts?: AdminAccount[];
|
|
1843
|
-
NextToken?: string;
|
|
1874
|
+
AdminAccounts?: AdminAccount[] | undefined;
|
|
1875
|
+
NextToken?: string | undefined;
|
|
1844
1876
|
}
|
|
1845
1877
|
export interface ListSecurityControlDefinitionsRequest {
|
|
1846
|
-
StandardsArn?: string;
|
|
1847
|
-
NextToken?: string;
|
|
1848
|
-
MaxResults?: number;
|
|
1878
|
+
StandardsArn?: string | undefined;
|
|
1879
|
+
NextToken?: string | undefined;
|
|
1880
|
+
MaxResults?: number | undefined;
|
|
1849
1881
|
}
|
|
1850
1882
|
export interface ListSecurityControlDefinitionsResponse {
|
|
1851
1883
|
SecurityControlDefinitions: SecurityControlDefinition[] | undefined;
|
|
1852
|
-
NextToken?: string;
|
|
1884
|
+
NextToken?: string | undefined;
|
|
1853
1885
|
}
|
|
1854
1886
|
export interface ListStandardsControlAssociationsRequest {
|
|
1855
1887
|
SecurityControlId: string | undefined;
|
|
1856
|
-
NextToken?: string;
|
|
1857
|
-
MaxResults?: number;
|
|
1888
|
+
NextToken?: string | undefined;
|
|
1889
|
+
MaxResults?: number | undefined;
|
|
1858
1890
|
}
|
|
1859
1891
|
export interface StandardsControlAssociationSummary {
|
|
1860
1892
|
StandardsArn: string | undefined;
|
|
1861
1893
|
SecurityControlId: string | undefined;
|
|
1862
1894
|
SecurityControlArn: string | undefined;
|
|
1863
1895
|
AssociationStatus: AssociationStatus | undefined;
|
|
1864
|
-
RelatedRequirements?: string[];
|
|
1865
|
-
UpdatedAt?: Date;
|
|
1866
|
-
UpdatedReason?: string;
|
|
1867
|
-
StandardsControlTitle?: string;
|
|
1868
|
-
StandardsControlDescription?: string;
|
|
1896
|
+
RelatedRequirements?: string[] | undefined;
|
|
1897
|
+
UpdatedAt?: Date | undefined;
|
|
1898
|
+
UpdatedReason?: string | undefined;
|
|
1899
|
+
StandardsControlTitle?: string | undefined;
|
|
1900
|
+
StandardsControlDescription?: string | undefined;
|
|
1869
1901
|
}
|
|
1870
1902
|
export interface ListStandardsControlAssociationsResponse {
|
|
1871
1903
|
StandardsControlAssociationSummaries:
|
|
1872
1904
|
| StandardsControlAssociationSummary[]
|
|
1873
1905
|
| undefined;
|
|
1874
|
-
NextToken?: string;
|
|
1906
|
+
NextToken?: string | undefined;
|
|
1875
1907
|
}
|
|
1876
1908
|
export interface ListTagsForResourceRequest {
|
|
1877
1909
|
ResourceArn: string | undefined;
|
|
1878
1910
|
}
|
|
1879
1911
|
export interface ListTagsForResourceResponse {
|
|
1880
|
-
Tags?: Record<string, string
|
|
1912
|
+
Tags?: Record<string, string> | undefined;
|
|
1881
1913
|
}
|
|
1882
1914
|
export declare class ResourceInUseException extends __BaseException {
|
|
1883
1915
|
readonly name: "ResourceInUseException";
|
|
1884
1916
|
readonly $fault: "client";
|
|
1885
|
-
Message?: string;
|
|
1886
|
-
Code?: string;
|
|
1917
|
+
Message?: string | undefined;
|
|
1918
|
+
Code?: string | undefined;
|
|
1887
1919
|
constructor(
|
|
1888
1920
|
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
1889
1921
|
);
|
|
@@ -1893,16 +1925,16 @@ export interface StartConfigurationPolicyAssociationRequest {
|
|
|
1893
1925
|
Target: Target | undefined;
|
|
1894
1926
|
}
|
|
1895
1927
|
export interface StartConfigurationPolicyAssociationResponse {
|
|
1896
|
-
ConfigurationPolicyId?: string;
|
|
1897
|
-
TargetId?: string;
|
|
1898
|
-
TargetType?: TargetType;
|
|
1899
|
-
AssociationType?: AssociationType;
|
|
1900
|
-
UpdatedAt?: Date;
|
|
1901
|
-
AssociationStatus?: ConfigurationPolicyAssociationStatus;
|
|
1902
|
-
AssociationStatusMessage?: string;
|
|
1928
|
+
ConfigurationPolicyId?: string | undefined;
|
|
1929
|
+
TargetId?: string | undefined;
|
|
1930
|
+
TargetType?: TargetType | undefined;
|
|
1931
|
+
AssociationType?: AssociationType | undefined;
|
|
1932
|
+
UpdatedAt?: Date | undefined;
|
|
1933
|
+
AssociationStatus?: ConfigurationPolicyAssociationStatus | undefined;
|
|
1934
|
+
AssociationStatusMessage?: string | undefined;
|
|
1903
1935
|
}
|
|
1904
1936
|
export interface StartConfigurationPolicyDisassociationRequest {
|
|
1905
|
-
Target?: Target;
|
|
1937
|
+
Target?: Target | undefined;
|
|
1906
1938
|
ConfigurationPolicyIdentifier: string | undefined;
|
|
1907
1939
|
}
|
|
1908
1940
|
export interface StartConfigurationPolicyDisassociationResponse {}
|
|
@@ -1918,70 +1950,70 @@ export interface UntagResourceRequest {
|
|
|
1918
1950
|
export interface UntagResourceResponse {}
|
|
1919
1951
|
export interface UpdateActionTargetRequest {
|
|
1920
1952
|
ActionTargetArn: string | undefined;
|
|
1921
|
-
Name?: string;
|
|
1922
|
-
Description?: string;
|
|
1953
|
+
Name?: string | undefined;
|
|
1954
|
+
Description?: string | undefined;
|
|
1923
1955
|
}
|
|
1924
1956
|
export interface UpdateActionTargetResponse {}
|
|
1925
1957
|
export interface UpdateConfigurationPolicyRequest {
|
|
1926
1958
|
Identifier: string | undefined;
|
|
1927
|
-
Name?: string;
|
|
1928
|
-
Description?: string;
|
|
1929
|
-
UpdatedReason?: string;
|
|
1930
|
-
ConfigurationPolicy?: Policy;
|
|
1959
|
+
Name?: string | undefined;
|
|
1960
|
+
Description?: string | undefined;
|
|
1961
|
+
UpdatedReason?: string | undefined;
|
|
1962
|
+
ConfigurationPolicy?: Policy | undefined;
|
|
1931
1963
|
}
|
|
1932
1964
|
export interface UpdateConfigurationPolicyResponse {
|
|
1933
|
-
Arn?: string;
|
|
1934
|
-
Id?: string;
|
|
1935
|
-
Name?: string;
|
|
1936
|
-
Description?: string;
|
|
1937
|
-
UpdatedAt?: Date;
|
|
1938
|
-
CreatedAt?: Date;
|
|
1939
|
-
ConfigurationPolicy?: Policy;
|
|
1965
|
+
Arn?: string | undefined;
|
|
1966
|
+
Id?: string | undefined;
|
|
1967
|
+
Name?: string | undefined;
|
|
1968
|
+
Description?: string | undefined;
|
|
1969
|
+
UpdatedAt?: Date | undefined;
|
|
1970
|
+
CreatedAt?: Date | undefined;
|
|
1971
|
+
ConfigurationPolicy?: Policy | undefined;
|
|
1940
1972
|
}
|
|
1941
1973
|
export interface UpdateFindingAggregatorRequest {
|
|
1942
1974
|
FindingAggregatorArn: string | undefined;
|
|
1943
1975
|
RegionLinkingMode: string | undefined;
|
|
1944
|
-
Regions?: string[];
|
|
1976
|
+
Regions?: string[] | undefined;
|
|
1945
1977
|
}
|
|
1946
1978
|
export interface UpdateFindingAggregatorResponse {
|
|
1947
|
-
FindingAggregatorArn?: string;
|
|
1948
|
-
FindingAggregationRegion?: string;
|
|
1949
|
-
RegionLinkingMode?: string;
|
|
1950
|
-
Regions?: string[];
|
|
1979
|
+
FindingAggregatorArn?: string | undefined;
|
|
1980
|
+
FindingAggregationRegion?: string | undefined;
|
|
1981
|
+
RegionLinkingMode?: string | undefined;
|
|
1982
|
+
Regions?: string[] | undefined;
|
|
1951
1983
|
}
|
|
1952
1984
|
export interface UpdateFindingsRequest {
|
|
1953
1985
|
Filters: AwsSecurityFindingFilters | undefined;
|
|
1954
|
-
Note?: NoteUpdate;
|
|
1955
|
-
RecordState?: RecordState;
|
|
1986
|
+
Note?: NoteUpdate | undefined;
|
|
1987
|
+
RecordState?: RecordState | undefined;
|
|
1956
1988
|
}
|
|
1957
1989
|
export interface UpdateFindingsResponse {}
|
|
1958
1990
|
export interface UpdateInsightRequest {
|
|
1959
1991
|
InsightArn: string | undefined;
|
|
1960
|
-
Name?: string;
|
|
1961
|
-
Filters?: AwsSecurityFindingFilters;
|
|
1962
|
-
GroupByAttribute?: string;
|
|
1992
|
+
Name?: string | undefined;
|
|
1993
|
+
Filters?: AwsSecurityFindingFilters | undefined;
|
|
1994
|
+
GroupByAttribute?: string | undefined;
|
|
1963
1995
|
}
|
|
1964
1996
|
export interface UpdateInsightResponse {}
|
|
1965
1997
|
export interface UpdateOrganizationConfigurationRequest {
|
|
1966
1998
|
AutoEnable: boolean | undefined;
|
|
1967
|
-
AutoEnableStandards?: AutoEnableStandards;
|
|
1968
|
-
OrganizationConfiguration?: OrganizationConfiguration;
|
|
1999
|
+
AutoEnableStandards?: AutoEnableStandards | undefined;
|
|
2000
|
+
OrganizationConfiguration?: OrganizationConfiguration | undefined;
|
|
1969
2001
|
}
|
|
1970
2002
|
export interface UpdateOrganizationConfigurationResponse {}
|
|
1971
2003
|
export interface UpdateSecurityControlRequest {
|
|
1972
2004
|
SecurityControlId: string | undefined;
|
|
1973
2005
|
Parameters: Record<string, ParameterConfiguration> | undefined;
|
|
1974
|
-
LastUpdateReason?: string;
|
|
2006
|
+
LastUpdateReason?: string | undefined;
|
|
1975
2007
|
}
|
|
1976
2008
|
export interface UpdateSecurityControlResponse {}
|
|
1977
2009
|
export interface UpdateSecurityHubConfigurationRequest {
|
|
1978
|
-
AutoEnableControls?: boolean;
|
|
1979
|
-
ControlFindingGenerator?: ControlFindingGenerator;
|
|
2010
|
+
AutoEnableControls?: boolean | undefined;
|
|
2011
|
+
ControlFindingGenerator?: ControlFindingGenerator | undefined;
|
|
1980
2012
|
}
|
|
1981
2013
|
export interface UpdateSecurityHubConfigurationResponse {}
|
|
1982
2014
|
export interface UpdateStandardsControlRequest {
|
|
1983
2015
|
StandardsControlArn: string | undefined;
|
|
1984
|
-
ControlStatus?: ControlStatus;
|
|
1985
|
-
DisabledReason?: string;
|
|
2016
|
+
ControlStatus?: ControlStatus | undefined;
|
|
2017
|
+
DisabledReason?: string | undefined;
|
|
1986
2018
|
}
|
|
1987
2019
|
export interface UpdateStandardsControlResponse {}
|