@aws-sdk/client-securityhub 3.425.0 → 3.426.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-cjs/models/models_1.js +1 -36
- package/dist-cjs/models/models_2.js +36 -1
- package/dist-cjs/protocols/Aws_restJson1.js +14 -0
- package/dist-es/models/models_1.js +0 -35
- package/dist-es/models/models_2.js +35 -0
- package/dist-es/protocols/Aws_restJson1.js +14 -0
- package/dist-types/commands/BatchImportFindingsCommand.d.ts +143 -0
- package/dist-types/commands/GetFindingsCommand.d.ts +143 -0
- package/dist-types/models/models_0.d.ts +319 -148
- package/dist-types/models/models_1.d.ts +707 -1504
- package/dist-types/models/models_2.d.ts +1542 -2
- package/dist-types/ts3.4/models/models_0.d.ts +51 -28
- package/dist-types/ts3.4/models/models_1.d.ts +135 -324
- package/dist-types/ts3.4/models/models_2.d.ts +386 -9
- package/package.json +1 -1
|
@@ -1006,6 +1006,56 @@ export interface AwsCodeBuildProjectDetails {
|
|
|
1006
1006
|
VpcConfig?: AwsCodeBuildProjectVpcConfig;
|
|
1007
1007
|
SecondaryArtifacts?: AwsCodeBuildProjectArtifactsDetails[];
|
|
1008
1008
|
}
|
|
1009
|
+
export interface AwsDmsEndpointDetails {
|
|
1010
|
+
CertificateArn?: string;
|
|
1011
|
+
DatabaseName?: string;
|
|
1012
|
+
EndpointArn?: string;
|
|
1013
|
+
EndpointIdentifier?: string;
|
|
1014
|
+
EndpointType?: string;
|
|
1015
|
+
EngineName?: string;
|
|
1016
|
+
ExternalId?: string;
|
|
1017
|
+
ExtraConnectionAttributes?: string;
|
|
1018
|
+
KmsKeyId?: string;
|
|
1019
|
+
Port?: number;
|
|
1020
|
+
ServerName?: string;
|
|
1021
|
+
SslMode?: string;
|
|
1022
|
+
Username?: string;
|
|
1023
|
+
}
|
|
1024
|
+
export interface AwsDmsReplicationInstanceReplicationSubnetGroupDetails {
|
|
1025
|
+
ReplicationSubnetGroupIdentifier?: string;
|
|
1026
|
+
}
|
|
1027
|
+
export interface AwsDmsReplicationInstanceVpcSecurityGroupsDetails {
|
|
1028
|
+
VpcSecurityGroupId?: string;
|
|
1029
|
+
}
|
|
1030
|
+
export interface AwsDmsReplicationInstanceDetails {
|
|
1031
|
+
AllocatedStorage?: number;
|
|
1032
|
+
AutoMinorVersionUpgrade?: boolean;
|
|
1033
|
+
AvailabilityZone?: string;
|
|
1034
|
+
EngineVersion?: string;
|
|
1035
|
+
KmsKeyId?: string;
|
|
1036
|
+
MultiAZ?: boolean;
|
|
1037
|
+
PreferredMaintenanceWindow?: string;
|
|
1038
|
+
PubliclyAccessible?: boolean;
|
|
1039
|
+
ReplicationInstanceClass?: string;
|
|
1040
|
+
ReplicationInstanceIdentifier?: string;
|
|
1041
|
+
ReplicationSubnetGroup?: AwsDmsReplicationInstanceReplicationSubnetGroupDetails;
|
|
1042
|
+
VpcSecurityGroups?: AwsDmsReplicationInstanceVpcSecurityGroupsDetails[];
|
|
1043
|
+
}
|
|
1044
|
+
export interface AwsDmsReplicationTaskDetails {
|
|
1045
|
+
CdcStartPosition?: string;
|
|
1046
|
+
CdcStartTime?: string;
|
|
1047
|
+
CdcStopPosition?: string;
|
|
1048
|
+
MigrationType?: string;
|
|
1049
|
+
Id?: string;
|
|
1050
|
+
ResourceIdentifier?: string;
|
|
1051
|
+
ReplicationInstanceArn?: string;
|
|
1052
|
+
ReplicationTaskIdentifier?: string;
|
|
1053
|
+
ReplicationTaskSettings?: string;
|
|
1054
|
+
SourceEndpointArn?: string;
|
|
1055
|
+
TableMappings?: string;
|
|
1056
|
+
TargetEndpointArn?: string;
|
|
1057
|
+
TaskData?: string;
|
|
1058
|
+
}
|
|
1009
1059
|
export interface AwsDynamoDbTableAttributeDefinition {
|
|
1010
1060
|
AttributeName?: string;
|
|
1011
1061
|
AttributeType?: string;
|
|
@@ -1969,32 +2019,5 @@ export interface AwsEcsTaskDefinitionDetails {
|
|
|
1969
2019
|
RequiresCompatibilities?: string[];
|
|
1970
2020
|
TaskRoleArn?: string;
|
|
1971
2021
|
Volumes?: AwsEcsTaskDefinitionVolumesDetails[];
|
|
1972
|
-
|
|
1973
|
-
export interface AwsEcsTaskVolumeHostDetails {
|
|
1974
|
-
SourcePath?: string;
|
|
1975
|
-
}
|
|
1976
|
-
export interface AwsEcsTaskVolumeDetails {
|
|
1977
|
-
Name?: string;
|
|
1978
|
-
Host?: AwsEcsTaskVolumeHostDetails;
|
|
1979
|
-
}
|
|
1980
|
-
export interface AwsEcsTaskDetails {
|
|
1981
|
-
ClusterArn?: string;
|
|
1982
|
-
TaskDefinitionArn?: string;
|
|
1983
|
-
Version?: string;
|
|
1984
|
-
CreatedAt?: string;
|
|
1985
|
-
StartedAt?: string;
|
|
1986
|
-
StartedBy?: string;
|
|
1987
|
-
Group?: string;
|
|
1988
|
-
Volumes?: AwsEcsTaskVolumeDetails[];
|
|
1989
|
-
Containers?: AwsEcsContainerDetails[];
|
|
1990
|
-
}
|
|
1991
|
-
export interface AwsEfsAccessPointPosixUserDetails {
|
|
1992
|
-
Gid?: string;
|
|
1993
|
-
SecondaryGids?: string[];
|
|
1994
|
-
Uid?: string;
|
|
1995
|
-
}
|
|
1996
|
-
export interface AwsEfsAccessPointRootDirectoryCreationInfoDetails {
|
|
1997
|
-
OwnerGid?: string;
|
|
1998
|
-
OwnerUid?: string;
|
|
1999
|
-
Permissions?: string;
|
|
2022
|
+
Status?: string;
|
|
2000
2023
|
}
|
|
@@ -1,52 +1,38 @@
|
|
|
1
1
|
import {
|
|
2
|
-
Adjustment,
|
|
3
2
|
AssociatedStandard,
|
|
4
3
|
AvailabilityZone,
|
|
5
|
-
AwsAmazonMqBrokerDetails,
|
|
6
|
-
AwsApiGatewayRestApiDetails,
|
|
7
|
-
AwsApiGatewayStageDetails,
|
|
8
|
-
AwsApiGatewayV2ApiDetails,
|
|
9
|
-
AwsApiGatewayV2StageDetails,
|
|
10
|
-
AwsAppSyncGraphQlApiDetails,
|
|
11
|
-
AwsAthenaWorkGroupDetails,
|
|
12
|
-
AwsAutoScalingAutoScalingGroupDetails,
|
|
13
|
-
AwsAutoScalingLaunchConfigurationDetails,
|
|
14
|
-
AwsBackupBackupPlanDetails,
|
|
15
|
-
AwsBackupBackupVaultDetails,
|
|
16
|
-
AwsBackupRecoveryPointDetails,
|
|
17
|
-
AwsCertificateManagerCertificateDetails,
|
|
18
|
-
AwsCloudFormationStackDetails,
|
|
19
|
-
AwsCloudFrontDistributionDetails,
|
|
20
|
-
AwsCloudTrailTrailDetails,
|
|
21
|
-
AwsCloudWatchAlarmDetails,
|
|
22
|
-
AwsCodeBuildProjectDetails,
|
|
23
|
-
AwsDynamoDbTableDetails,
|
|
24
|
-
AwsEc2EipDetails,
|
|
25
|
-
AwsEc2InstanceDetails,
|
|
26
|
-
AwsEc2LaunchTemplateDetails,
|
|
27
|
-
AwsEc2NetworkAclDetails,
|
|
28
|
-
AwsEc2NetworkInterfaceDetails,
|
|
29
|
-
AwsEc2RouteTableDetails,
|
|
30
|
-
AwsEc2SecurityGroupDetails,
|
|
31
|
-
AwsEc2SubnetDetails,
|
|
32
|
-
AwsEc2TransitGatewayDetails,
|
|
33
|
-
AwsEc2VolumeDetails,
|
|
34
|
-
AwsEc2VpcDetails,
|
|
35
|
-
AwsEc2VpcEndpointServiceDetails,
|
|
36
|
-
AwsEc2VpcPeeringConnectionDetails,
|
|
37
|
-
AwsEc2VpnConnectionDetails,
|
|
38
|
-
AwsEcrContainerImageDetails,
|
|
39
|
-
AwsEcrRepositoryDetails,
|
|
40
|
-
AwsEcsClusterDetails,
|
|
41
4
|
AwsEcsContainerDetails,
|
|
42
|
-
AwsEcsServiceDetails,
|
|
43
|
-
AwsEcsTaskDefinitionDetails,
|
|
44
|
-
AwsEcsTaskDetails,
|
|
45
|
-
AwsEfsAccessPointPosixUserDetails,
|
|
46
|
-
AwsEfsAccessPointRootDirectoryCreationInfoDetails,
|
|
47
5
|
RelatedFinding,
|
|
48
6
|
SeverityLabel,
|
|
49
7
|
} from "./models_0";
|
|
8
|
+
export interface AwsEcsTaskVolumeHostDetails {
|
|
9
|
+
SourcePath?: string;
|
|
10
|
+
}
|
|
11
|
+
export interface AwsEcsTaskVolumeDetails {
|
|
12
|
+
Name?: string;
|
|
13
|
+
Host?: AwsEcsTaskVolumeHostDetails;
|
|
14
|
+
}
|
|
15
|
+
export interface AwsEcsTaskDetails {
|
|
16
|
+
ClusterArn?: string;
|
|
17
|
+
TaskDefinitionArn?: string;
|
|
18
|
+
Version?: string;
|
|
19
|
+
CreatedAt?: string;
|
|
20
|
+
StartedAt?: string;
|
|
21
|
+
StartedBy?: string;
|
|
22
|
+
Group?: string;
|
|
23
|
+
Volumes?: AwsEcsTaskVolumeDetails[];
|
|
24
|
+
Containers?: AwsEcsContainerDetails[];
|
|
25
|
+
}
|
|
26
|
+
export interface AwsEfsAccessPointPosixUserDetails {
|
|
27
|
+
Gid?: string;
|
|
28
|
+
SecondaryGids?: string[];
|
|
29
|
+
Uid?: string;
|
|
30
|
+
}
|
|
31
|
+
export interface AwsEfsAccessPointRootDirectoryCreationInfoDetails {
|
|
32
|
+
OwnerGid?: string;
|
|
33
|
+
OwnerUid?: string;
|
|
34
|
+
Permissions?: string;
|
|
35
|
+
}
|
|
50
36
|
export interface AwsEfsAccessPointRootDirectoryDetails {
|
|
51
37
|
CreationInfo?: AwsEfsAccessPointRootDirectoryCreationInfoDetails;
|
|
52
38
|
Path?: string;
|
|
@@ -291,6 +277,43 @@ export interface AwsEventSchemasRegistryDetails {
|
|
|
291
277
|
RegistryArn?: string;
|
|
292
278
|
RegistryName?: string;
|
|
293
279
|
}
|
|
280
|
+
export interface AwsEventsEndpointEventBusesDetails {
|
|
281
|
+
EventBusArn?: string;
|
|
282
|
+
}
|
|
283
|
+
export interface AwsEventsEndpointReplicationConfigDetails {
|
|
284
|
+
State?: string;
|
|
285
|
+
}
|
|
286
|
+
export interface AwsEventsEndpointRoutingConfigFailoverConfigPrimaryDetails {
|
|
287
|
+
HealthCheck?: string;
|
|
288
|
+
}
|
|
289
|
+
export interface AwsEventsEndpointRoutingConfigFailoverConfigSecondaryDetails {
|
|
290
|
+
Route?: string;
|
|
291
|
+
}
|
|
292
|
+
export interface AwsEventsEndpointRoutingConfigFailoverConfigDetails {
|
|
293
|
+
Primary?: AwsEventsEndpointRoutingConfigFailoverConfigPrimaryDetails;
|
|
294
|
+
Secondary?: AwsEventsEndpointRoutingConfigFailoverConfigSecondaryDetails;
|
|
295
|
+
}
|
|
296
|
+
export interface AwsEventsEndpointRoutingConfigDetails {
|
|
297
|
+
FailoverConfig?: AwsEventsEndpointRoutingConfigFailoverConfigDetails;
|
|
298
|
+
}
|
|
299
|
+
export interface AwsEventsEndpointDetails {
|
|
300
|
+
Arn?: string;
|
|
301
|
+
Description?: string;
|
|
302
|
+
EndpointId?: string;
|
|
303
|
+
EndpointUrl?: string;
|
|
304
|
+
EventBuses?: AwsEventsEndpointEventBusesDetails[];
|
|
305
|
+
Name?: string;
|
|
306
|
+
ReplicationConfig?: AwsEventsEndpointReplicationConfigDetails;
|
|
307
|
+
RoleArn?: string;
|
|
308
|
+
RoutingConfig?: AwsEventsEndpointRoutingConfigDetails;
|
|
309
|
+
State?: string;
|
|
310
|
+
StateReason?: string;
|
|
311
|
+
}
|
|
312
|
+
export interface AwsEventsEventbusDetails {
|
|
313
|
+
Arn?: string;
|
|
314
|
+
Name?: string;
|
|
315
|
+
Policy?: string;
|
|
316
|
+
}
|
|
294
317
|
export interface AwsGuardDutyDetectorDataSourcesCloudTrailDetails {
|
|
295
318
|
Status?: string;
|
|
296
319
|
}
|
|
@@ -529,6 +552,49 @@ export interface AwsLambdaLayerVersionDetails {
|
|
|
529
552
|
CompatibleRuntimes?: string[];
|
|
530
553
|
CreatedDate?: string;
|
|
531
554
|
}
|
|
555
|
+
export interface AwsMskClusterClusterInfoClientAuthenticationSaslIamDetails {
|
|
556
|
+
Enabled?: boolean;
|
|
557
|
+
}
|
|
558
|
+
export interface AwsMskClusterClusterInfoClientAuthenticationSaslScramDetails {
|
|
559
|
+
Enabled?: boolean;
|
|
560
|
+
}
|
|
561
|
+
export interface AwsMskClusterClusterInfoClientAuthenticationSaslDetails {
|
|
562
|
+
Iam?: AwsMskClusterClusterInfoClientAuthenticationSaslIamDetails;
|
|
563
|
+
Scram?: AwsMskClusterClusterInfoClientAuthenticationSaslScramDetails;
|
|
564
|
+
}
|
|
565
|
+
export interface AwsMskClusterClusterInfoClientAuthenticationTlsDetails {
|
|
566
|
+
CertificateAuthorityArnList?: string[];
|
|
567
|
+
Enabled?: boolean;
|
|
568
|
+
}
|
|
569
|
+
export interface AwsMskClusterClusterInfoClientAuthenticationUnauthenticatedDetails {
|
|
570
|
+
Enabled?: boolean;
|
|
571
|
+
}
|
|
572
|
+
export interface AwsMskClusterClusterInfoClientAuthenticationDetails {
|
|
573
|
+
Sasl?: AwsMskClusterClusterInfoClientAuthenticationSaslDetails;
|
|
574
|
+
Unauthenticated?: AwsMskClusterClusterInfoClientAuthenticationUnauthenticatedDetails;
|
|
575
|
+
Tls?: AwsMskClusterClusterInfoClientAuthenticationTlsDetails;
|
|
576
|
+
}
|
|
577
|
+
export interface AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails {
|
|
578
|
+
DataVolumeKMSKeyId?: string;
|
|
579
|
+
}
|
|
580
|
+
export interface AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails {
|
|
581
|
+
InCluster?: boolean;
|
|
582
|
+
ClientBroker?: string;
|
|
583
|
+
}
|
|
584
|
+
export interface AwsMskClusterClusterInfoEncryptionInfoDetails {
|
|
585
|
+
EncryptionInTransit?: AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails;
|
|
586
|
+
EncryptionAtRest?: AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails;
|
|
587
|
+
}
|
|
588
|
+
export interface AwsMskClusterClusterInfoDetails {
|
|
589
|
+
EncryptionInfo?: AwsMskClusterClusterInfoEncryptionInfoDetails;
|
|
590
|
+
CurrentVersion?: string;
|
|
591
|
+
NumberOfBrokerNodes?: number;
|
|
592
|
+
ClusterName?: string;
|
|
593
|
+
ClientAuthentication?: AwsMskClusterClusterInfoClientAuthenticationDetails;
|
|
594
|
+
}
|
|
595
|
+
export interface AwsMskClusterDetails {
|
|
596
|
+
ClusterInfo?: AwsMskClusterClusterInfoDetails;
|
|
597
|
+
}
|
|
532
598
|
export interface AwsNetworkFirewallFirewallSubnetMappingsDetails {
|
|
533
599
|
SubnetId?: string;
|
|
534
600
|
}
|
|
@@ -812,6 +878,7 @@ export interface AwsRdsDbClusterDetails {
|
|
|
812
878
|
DbClusterIdentifier?: string;
|
|
813
879
|
DbClusterMembers?: AwsRdsDbClusterMember[];
|
|
814
880
|
IamDatabaseAuthenticationEnabled?: boolean;
|
|
881
|
+
AutoMinorVersionUpgrade?: boolean;
|
|
815
882
|
}
|
|
816
883
|
export interface AwsRdsDbClusterSnapshotDbClusterSnapshotAttribute {
|
|
817
884
|
AttributeName?: string;
|
|
@@ -1152,6 +1219,32 @@ export interface AwsRedshiftClusterDetails {
|
|
|
1152
1219
|
VpcSecurityGroups?: AwsRedshiftClusterVpcSecurityGroup[];
|
|
1153
1220
|
LoggingStatus?: AwsRedshiftClusterLoggingStatus;
|
|
1154
1221
|
}
|
|
1222
|
+
export interface AwsRoute53HostedZoneConfigDetails {
|
|
1223
|
+
Comment?: string;
|
|
1224
|
+
}
|
|
1225
|
+
export interface AwsRoute53HostedZoneObjectDetails {
|
|
1226
|
+
Id?: string;
|
|
1227
|
+
Name?: string;
|
|
1228
|
+
Config?: AwsRoute53HostedZoneConfigDetails;
|
|
1229
|
+
}
|
|
1230
|
+
export interface CloudWatchLogsLogGroupArnConfigDetails {
|
|
1231
|
+
CloudWatchLogsLogGroupArn?: string;
|
|
1232
|
+
HostedZoneId?: string;
|
|
1233
|
+
Id?: string;
|
|
1234
|
+
}
|
|
1235
|
+
export interface AwsRoute53QueryLoggingConfigDetails {
|
|
1236
|
+
CloudWatchLogsLogGroupArn?: CloudWatchLogsLogGroupArnConfigDetails;
|
|
1237
|
+
}
|
|
1238
|
+
export interface AwsRoute53HostedZoneVpcDetails {
|
|
1239
|
+
Id?: string;
|
|
1240
|
+
Region?: string;
|
|
1241
|
+
}
|
|
1242
|
+
export interface AwsRoute53HostedZoneDetails {
|
|
1243
|
+
HostedZone?: AwsRoute53HostedZoneObjectDetails;
|
|
1244
|
+
Vpcs?: AwsRoute53HostedZoneVpcDetails[];
|
|
1245
|
+
NameServers?: string[];
|
|
1246
|
+
QueryLoggingConfig?: AwsRoute53QueryLoggingConfigDetails;
|
|
1247
|
+
}
|
|
1155
1248
|
export interface AwsS3AccountPublicAccessBlockDetails {
|
|
1156
1249
|
BlockPublicAcls?: boolean;
|
|
1157
1250
|
BlockPublicPolicy?: boolean;
|
|
@@ -1755,285 +1848,3 @@ export interface AwsWafv2RulesActionDetails {
|
|
|
1755
1848
|
Captcha?: AwsWafv2RulesActionCaptchaDetails;
|
|
1756
1849
|
Count?: AwsWafv2RulesActionCountDetails;
|
|
1757
1850
|
}
|
|
1758
|
-
export interface AwsWafv2VisibilityConfigDetails {
|
|
1759
|
-
CloudWatchMetricsEnabled?: boolean;
|
|
1760
|
-
MetricName?: string;
|
|
1761
|
-
SampledRequestsEnabled?: boolean;
|
|
1762
|
-
}
|
|
1763
|
-
export interface AwsWafv2RulesDetails {
|
|
1764
|
-
Action?: AwsWafv2RulesActionDetails;
|
|
1765
|
-
Name?: string;
|
|
1766
|
-
OverrideAction?: string;
|
|
1767
|
-
Priority?: number;
|
|
1768
|
-
VisibilityConfig?: AwsWafv2VisibilityConfigDetails;
|
|
1769
|
-
}
|
|
1770
|
-
export interface AwsWafv2RuleGroupDetails {
|
|
1771
|
-
Capacity?: number;
|
|
1772
|
-
Description?: string;
|
|
1773
|
-
Id?: string;
|
|
1774
|
-
Name?: string;
|
|
1775
|
-
Arn?: string;
|
|
1776
|
-
Rules?: AwsWafv2RulesDetails[];
|
|
1777
|
-
Scope?: string;
|
|
1778
|
-
VisibilityConfig?: AwsWafv2VisibilityConfigDetails;
|
|
1779
|
-
}
|
|
1780
|
-
export interface AwsWafv2WebAclCaptchaConfigImmunityTimePropertyDetails {
|
|
1781
|
-
ImmunityTime?: number;
|
|
1782
|
-
}
|
|
1783
|
-
export interface AwsWafv2WebAclCaptchaConfigDetails {
|
|
1784
|
-
ImmunityTimeProperty?: AwsWafv2WebAclCaptchaConfigImmunityTimePropertyDetails;
|
|
1785
|
-
}
|
|
1786
|
-
export interface AwsWafv2WebAclActionDetails {
|
|
1787
|
-
Allow?: AwsWafv2ActionAllowDetails;
|
|
1788
|
-
Block?: AwsWafv2ActionBlockDetails;
|
|
1789
|
-
}
|
|
1790
|
-
export interface AwsWafv2WebAclDetails {
|
|
1791
|
-
Name?: string;
|
|
1792
|
-
Arn?: string;
|
|
1793
|
-
ManagedbyFirewallManager?: boolean;
|
|
1794
|
-
Id?: string;
|
|
1795
|
-
Capacity?: number;
|
|
1796
|
-
CaptchaConfig?: AwsWafv2WebAclCaptchaConfigDetails;
|
|
1797
|
-
DefaultAction?: AwsWafv2WebAclActionDetails;
|
|
1798
|
-
Description?: string;
|
|
1799
|
-
Rules?: AwsWafv2RulesDetails[];
|
|
1800
|
-
VisibilityConfig?: AwsWafv2VisibilityConfigDetails;
|
|
1801
|
-
}
|
|
1802
|
-
export interface WafAction {
|
|
1803
|
-
Type?: string;
|
|
1804
|
-
}
|
|
1805
|
-
export interface WafExcludedRule {
|
|
1806
|
-
RuleId?: string;
|
|
1807
|
-
}
|
|
1808
|
-
export interface WafOverrideAction {
|
|
1809
|
-
Type?: string;
|
|
1810
|
-
}
|
|
1811
|
-
export interface AwsWafWebAclRule {
|
|
1812
|
-
Action?: WafAction;
|
|
1813
|
-
ExcludedRules?: WafExcludedRule[];
|
|
1814
|
-
OverrideAction?: WafOverrideAction;
|
|
1815
|
-
Priority?: number;
|
|
1816
|
-
RuleId?: string;
|
|
1817
|
-
Type?: string;
|
|
1818
|
-
}
|
|
1819
|
-
export interface AwsWafWebAclDetails {
|
|
1820
|
-
Name?: string;
|
|
1821
|
-
DefaultAction?: string;
|
|
1822
|
-
Rules?: AwsWafWebAclRule[];
|
|
1823
|
-
WebAclId?: string;
|
|
1824
|
-
}
|
|
1825
|
-
export interface AwsXrayEncryptionConfigDetails {
|
|
1826
|
-
KeyId?: string;
|
|
1827
|
-
Status?: string;
|
|
1828
|
-
Type?: string;
|
|
1829
|
-
}
|
|
1830
|
-
export interface VolumeMount {
|
|
1831
|
-
Name?: string;
|
|
1832
|
-
MountPath?: string;
|
|
1833
|
-
}
|
|
1834
|
-
export interface ContainerDetails {
|
|
1835
|
-
ContainerRuntime?: string;
|
|
1836
|
-
Name?: string;
|
|
1837
|
-
ImageId?: string;
|
|
1838
|
-
ImageName?: string;
|
|
1839
|
-
LaunchedAt?: string;
|
|
1840
|
-
VolumeMounts?: VolumeMount[];
|
|
1841
|
-
Privileged?: boolean;
|
|
1842
|
-
}
|
|
1843
|
-
export interface ResourceDetails {
|
|
1844
|
-
AwsAutoScalingAutoScalingGroup?: AwsAutoScalingAutoScalingGroupDetails;
|
|
1845
|
-
AwsCodeBuildProject?: AwsCodeBuildProjectDetails;
|
|
1846
|
-
AwsCloudFrontDistribution?: AwsCloudFrontDistributionDetails;
|
|
1847
|
-
AwsEc2Instance?: AwsEc2InstanceDetails;
|
|
1848
|
-
AwsEc2NetworkInterface?: AwsEc2NetworkInterfaceDetails;
|
|
1849
|
-
AwsEc2SecurityGroup?: AwsEc2SecurityGroupDetails;
|
|
1850
|
-
AwsEc2Volume?: AwsEc2VolumeDetails;
|
|
1851
|
-
AwsEc2Vpc?: AwsEc2VpcDetails;
|
|
1852
|
-
AwsEc2Eip?: AwsEc2EipDetails;
|
|
1853
|
-
AwsEc2Subnet?: AwsEc2SubnetDetails;
|
|
1854
|
-
AwsEc2NetworkAcl?: AwsEc2NetworkAclDetails;
|
|
1855
|
-
AwsElbv2LoadBalancer?: AwsElbv2LoadBalancerDetails;
|
|
1856
|
-
AwsElasticBeanstalkEnvironment?: AwsElasticBeanstalkEnvironmentDetails;
|
|
1857
|
-
AwsElasticsearchDomain?: AwsElasticsearchDomainDetails;
|
|
1858
|
-
AwsS3Bucket?: AwsS3BucketDetails;
|
|
1859
|
-
AwsS3AccountPublicAccessBlock?: AwsS3AccountPublicAccessBlockDetails;
|
|
1860
|
-
AwsS3Object?: AwsS3ObjectDetails;
|
|
1861
|
-
AwsSecretsManagerSecret?: AwsSecretsManagerSecretDetails;
|
|
1862
|
-
AwsIamAccessKey?: AwsIamAccessKeyDetails;
|
|
1863
|
-
AwsIamUser?: AwsIamUserDetails;
|
|
1864
|
-
AwsIamPolicy?: AwsIamPolicyDetails;
|
|
1865
|
-
AwsApiGatewayV2Stage?: AwsApiGatewayV2StageDetails;
|
|
1866
|
-
AwsApiGatewayV2Api?: AwsApiGatewayV2ApiDetails;
|
|
1867
|
-
AwsDynamoDbTable?: AwsDynamoDbTableDetails;
|
|
1868
|
-
AwsApiGatewayStage?: AwsApiGatewayStageDetails;
|
|
1869
|
-
AwsApiGatewayRestApi?: AwsApiGatewayRestApiDetails;
|
|
1870
|
-
AwsCloudTrailTrail?: AwsCloudTrailTrailDetails;
|
|
1871
|
-
AwsSsmPatchCompliance?: AwsSsmPatchComplianceDetails;
|
|
1872
|
-
AwsCertificateManagerCertificate?: AwsCertificateManagerCertificateDetails;
|
|
1873
|
-
AwsRedshiftCluster?: AwsRedshiftClusterDetails;
|
|
1874
|
-
AwsElbLoadBalancer?: AwsElbLoadBalancerDetails;
|
|
1875
|
-
AwsIamGroup?: AwsIamGroupDetails;
|
|
1876
|
-
AwsIamRole?: AwsIamRoleDetails;
|
|
1877
|
-
AwsKmsKey?: AwsKmsKeyDetails;
|
|
1878
|
-
AwsLambdaFunction?: AwsLambdaFunctionDetails;
|
|
1879
|
-
AwsLambdaLayerVersion?: AwsLambdaLayerVersionDetails;
|
|
1880
|
-
AwsRdsDbInstance?: AwsRdsDbInstanceDetails;
|
|
1881
|
-
AwsSnsTopic?: AwsSnsTopicDetails;
|
|
1882
|
-
AwsSqsQueue?: AwsSqsQueueDetails;
|
|
1883
|
-
AwsWafWebAcl?: AwsWafWebAclDetails;
|
|
1884
|
-
AwsRdsDbSnapshot?: AwsRdsDbSnapshotDetails;
|
|
1885
|
-
AwsRdsDbClusterSnapshot?: AwsRdsDbClusterSnapshotDetails;
|
|
1886
|
-
AwsRdsDbCluster?: AwsRdsDbClusterDetails;
|
|
1887
|
-
AwsEcsCluster?: AwsEcsClusterDetails;
|
|
1888
|
-
AwsEcsContainer?: AwsEcsContainerDetails;
|
|
1889
|
-
AwsEcsTaskDefinition?: AwsEcsTaskDefinitionDetails;
|
|
1890
|
-
Container?: ContainerDetails;
|
|
1891
|
-
Other?: Record<string, string>;
|
|
1892
|
-
AwsRdsEventSubscription?: AwsRdsEventSubscriptionDetails;
|
|
1893
|
-
AwsEcsService?: AwsEcsServiceDetails;
|
|
1894
|
-
AwsAutoScalingLaunchConfiguration?: AwsAutoScalingLaunchConfigurationDetails;
|
|
1895
|
-
AwsEc2VpnConnection?: AwsEc2VpnConnectionDetails;
|
|
1896
|
-
AwsEcrContainerImage?: AwsEcrContainerImageDetails;
|
|
1897
|
-
AwsOpenSearchServiceDomain?: AwsOpenSearchServiceDomainDetails;
|
|
1898
|
-
AwsEc2VpcEndpointService?: AwsEc2VpcEndpointServiceDetails;
|
|
1899
|
-
AwsXrayEncryptionConfig?: AwsXrayEncryptionConfigDetails;
|
|
1900
|
-
AwsWafRateBasedRule?: AwsWafRateBasedRuleDetails;
|
|
1901
|
-
AwsWafRegionalRateBasedRule?: AwsWafRegionalRateBasedRuleDetails;
|
|
1902
|
-
AwsEcrRepository?: AwsEcrRepositoryDetails;
|
|
1903
|
-
AwsEksCluster?: AwsEksClusterDetails;
|
|
1904
|
-
AwsNetworkFirewallFirewallPolicy?: AwsNetworkFirewallFirewallPolicyDetails;
|
|
1905
|
-
AwsNetworkFirewallFirewall?: AwsNetworkFirewallFirewallDetails;
|
|
1906
|
-
AwsNetworkFirewallRuleGroup?: AwsNetworkFirewallRuleGroupDetails;
|
|
1907
|
-
AwsRdsDbSecurityGroup?: AwsRdsDbSecurityGroupDetails;
|
|
1908
|
-
AwsKinesisStream?: AwsKinesisStreamDetails;
|
|
1909
|
-
AwsEc2TransitGateway?: AwsEc2TransitGatewayDetails;
|
|
1910
|
-
AwsEfsAccessPoint?: AwsEfsAccessPointDetails;
|
|
1911
|
-
AwsCloudFormationStack?: AwsCloudFormationStackDetails;
|
|
1912
|
-
AwsCloudWatchAlarm?: AwsCloudWatchAlarmDetails;
|
|
1913
|
-
AwsEc2VpcPeeringConnection?: AwsEc2VpcPeeringConnectionDetails;
|
|
1914
|
-
AwsWafRegionalRuleGroup?: AwsWafRegionalRuleGroupDetails;
|
|
1915
|
-
AwsWafRegionalRule?: AwsWafRegionalRuleDetails;
|
|
1916
|
-
AwsWafRegionalWebAcl?: AwsWafRegionalWebAclDetails;
|
|
1917
|
-
AwsWafRule?: AwsWafRuleDetails;
|
|
1918
|
-
AwsWafRuleGroup?: AwsWafRuleGroupDetails;
|
|
1919
|
-
AwsEcsTask?: AwsEcsTaskDetails;
|
|
1920
|
-
AwsBackupBackupVault?: AwsBackupBackupVaultDetails;
|
|
1921
|
-
AwsBackupBackupPlan?: AwsBackupBackupPlanDetails;
|
|
1922
|
-
AwsBackupRecoveryPoint?: AwsBackupRecoveryPointDetails;
|
|
1923
|
-
AwsEc2LaunchTemplate?: AwsEc2LaunchTemplateDetails;
|
|
1924
|
-
AwsSageMakerNotebookInstance?: AwsSageMakerNotebookInstanceDetails;
|
|
1925
|
-
AwsWafv2WebAcl?: AwsWafv2WebAclDetails;
|
|
1926
|
-
AwsWafv2RuleGroup?: AwsWafv2RuleGroupDetails;
|
|
1927
|
-
AwsEc2RouteTable?: AwsEc2RouteTableDetails;
|
|
1928
|
-
AwsAmazonMqBroker?: AwsAmazonMqBrokerDetails;
|
|
1929
|
-
AwsAppSyncGraphQlApi?: AwsAppSyncGraphQlApiDetails;
|
|
1930
|
-
AwsEventSchemasRegistry?: AwsEventSchemasRegistryDetails;
|
|
1931
|
-
AwsGuardDutyDetector?: AwsGuardDutyDetectorDetails;
|
|
1932
|
-
AwsStepFunctionStateMachine?: AwsStepFunctionStateMachineDetails;
|
|
1933
|
-
AwsAthenaWorkGroup?: AwsAthenaWorkGroupDetails;
|
|
1934
|
-
}
|
|
1935
|
-
export declare const Partition: {
|
|
1936
|
-
readonly AWS: "aws";
|
|
1937
|
-
readonly AWS_CN: "aws-cn";
|
|
1938
|
-
readonly AWS_US_GOV: "aws-us-gov";
|
|
1939
|
-
};
|
|
1940
|
-
export type Partition = (typeof Partition)[keyof typeof Partition];
|
|
1941
|
-
export interface Resource {
|
|
1942
|
-
Type: string | undefined;
|
|
1943
|
-
Id: string | undefined;
|
|
1944
|
-
Partition?: Partition | string;
|
|
1945
|
-
Region?: string;
|
|
1946
|
-
ResourceRole?: string;
|
|
1947
|
-
Tags?: Record<string, string>;
|
|
1948
|
-
DataClassification?: DataClassificationDetails;
|
|
1949
|
-
Details?: ResourceDetails;
|
|
1950
|
-
}
|
|
1951
|
-
export interface Severity {
|
|
1952
|
-
Product?: number;
|
|
1953
|
-
Label?: SeverityLabel | string;
|
|
1954
|
-
Normalized?: number;
|
|
1955
|
-
Original?: string;
|
|
1956
|
-
}
|
|
1957
|
-
export declare const ThreatIntelIndicatorCategory: {
|
|
1958
|
-
readonly BACKDOOR: "BACKDOOR";
|
|
1959
|
-
readonly CARD_STEALER: "CARD_STEALER";
|
|
1960
|
-
readonly COMMAND_AND_CONTROL: "COMMAND_AND_CONTROL";
|
|
1961
|
-
readonly DROP_SITE: "DROP_SITE";
|
|
1962
|
-
readonly EXPLOIT_SITE: "EXPLOIT_SITE";
|
|
1963
|
-
readonly KEYLOGGER: "KEYLOGGER";
|
|
1964
|
-
};
|
|
1965
|
-
export type ThreatIntelIndicatorCategory =
|
|
1966
|
-
(typeof ThreatIntelIndicatorCategory)[keyof typeof ThreatIntelIndicatorCategory];
|
|
1967
|
-
export declare const ThreatIntelIndicatorType: {
|
|
1968
|
-
readonly DOMAIN: "DOMAIN";
|
|
1969
|
-
readonly EMAIL_ADDRESS: "EMAIL_ADDRESS";
|
|
1970
|
-
readonly HASH_MD5: "HASH_MD5";
|
|
1971
|
-
readonly HASH_SHA1: "HASH_SHA1";
|
|
1972
|
-
readonly HASH_SHA256: "HASH_SHA256";
|
|
1973
|
-
readonly HASH_SHA512: "HASH_SHA512";
|
|
1974
|
-
readonly IPV4_ADDRESS: "IPV4_ADDRESS";
|
|
1975
|
-
readonly IPV6_ADDRESS: "IPV6_ADDRESS";
|
|
1976
|
-
readonly MUTEX: "MUTEX";
|
|
1977
|
-
readonly PROCESS: "PROCESS";
|
|
1978
|
-
readonly URL: "URL";
|
|
1979
|
-
};
|
|
1980
|
-
export type ThreatIntelIndicatorType =
|
|
1981
|
-
(typeof ThreatIntelIndicatorType)[keyof typeof ThreatIntelIndicatorType];
|
|
1982
|
-
export interface ThreatIntelIndicator {
|
|
1983
|
-
Type?: ThreatIntelIndicatorType | string;
|
|
1984
|
-
Value?: string;
|
|
1985
|
-
Category?: ThreatIntelIndicatorCategory | string;
|
|
1986
|
-
LastObservedAt?: string;
|
|
1987
|
-
Source?: string;
|
|
1988
|
-
SourceUrl?: string;
|
|
1989
|
-
}
|
|
1990
|
-
export interface FilePaths {
|
|
1991
|
-
FilePath?: string;
|
|
1992
|
-
FileName?: string;
|
|
1993
|
-
ResourceId?: string;
|
|
1994
|
-
Hash?: string;
|
|
1995
|
-
}
|
|
1996
|
-
export interface Threat {
|
|
1997
|
-
Name?: string;
|
|
1998
|
-
Severity?: string;
|
|
1999
|
-
ItemCount?: number;
|
|
2000
|
-
FilePaths?: FilePaths[];
|
|
2001
|
-
}
|
|
2002
|
-
export interface CodeVulnerabilitiesFilePath {
|
|
2003
|
-
EndLine?: number;
|
|
2004
|
-
FileName?: string;
|
|
2005
|
-
FilePath?: string;
|
|
2006
|
-
StartLine?: number;
|
|
2007
|
-
}
|
|
2008
|
-
export interface VulnerabilityCodeVulnerabilities {
|
|
2009
|
-
Cwes?: string[];
|
|
2010
|
-
FilePath?: CodeVulnerabilitiesFilePath;
|
|
2011
|
-
SourceArn?: string;
|
|
2012
|
-
}
|
|
2013
|
-
export interface Cvss {
|
|
2014
|
-
Version?: string;
|
|
2015
|
-
BaseScore?: number;
|
|
2016
|
-
BaseVector?: string;
|
|
2017
|
-
Source?: string;
|
|
2018
|
-
Adjustments?: Adjustment[];
|
|
2019
|
-
}
|
|
2020
|
-
export declare const VulnerabilityExploitAvailable: {
|
|
2021
|
-
readonly NO: "NO";
|
|
2022
|
-
readonly YES: "YES";
|
|
2023
|
-
};
|
|
2024
|
-
export type VulnerabilityExploitAvailable =
|
|
2025
|
-
(typeof VulnerabilityExploitAvailable)[keyof typeof VulnerabilityExploitAvailable];
|
|
2026
|
-
export declare const VulnerabilityFixAvailable: {
|
|
2027
|
-
readonly NO: "NO";
|
|
2028
|
-
readonly PARTIAL: "PARTIAL";
|
|
2029
|
-
readonly YES: "YES";
|
|
2030
|
-
};
|
|
2031
|
-
export type VulnerabilityFixAvailable =
|
|
2032
|
-
(typeof VulnerabilityFixAvailable)[keyof typeof VulnerabilityFixAvailable];
|
|
2033
|
-
export interface VulnerabilityVendor {
|
|
2034
|
-
Name: string | undefined;
|
|
2035
|
-
Url?: string;
|
|
2036
|
-
VendorSeverity?: string;
|
|
2037
|
-
VendorCreatedAt?: string;
|
|
2038
|
-
VendorUpdatedAt?: string;
|
|
2039
|
-
}
|