@aws-sdk/client-securityhub 3.369.0 → 3.377.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_0.js +4 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +2 -0
- package/dist-types/commands/BatchGetAutomationRulesCommand.d.ts +8 -8
- package/dist-types/commands/BatchImportFindingsCommand.d.ts +19 -0
- package/dist-types/commands/BatchUpdateAutomationRulesCommand.d.ts +8 -8
- package/dist-types/commands/CreateAutomationRuleCommand.d.ts +8 -8
- package/dist-types/commands/CreateInsightCommand.d.ts +9 -9
- package/dist-types/commands/GetFindingsCommand.d.ts +28 -9
- package/dist-types/commands/GetInsightsCommand.d.ts +9 -9
- package/dist-types/commands/UpdateFindingsCommand.d.ts +9 -9
- package/dist-types/commands/UpdateInsightCommand.d.ts +9 -9
- package/dist-types/models/models_0.d.ts +199 -183
- package/dist-types/models/models_1.d.ts +147 -779
- package/dist-types/models/models_2.d.ts +785 -10
- package/dist-types/ts3.4/models/models_0.d.ts +20 -19
- package/dist-types/ts3.4/models/models_1.d.ts +28 -159
- package/dist-types/ts3.4/models/models_2.d.ts +172 -2
- package/package.json +16 -17
|
@@ -249,7 +249,9 @@ export declare const AutoEnableStandards: {
|
|
|
249
249
|
export type AutoEnableStandards =
|
|
250
250
|
(typeof AutoEnableStandards)[keyof typeof AutoEnableStandards];
|
|
251
251
|
export declare const StringFilterComparison: {
|
|
252
|
+
readonly CONTAINS: "CONTAINS";
|
|
252
253
|
readonly EQUALS: "EQUALS";
|
|
254
|
+
readonly NOT_CONTAINS: "NOT_CONTAINS";
|
|
253
255
|
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
254
256
|
readonly PREFIX: "PREFIX";
|
|
255
257
|
readonly PREFIX_NOT_EQUALS: "PREFIX_NOT_EQUALS";
|
|
@@ -279,7 +281,9 @@ export interface DateFilter {
|
|
|
279
281
|
DateRange?: DateRange;
|
|
280
282
|
}
|
|
281
283
|
export declare const MapFilterComparison: {
|
|
284
|
+
readonly CONTAINS: "CONTAINS";
|
|
282
285
|
readonly EQUALS: "EQUALS";
|
|
286
|
+
readonly NOT_CONTAINS: "NOT_CONTAINS";
|
|
283
287
|
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
284
288
|
};
|
|
285
289
|
export type MapFilterComparison =
|
|
@@ -555,6 +559,22 @@ export interface AwsAppSyncGraphQlApiDetails {
|
|
|
555
559
|
AdditionalAuthenticationProviders?: AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails[];
|
|
556
560
|
WafWebAclArn?: string;
|
|
557
561
|
}
|
|
562
|
+
export interface AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails {
|
|
563
|
+
EncryptionOption?: string;
|
|
564
|
+
KmsKey?: string;
|
|
565
|
+
}
|
|
566
|
+
export interface AwsAthenaWorkGroupConfigurationResultConfigurationDetails {
|
|
567
|
+
EncryptionConfiguration?: AwsAthenaWorkGroupConfigurationResultConfigurationEncryptionConfigurationDetails;
|
|
568
|
+
}
|
|
569
|
+
export interface AwsAthenaWorkGroupConfigurationDetails {
|
|
570
|
+
ResultConfiguration?: AwsAthenaWorkGroupConfigurationResultConfigurationDetails;
|
|
571
|
+
}
|
|
572
|
+
export interface AwsAthenaWorkGroupDetails {
|
|
573
|
+
Name?: string;
|
|
574
|
+
Description?: string;
|
|
575
|
+
State?: string;
|
|
576
|
+
Configuration?: AwsAthenaWorkGroupConfigurationDetails;
|
|
577
|
+
}
|
|
558
578
|
export interface AwsAutoScalingAutoScalingGroupAvailabilityZonesListDetails {
|
|
559
579
|
Value?: string;
|
|
560
580
|
}
|
|
@@ -1978,22 +1998,3 @@ export interface AwsEfsAccessPointRootDirectoryCreationInfoDetails {
|
|
|
1978
1998
|
OwnerUid?: string;
|
|
1979
1999
|
Permissions?: string;
|
|
1980
2000
|
}
|
|
1981
|
-
export interface AwsEfsAccessPointRootDirectoryDetails {
|
|
1982
|
-
CreationInfo?: AwsEfsAccessPointRootDirectoryCreationInfoDetails;
|
|
1983
|
-
Path?: string;
|
|
1984
|
-
}
|
|
1985
|
-
export interface AwsEfsAccessPointDetails {
|
|
1986
|
-
AccessPointId?: string;
|
|
1987
|
-
Arn?: string;
|
|
1988
|
-
ClientToken?: string;
|
|
1989
|
-
FileSystemId?: string;
|
|
1990
|
-
PosixUser?: AwsEfsAccessPointPosixUserDetails;
|
|
1991
|
-
RootDirectory?: AwsEfsAccessPointRootDirectoryDetails;
|
|
1992
|
-
}
|
|
1993
|
-
export interface AwsEksClusterLoggingClusterLoggingDetails {
|
|
1994
|
-
Enabled?: boolean;
|
|
1995
|
-
Types?: string[];
|
|
1996
|
-
}
|
|
1997
|
-
export interface AwsEksClusterLoggingDetails {
|
|
1998
|
-
ClusterLogging?: AwsEksClusterLoggingClusterLoggingDetails[];
|
|
1999
|
-
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import {
|
|
2
|
-
Action,
|
|
3
2
|
Adjustment,
|
|
4
3
|
AssociatedStandard,
|
|
5
4
|
AvailabilityZone,
|
|
@@ -9,6 +8,7 @@ import {
|
|
|
9
8
|
AwsApiGatewayV2ApiDetails,
|
|
10
9
|
AwsApiGatewayV2StageDetails,
|
|
11
10
|
AwsAppSyncGraphQlApiDetails,
|
|
11
|
+
AwsAthenaWorkGroupDetails,
|
|
12
12
|
AwsAutoScalingAutoScalingGroupDetails,
|
|
13
13
|
AwsAutoScalingLaunchConfigurationDetails,
|
|
14
14
|
AwsBackupBackupPlanDetails,
|
|
@@ -42,17 +42,31 @@ import {
|
|
|
42
42
|
AwsEcsServiceDetails,
|
|
43
43
|
AwsEcsTaskDefinitionDetails,
|
|
44
44
|
AwsEcsTaskDetails,
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
DateFilter,
|
|
48
|
-
MapFilter,
|
|
49
|
-
NumberFilter,
|
|
45
|
+
AwsEfsAccessPointPosixUserDetails,
|
|
46
|
+
AwsEfsAccessPointRootDirectoryCreationInfoDetails,
|
|
50
47
|
RelatedFinding,
|
|
51
48
|
SeverityLabel,
|
|
52
|
-
StringFilter,
|
|
53
|
-
VerificationState,
|
|
54
49
|
WorkflowStatus,
|
|
55
50
|
} from "./models_0";
|
|
51
|
+
export interface AwsEfsAccessPointRootDirectoryDetails {
|
|
52
|
+
CreationInfo?: AwsEfsAccessPointRootDirectoryCreationInfoDetails;
|
|
53
|
+
Path?: string;
|
|
54
|
+
}
|
|
55
|
+
export interface AwsEfsAccessPointDetails {
|
|
56
|
+
AccessPointId?: string;
|
|
57
|
+
Arn?: string;
|
|
58
|
+
ClientToken?: string;
|
|
59
|
+
FileSystemId?: string;
|
|
60
|
+
PosixUser?: AwsEfsAccessPointPosixUserDetails;
|
|
61
|
+
RootDirectory?: AwsEfsAccessPointRootDirectoryDetails;
|
|
62
|
+
}
|
|
63
|
+
export interface AwsEksClusterLoggingClusterLoggingDetails {
|
|
64
|
+
Enabled?: boolean;
|
|
65
|
+
Types?: string[];
|
|
66
|
+
}
|
|
67
|
+
export interface AwsEksClusterLoggingDetails {
|
|
68
|
+
ClusterLogging?: AwsEksClusterLoggingClusterLoggingDetails[];
|
|
69
|
+
}
|
|
56
70
|
export interface AwsEksClusterResourcesVpcConfigDetails {
|
|
57
71
|
SecurityGroupIds?: string[];
|
|
58
72
|
SubnetIds?: string[];
|
|
@@ -800,6 +814,10 @@ export interface AwsRdsDbClusterDetails {
|
|
|
800
814
|
DbClusterMembers?: AwsRdsDbClusterMember[];
|
|
801
815
|
IamDatabaseAuthenticationEnabled?: boolean;
|
|
802
816
|
}
|
|
817
|
+
export interface AwsRdsDbClusterSnapshotDbClusterSnapshotAttribute {
|
|
818
|
+
AttributeName?: string;
|
|
819
|
+
AttributeValues?: string[];
|
|
820
|
+
}
|
|
803
821
|
export interface AwsRdsDbClusterSnapshotDetails {
|
|
804
822
|
AvailabilityZones?: string[];
|
|
805
823
|
SnapshotCreateTime?: string;
|
|
@@ -819,6 +837,7 @@ export interface AwsRdsDbClusterSnapshotDetails {
|
|
|
819
837
|
DbClusterIdentifier?: string;
|
|
820
838
|
DbClusterSnapshotIdentifier?: string;
|
|
821
839
|
IamDatabaseAuthenticationEnabled?: boolean;
|
|
840
|
+
DbClusterSnapshotAttributes?: AwsRdsDbClusterSnapshotDbClusterSnapshotAttribute[];
|
|
822
841
|
}
|
|
823
842
|
export interface AwsRdsDbInstanceAssociatedRole {
|
|
824
843
|
RoleArn?: string;
|
|
@@ -1907,6 +1926,7 @@ export interface ResourceDetails {
|
|
|
1907
1926
|
AwsEventSchemasRegistry?: AwsEventSchemasRegistryDetails;
|
|
1908
1927
|
AwsGuardDutyDetector?: AwsGuardDutyDetectorDetails;
|
|
1909
1928
|
AwsStepFunctionStateMachine?: AwsStepFunctionStateMachineDetails;
|
|
1929
|
+
AwsAthenaWorkGroup?: AwsAthenaWorkGroupDetails;
|
|
1910
1930
|
}
|
|
1911
1931
|
export declare const Partition: {
|
|
1912
1932
|
readonly AWS: "aws";
|
|
@@ -2029,154 +2049,3 @@ export declare const WorkflowState: {
|
|
|
2029
2049
|
readonly RESOLVED: "RESOLVED";
|
|
2030
2050
|
};
|
|
2031
2051
|
export type WorkflowState = (typeof WorkflowState)[keyof typeof WorkflowState];
|
|
2032
|
-
export interface AwsSecurityFinding {
|
|
2033
|
-
SchemaVersion: string | undefined;
|
|
2034
|
-
Id: string | undefined;
|
|
2035
|
-
ProductArn: string | undefined;
|
|
2036
|
-
ProductName?: string;
|
|
2037
|
-
CompanyName?: string;
|
|
2038
|
-
Region?: string;
|
|
2039
|
-
GeneratorId: string | undefined;
|
|
2040
|
-
AwsAccountId: string | undefined;
|
|
2041
|
-
Types?: string[];
|
|
2042
|
-
FirstObservedAt?: string;
|
|
2043
|
-
LastObservedAt?: string;
|
|
2044
|
-
CreatedAt: string | undefined;
|
|
2045
|
-
UpdatedAt: string | undefined;
|
|
2046
|
-
Severity?: Severity;
|
|
2047
|
-
Confidence?: number;
|
|
2048
|
-
Criticality?: number;
|
|
2049
|
-
Title: string | undefined;
|
|
2050
|
-
Description: string | undefined;
|
|
2051
|
-
Remediation?: Remediation;
|
|
2052
|
-
SourceUrl?: string;
|
|
2053
|
-
ProductFields?: Record<string, string>;
|
|
2054
|
-
UserDefinedFields?: Record<string, string>;
|
|
2055
|
-
Malware?: Malware[];
|
|
2056
|
-
Network?: Network;
|
|
2057
|
-
NetworkPath?: NetworkPathComponent[];
|
|
2058
|
-
Process?: ProcessDetails;
|
|
2059
|
-
Threats?: Threat[];
|
|
2060
|
-
ThreatIntelIndicators?: ThreatIntelIndicator[];
|
|
2061
|
-
Resources: Resource[] | undefined;
|
|
2062
|
-
Compliance?: Compliance;
|
|
2063
|
-
VerificationState?: VerificationState | string;
|
|
2064
|
-
WorkflowState?: WorkflowState | string;
|
|
2065
|
-
Workflow?: Workflow;
|
|
2066
|
-
RecordState?: RecordState | string;
|
|
2067
|
-
RelatedFindings?: RelatedFinding[];
|
|
2068
|
-
Note?: Note;
|
|
2069
|
-
Vulnerabilities?: Vulnerability[];
|
|
2070
|
-
PatchSummary?: PatchSummary;
|
|
2071
|
-
Action?: Action;
|
|
2072
|
-
FindingProviderFields?: FindingProviderFields;
|
|
2073
|
-
Sample?: boolean;
|
|
2074
|
-
}
|
|
2075
|
-
export interface KeywordFilter {
|
|
2076
|
-
Value?: string;
|
|
2077
|
-
}
|
|
2078
|
-
export interface IpFilter {
|
|
2079
|
-
Cidr?: string;
|
|
2080
|
-
}
|
|
2081
|
-
export interface BooleanFilter {
|
|
2082
|
-
Value?: boolean;
|
|
2083
|
-
}
|
|
2084
|
-
export interface AwsSecurityFindingFilters {
|
|
2085
|
-
ProductArn?: StringFilter[];
|
|
2086
|
-
AwsAccountId?: StringFilter[];
|
|
2087
|
-
Id?: StringFilter[];
|
|
2088
|
-
GeneratorId?: StringFilter[];
|
|
2089
|
-
Region?: StringFilter[];
|
|
2090
|
-
Type?: StringFilter[];
|
|
2091
|
-
FirstObservedAt?: DateFilter[];
|
|
2092
|
-
LastObservedAt?: DateFilter[];
|
|
2093
|
-
CreatedAt?: DateFilter[];
|
|
2094
|
-
UpdatedAt?: DateFilter[];
|
|
2095
|
-
SeverityProduct?: NumberFilter[];
|
|
2096
|
-
SeverityNormalized?: NumberFilter[];
|
|
2097
|
-
SeverityLabel?: StringFilter[];
|
|
2098
|
-
Confidence?: NumberFilter[];
|
|
2099
|
-
Criticality?: NumberFilter[];
|
|
2100
|
-
Title?: StringFilter[];
|
|
2101
|
-
Description?: StringFilter[];
|
|
2102
|
-
RecommendationText?: StringFilter[];
|
|
2103
|
-
SourceUrl?: StringFilter[];
|
|
2104
|
-
ProductFields?: MapFilter[];
|
|
2105
|
-
ProductName?: StringFilter[];
|
|
2106
|
-
CompanyName?: StringFilter[];
|
|
2107
|
-
UserDefinedFields?: MapFilter[];
|
|
2108
|
-
MalwareName?: StringFilter[];
|
|
2109
|
-
MalwareType?: StringFilter[];
|
|
2110
|
-
MalwarePath?: StringFilter[];
|
|
2111
|
-
MalwareState?: StringFilter[];
|
|
2112
|
-
NetworkDirection?: StringFilter[];
|
|
2113
|
-
NetworkProtocol?: StringFilter[];
|
|
2114
|
-
NetworkSourceIpV4?: IpFilter[];
|
|
2115
|
-
NetworkSourceIpV6?: IpFilter[];
|
|
2116
|
-
NetworkSourcePort?: NumberFilter[];
|
|
2117
|
-
NetworkSourceDomain?: StringFilter[];
|
|
2118
|
-
NetworkSourceMac?: StringFilter[];
|
|
2119
|
-
NetworkDestinationIpV4?: IpFilter[];
|
|
2120
|
-
NetworkDestinationIpV6?: IpFilter[];
|
|
2121
|
-
NetworkDestinationPort?: NumberFilter[];
|
|
2122
|
-
NetworkDestinationDomain?: StringFilter[];
|
|
2123
|
-
ProcessName?: StringFilter[];
|
|
2124
|
-
ProcessPath?: StringFilter[];
|
|
2125
|
-
ProcessPid?: NumberFilter[];
|
|
2126
|
-
ProcessParentPid?: NumberFilter[];
|
|
2127
|
-
ProcessLaunchedAt?: DateFilter[];
|
|
2128
|
-
ProcessTerminatedAt?: DateFilter[];
|
|
2129
|
-
ThreatIntelIndicatorType?: StringFilter[];
|
|
2130
|
-
ThreatIntelIndicatorValue?: StringFilter[];
|
|
2131
|
-
ThreatIntelIndicatorCategory?: StringFilter[];
|
|
2132
|
-
ThreatIntelIndicatorLastObservedAt?: DateFilter[];
|
|
2133
|
-
ThreatIntelIndicatorSource?: StringFilter[];
|
|
2134
|
-
ThreatIntelIndicatorSourceUrl?: StringFilter[];
|
|
2135
|
-
ResourceType?: StringFilter[];
|
|
2136
|
-
ResourceId?: StringFilter[];
|
|
2137
|
-
ResourcePartition?: StringFilter[];
|
|
2138
|
-
ResourceRegion?: StringFilter[];
|
|
2139
|
-
ResourceTags?: MapFilter[];
|
|
2140
|
-
ResourceAwsEc2InstanceType?: StringFilter[];
|
|
2141
|
-
ResourceAwsEc2InstanceImageId?: StringFilter[];
|
|
2142
|
-
ResourceAwsEc2InstanceIpV4Addresses?: IpFilter[];
|
|
2143
|
-
ResourceAwsEc2InstanceIpV6Addresses?: IpFilter[];
|
|
2144
|
-
ResourceAwsEc2InstanceKeyName?: StringFilter[];
|
|
2145
|
-
ResourceAwsEc2InstanceIamInstanceProfileArn?: StringFilter[];
|
|
2146
|
-
ResourceAwsEc2InstanceVpcId?: StringFilter[];
|
|
2147
|
-
ResourceAwsEc2InstanceSubnetId?: StringFilter[];
|
|
2148
|
-
ResourceAwsEc2InstanceLaunchedAt?: DateFilter[];
|
|
2149
|
-
ResourceAwsS3BucketOwnerId?: StringFilter[];
|
|
2150
|
-
ResourceAwsS3BucketOwnerName?: StringFilter[];
|
|
2151
|
-
ResourceAwsIamAccessKeyUserName?: StringFilter[];
|
|
2152
|
-
ResourceAwsIamAccessKeyPrincipalName?: StringFilter[];
|
|
2153
|
-
ResourceAwsIamAccessKeyStatus?: StringFilter[];
|
|
2154
|
-
ResourceAwsIamAccessKeyCreatedAt?: DateFilter[];
|
|
2155
|
-
ResourceAwsIamUserUserName?: StringFilter[];
|
|
2156
|
-
ResourceContainerName?: StringFilter[];
|
|
2157
|
-
ResourceContainerImageId?: StringFilter[];
|
|
2158
|
-
ResourceContainerImageName?: StringFilter[];
|
|
2159
|
-
ResourceContainerLaunchedAt?: DateFilter[];
|
|
2160
|
-
ResourceDetailsOther?: MapFilter[];
|
|
2161
|
-
ComplianceStatus?: StringFilter[];
|
|
2162
|
-
VerificationState?: StringFilter[];
|
|
2163
|
-
WorkflowState?: StringFilter[];
|
|
2164
|
-
WorkflowStatus?: StringFilter[];
|
|
2165
|
-
RecordState?: StringFilter[];
|
|
2166
|
-
RelatedFindingsProductArn?: StringFilter[];
|
|
2167
|
-
RelatedFindingsId?: StringFilter[];
|
|
2168
|
-
NoteText?: StringFilter[];
|
|
2169
|
-
NoteUpdatedAt?: DateFilter[];
|
|
2170
|
-
NoteUpdatedBy?: StringFilter[];
|
|
2171
|
-
Keyword?: KeywordFilter[];
|
|
2172
|
-
FindingProviderFieldsConfidence?: NumberFilter[];
|
|
2173
|
-
FindingProviderFieldsCriticality?: NumberFilter[];
|
|
2174
|
-
FindingProviderFieldsRelatedFindingsId?: StringFilter[];
|
|
2175
|
-
FindingProviderFieldsRelatedFindingsProductArn?: StringFilter[];
|
|
2176
|
-
FindingProviderFieldsSeverityLabel?: StringFilter[];
|
|
2177
|
-
FindingProviderFieldsSeverityOriginal?: StringFilter[];
|
|
2178
|
-
FindingProviderFieldsTypes?: StringFilter[];
|
|
2179
|
-
Sample?: BooleanFilter[];
|
|
2180
|
-
ComplianceSecurityControlId?: StringFilter[];
|
|
2181
|
-
ComplianceAssociatedStandardsId?: StringFilter[];
|
|
2182
|
-
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import {
|
|
3
3
|
AccountDetails,
|
|
4
|
+
Action,
|
|
4
5
|
ActionTarget,
|
|
5
6
|
AdminAccount,
|
|
6
7
|
AssociationStatus,
|
|
@@ -9,19 +10,188 @@ import {
|
|
|
9
10
|
AutomationRulesConfig,
|
|
10
11
|
AutomationRulesFindingFilters,
|
|
11
12
|
AutomationRulesMetadata,
|
|
13
|
+
DateFilter,
|
|
14
|
+
MapFilter,
|
|
12
15
|
NoteUpdate,
|
|
16
|
+
NumberFilter,
|
|
13
17
|
RelatedFinding,
|
|
14
18
|
RuleStatus,
|
|
15
19
|
SeverityUpdate,
|
|
20
|
+
StringFilter,
|
|
16
21
|
VerificationState,
|
|
17
22
|
WorkflowUpdate,
|
|
18
23
|
} from "./models_0";
|
|
19
24
|
import {
|
|
20
|
-
|
|
21
|
-
|
|
25
|
+
Compliance,
|
|
26
|
+
FindingProviderFields,
|
|
27
|
+
Malware,
|
|
28
|
+
Network,
|
|
29
|
+
NetworkPathComponent,
|
|
30
|
+
Note,
|
|
31
|
+
PatchSummary,
|
|
32
|
+
ProcessDetails,
|
|
22
33
|
RecordState,
|
|
34
|
+
Remediation,
|
|
35
|
+
Resource,
|
|
36
|
+
Severity,
|
|
37
|
+
Threat,
|
|
38
|
+
ThreatIntelIndicator,
|
|
39
|
+
Vulnerability,
|
|
40
|
+
Workflow,
|
|
41
|
+
WorkflowState,
|
|
23
42
|
} from "./models_1";
|
|
24
43
|
import { SecurityHubServiceException as __BaseException } from "./SecurityHubServiceException";
|
|
44
|
+
export interface AwsSecurityFinding {
|
|
45
|
+
SchemaVersion: string | undefined;
|
|
46
|
+
Id: string | undefined;
|
|
47
|
+
ProductArn: string | undefined;
|
|
48
|
+
ProductName?: string;
|
|
49
|
+
CompanyName?: string;
|
|
50
|
+
Region?: string;
|
|
51
|
+
GeneratorId: string | undefined;
|
|
52
|
+
AwsAccountId: string | undefined;
|
|
53
|
+
Types?: string[];
|
|
54
|
+
FirstObservedAt?: string;
|
|
55
|
+
LastObservedAt?: string;
|
|
56
|
+
CreatedAt: string | undefined;
|
|
57
|
+
UpdatedAt: string | undefined;
|
|
58
|
+
Severity?: Severity;
|
|
59
|
+
Confidence?: number;
|
|
60
|
+
Criticality?: number;
|
|
61
|
+
Title: string | undefined;
|
|
62
|
+
Description: string | undefined;
|
|
63
|
+
Remediation?: Remediation;
|
|
64
|
+
SourceUrl?: string;
|
|
65
|
+
ProductFields?: Record<string, string>;
|
|
66
|
+
UserDefinedFields?: Record<string, string>;
|
|
67
|
+
Malware?: Malware[];
|
|
68
|
+
Network?: Network;
|
|
69
|
+
NetworkPath?: NetworkPathComponent[];
|
|
70
|
+
Process?: ProcessDetails;
|
|
71
|
+
Threats?: Threat[];
|
|
72
|
+
ThreatIntelIndicators?: ThreatIntelIndicator[];
|
|
73
|
+
Resources: Resource[] | undefined;
|
|
74
|
+
Compliance?: Compliance;
|
|
75
|
+
VerificationState?: VerificationState | string;
|
|
76
|
+
WorkflowState?: WorkflowState | string;
|
|
77
|
+
Workflow?: Workflow;
|
|
78
|
+
RecordState?: RecordState | string;
|
|
79
|
+
RelatedFindings?: RelatedFinding[];
|
|
80
|
+
Note?: Note;
|
|
81
|
+
Vulnerabilities?: Vulnerability[];
|
|
82
|
+
PatchSummary?: PatchSummary;
|
|
83
|
+
Action?: Action;
|
|
84
|
+
FindingProviderFields?: FindingProviderFields;
|
|
85
|
+
Sample?: boolean;
|
|
86
|
+
}
|
|
87
|
+
export interface KeywordFilter {
|
|
88
|
+
Value?: string;
|
|
89
|
+
}
|
|
90
|
+
export interface IpFilter {
|
|
91
|
+
Cidr?: string;
|
|
92
|
+
}
|
|
93
|
+
export interface BooleanFilter {
|
|
94
|
+
Value?: boolean;
|
|
95
|
+
}
|
|
96
|
+
export interface AwsSecurityFindingFilters {
|
|
97
|
+
ProductArn?: StringFilter[];
|
|
98
|
+
AwsAccountId?: StringFilter[];
|
|
99
|
+
Id?: StringFilter[];
|
|
100
|
+
GeneratorId?: StringFilter[];
|
|
101
|
+
Region?: StringFilter[];
|
|
102
|
+
Type?: StringFilter[];
|
|
103
|
+
FirstObservedAt?: DateFilter[];
|
|
104
|
+
LastObservedAt?: DateFilter[];
|
|
105
|
+
CreatedAt?: DateFilter[];
|
|
106
|
+
UpdatedAt?: DateFilter[];
|
|
107
|
+
SeverityProduct?: NumberFilter[];
|
|
108
|
+
SeverityNormalized?: NumberFilter[];
|
|
109
|
+
SeverityLabel?: StringFilter[];
|
|
110
|
+
Confidence?: NumberFilter[];
|
|
111
|
+
Criticality?: NumberFilter[];
|
|
112
|
+
Title?: StringFilter[];
|
|
113
|
+
Description?: StringFilter[];
|
|
114
|
+
RecommendationText?: StringFilter[];
|
|
115
|
+
SourceUrl?: StringFilter[];
|
|
116
|
+
ProductFields?: MapFilter[];
|
|
117
|
+
ProductName?: StringFilter[];
|
|
118
|
+
CompanyName?: StringFilter[];
|
|
119
|
+
UserDefinedFields?: MapFilter[];
|
|
120
|
+
MalwareName?: StringFilter[];
|
|
121
|
+
MalwareType?: StringFilter[];
|
|
122
|
+
MalwarePath?: StringFilter[];
|
|
123
|
+
MalwareState?: StringFilter[];
|
|
124
|
+
NetworkDirection?: StringFilter[];
|
|
125
|
+
NetworkProtocol?: StringFilter[];
|
|
126
|
+
NetworkSourceIpV4?: IpFilter[];
|
|
127
|
+
NetworkSourceIpV6?: IpFilter[];
|
|
128
|
+
NetworkSourcePort?: NumberFilter[];
|
|
129
|
+
NetworkSourceDomain?: StringFilter[];
|
|
130
|
+
NetworkSourceMac?: StringFilter[];
|
|
131
|
+
NetworkDestinationIpV4?: IpFilter[];
|
|
132
|
+
NetworkDestinationIpV6?: IpFilter[];
|
|
133
|
+
NetworkDestinationPort?: NumberFilter[];
|
|
134
|
+
NetworkDestinationDomain?: StringFilter[];
|
|
135
|
+
ProcessName?: StringFilter[];
|
|
136
|
+
ProcessPath?: StringFilter[];
|
|
137
|
+
ProcessPid?: NumberFilter[];
|
|
138
|
+
ProcessParentPid?: NumberFilter[];
|
|
139
|
+
ProcessLaunchedAt?: DateFilter[];
|
|
140
|
+
ProcessTerminatedAt?: DateFilter[];
|
|
141
|
+
ThreatIntelIndicatorType?: StringFilter[];
|
|
142
|
+
ThreatIntelIndicatorValue?: StringFilter[];
|
|
143
|
+
ThreatIntelIndicatorCategory?: StringFilter[];
|
|
144
|
+
ThreatIntelIndicatorLastObservedAt?: DateFilter[];
|
|
145
|
+
ThreatIntelIndicatorSource?: StringFilter[];
|
|
146
|
+
ThreatIntelIndicatorSourceUrl?: StringFilter[];
|
|
147
|
+
ResourceType?: StringFilter[];
|
|
148
|
+
ResourceId?: StringFilter[];
|
|
149
|
+
ResourcePartition?: StringFilter[];
|
|
150
|
+
ResourceRegion?: StringFilter[];
|
|
151
|
+
ResourceTags?: MapFilter[];
|
|
152
|
+
ResourceAwsEc2InstanceType?: StringFilter[];
|
|
153
|
+
ResourceAwsEc2InstanceImageId?: StringFilter[];
|
|
154
|
+
ResourceAwsEc2InstanceIpV4Addresses?: IpFilter[];
|
|
155
|
+
ResourceAwsEc2InstanceIpV6Addresses?: IpFilter[];
|
|
156
|
+
ResourceAwsEc2InstanceKeyName?: StringFilter[];
|
|
157
|
+
ResourceAwsEc2InstanceIamInstanceProfileArn?: StringFilter[];
|
|
158
|
+
ResourceAwsEc2InstanceVpcId?: StringFilter[];
|
|
159
|
+
ResourceAwsEc2InstanceSubnetId?: StringFilter[];
|
|
160
|
+
ResourceAwsEc2InstanceLaunchedAt?: DateFilter[];
|
|
161
|
+
ResourceAwsS3BucketOwnerId?: StringFilter[];
|
|
162
|
+
ResourceAwsS3BucketOwnerName?: StringFilter[];
|
|
163
|
+
ResourceAwsIamAccessKeyUserName?: StringFilter[];
|
|
164
|
+
ResourceAwsIamAccessKeyPrincipalName?: StringFilter[];
|
|
165
|
+
ResourceAwsIamAccessKeyStatus?: StringFilter[];
|
|
166
|
+
ResourceAwsIamAccessKeyCreatedAt?: DateFilter[];
|
|
167
|
+
ResourceAwsIamUserUserName?: StringFilter[];
|
|
168
|
+
ResourceContainerName?: StringFilter[];
|
|
169
|
+
ResourceContainerImageId?: StringFilter[];
|
|
170
|
+
ResourceContainerImageName?: StringFilter[];
|
|
171
|
+
ResourceContainerLaunchedAt?: DateFilter[];
|
|
172
|
+
ResourceDetailsOther?: MapFilter[];
|
|
173
|
+
ComplianceStatus?: StringFilter[];
|
|
174
|
+
VerificationState?: StringFilter[];
|
|
175
|
+
WorkflowState?: StringFilter[];
|
|
176
|
+
WorkflowStatus?: StringFilter[];
|
|
177
|
+
RecordState?: StringFilter[];
|
|
178
|
+
RelatedFindingsProductArn?: StringFilter[];
|
|
179
|
+
RelatedFindingsId?: StringFilter[];
|
|
180
|
+
NoteText?: StringFilter[];
|
|
181
|
+
NoteUpdatedAt?: DateFilter[];
|
|
182
|
+
NoteUpdatedBy?: StringFilter[];
|
|
183
|
+
Keyword?: KeywordFilter[];
|
|
184
|
+
FindingProviderFieldsConfidence?: NumberFilter[];
|
|
185
|
+
FindingProviderFieldsCriticality?: NumberFilter[];
|
|
186
|
+
FindingProviderFieldsRelatedFindingsId?: StringFilter[];
|
|
187
|
+
FindingProviderFieldsRelatedFindingsProductArn?: StringFilter[];
|
|
188
|
+
FindingProviderFieldsSeverityLabel?: StringFilter[];
|
|
189
|
+
FindingProviderFieldsSeverityOriginal?: StringFilter[];
|
|
190
|
+
FindingProviderFieldsTypes?: StringFilter[];
|
|
191
|
+
Sample?: BooleanFilter[];
|
|
192
|
+
ComplianceSecurityControlId?: StringFilter[];
|
|
193
|
+
ComplianceAssociatedStandardsId?: StringFilter[];
|
|
194
|
+
}
|
|
25
195
|
export interface AwsSecurityFindingIdentifier {
|
|
26
196
|
Id: string | undefined;
|
|
27
197
|
ProductArn: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-securityhub",
|
|
3
3
|
"description": "AWS SDK for JavaScript Securityhub Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.377.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,29 +21,29 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.377.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.370.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.370.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.370.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.370.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.370.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.370.0",
|
|
31
|
+
"@aws-sdk/types": "3.370.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.370.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.370.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.370.0",
|
|
35
35
|
"@smithy/config-resolver": "^1.0.1",
|
|
36
36
|
"@smithy/fetch-http-handler": "^1.0.1",
|
|
37
37
|
"@smithy/hash-node": "^1.0.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^1.0.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^1.0.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^1.0.
|
|
41
|
-
"@smithy/middleware-retry": "^1.0.
|
|
40
|
+
"@smithy/middleware-endpoint": "^1.0.2",
|
|
41
|
+
"@smithy/middleware-retry": "^1.0.3",
|
|
42
42
|
"@smithy/middleware-serde": "^1.0.1",
|
|
43
43
|
"@smithy/middleware-stack": "^1.0.1",
|
|
44
44
|
"@smithy/node-config-provider": "^1.0.1",
|
|
45
45
|
"@smithy/node-http-handler": "^1.0.2",
|
|
46
|
-
"@smithy/protocol-http": "^1.0
|
|
46
|
+
"@smithy/protocol-http": "^1.1.0",
|
|
47
47
|
"@smithy/smithy-client": "^1.0.3",
|
|
48
48
|
"@smithy/types": "^1.1.0",
|
|
49
49
|
"@smithy/url-parser": "^1.0.1",
|
|
@@ -52,12 +52,11 @@
|
|
|
52
52
|
"@smithy/util-body-length-node": "^1.0.1",
|
|
53
53
|
"@smithy/util-defaults-mode-browser": "^1.0.1",
|
|
54
54
|
"@smithy/util-defaults-mode-node": "^1.0.1",
|
|
55
|
-
"@smithy/util-retry": "^1.0.
|
|
55
|
+
"@smithy/util-retry": "^1.0.3",
|
|
56
56
|
"@smithy/util-utf8": "^1.0.1",
|
|
57
57
|
"tslib": "^2.5.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.310.0",
|
|
61
60
|
"@smithy/service-client-documentation-generator": "^1.0.1",
|
|
62
61
|
"@tsconfig/node14": "1.0.3",
|
|
63
62
|
"@types/node": "^14.14.31",
|