@aws-sdk/client-securityhub 3.341.0 → 3.342.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 -37
- package/dist-cjs/models/models_2.js +37 -1
- package/dist-cjs/protocols/Aws_restJson1.js +12 -2
- 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 +11 -1
- package/dist-types/commands/BatchEnableStandardsCommand.d.ts +3 -3
- package/dist-types/commands/BatchGetSecurityControlsCommand.d.ts +39 -1
- package/dist-types/commands/BatchGetStandardsControlAssociationsCommand.d.ts +51 -1
- package/dist-types/commands/BatchImportFindingsCommand.d.ts +172 -1
- package/dist-types/commands/BatchUpdateFindingsCommand.d.ts +1 -1
- package/dist-types/commands/BatchUpdateStandardsControlAssociationsCommand.d.ts +41 -1
- package/dist-types/commands/CreateActionTargetCommand.d.ts +1 -1
- package/dist-types/commands/CreateFindingAggregatorCommand.d.ts +1 -1
- package/dist-types/commands/GetFindingsCommand.d.ts +171 -0
- package/dist-types/models/models_0.d.ts +551 -367
- package/dist-types/models/models_1.d.ts +6083 -6124
- package/dist-types/models/models_2.d.ts +841 -3
- package/dist-types/ts3.4/commands/BatchGetSecurityControlsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/BatchGetStandardsControlAssociationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/BatchImportFindingsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/BatchUpdateFindingsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/BatchUpdateStandardsControlAssociationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateActionTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateFindingAggregatorCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +98 -84
- package/dist-types/ts3.4/models/models_1.d.ts +175 -177
- package/dist-types/ts3.4/models/models_2.d.ts +178 -4
- package/package.json +28 -28
|
@@ -192,6 +192,62 @@ export interface AvailabilityZone {
|
|
|
192
192
|
ZoneName?: string;
|
|
193
193
|
SubnetId?: string;
|
|
194
194
|
}
|
|
195
|
+
export interface AwsAmazonMqBrokerEncryptionOptionsDetails {
|
|
196
|
+
KmsKeyId?: string;
|
|
197
|
+
UseAwsOwnedKey?: boolean;
|
|
198
|
+
}
|
|
199
|
+
export interface AwsAmazonMqBrokerLdapServerMetadataDetails {
|
|
200
|
+
Hosts?: string[];
|
|
201
|
+
RoleBase?: string;
|
|
202
|
+
RoleName?: string;
|
|
203
|
+
RoleSearchMatching?: string;
|
|
204
|
+
RoleSearchSubtree?: boolean;
|
|
205
|
+
ServiceAccountUsername?: string;
|
|
206
|
+
UserBase?: string;
|
|
207
|
+
UserRoleName?: string;
|
|
208
|
+
UserSearchMatching?: string;
|
|
209
|
+
UserSearchSubtree?: boolean;
|
|
210
|
+
}
|
|
211
|
+
export interface AwsAmazonMqBrokerLogsPendingDetails {
|
|
212
|
+
Audit?: boolean;
|
|
213
|
+
General?: boolean;
|
|
214
|
+
}
|
|
215
|
+
export interface AwsAmazonMqBrokerLogsDetails {
|
|
216
|
+
Audit?: boolean;
|
|
217
|
+
General?: boolean;
|
|
218
|
+
AuditLogGroup?: string;
|
|
219
|
+
GeneralLogGroup?: string;
|
|
220
|
+
Pending?: AwsAmazonMqBrokerLogsPendingDetails;
|
|
221
|
+
}
|
|
222
|
+
export interface AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails {
|
|
223
|
+
DayOfWeek?: string;
|
|
224
|
+
TimeOfDay?: string;
|
|
225
|
+
TimeZone?: string;
|
|
226
|
+
}
|
|
227
|
+
export interface AwsAmazonMqBrokerUsersDetails {
|
|
228
|
+
PendingChange?: string;
|
|
229
|
+
Username?: string;
|
|
230
|
+
}
|
|
231
|
+
export interface AwsAmazonMqBrokerDetails {
|
|
232
|
+
AuthenticationStrategy?: string;
|
|
233
|
+
AutoMinorVersionUpgrade?: boolean;
|
|
234
|
+
BrokerArn?: string;
|
|
235
|
+
BrokerName?: string;
|
|
236
|
+
DeploymentMode?: string;
|
|
237
|
+
EncryptionOptions?: AwsAmazonMqBrokerEncryptionOptionsDetails;
|
|
238
|
+
EngineType?: string;
|
|
239
|
+
EngineVersion?: string;
|
|
240
|
+
HostInstanceType?: string;
|
|
241
|
+
BrokerId?: string;
|
|
242
|
+
LdapServerMetadata?: AwsAmazonMqBrokerLdapServerMetadataDetails;
|
|
243
|
+
Logs?: AwsAmazonMqBrokerLogsDetails;
|
|
244
|
+
MaintenanceWindowStartTime?: AwsAmazonMqBrokerMaintenanceWindowStartTimeDetails;
|
|
245
|
+
PubliclyAccessible?: boolean;
|
|
246
|
+
SecurityGroups?: string[];
|
|
247
|
+
StorageType?: string;
|
|
248
|
+
SubnetIds?: string[];
|
|
249
|
+
Users?: AwsAmazonMqBrokerUsersDetails[];
|
|
250
|
+
}
|
|
195
251
|
export interface AwsApiGatewayAccessLogSettings {
|
|
196
252
|
Format?: string;
|
|
197
253
|
DestinationArn?: string;
|
|
@@ -290,6 +346,48 @@ export interface AwsApiGatewayV2StageDetails {
|
|
|
290
346
|
LastDeploymentStatusMessage?: string;
|
|
291
347
|
ApiGatewayManaged?: boolean;
|
|
292
348
|
}
|
|
349
|
+
export interface AwsAppSyncGraphQlApiLambdaAuthorizerConfigDetails {
|
|
350
|
+
AuthorizerResultTtlInSeconds?: number;
|
|
351
|
+
AuthorizerUri?: string;
|
|
352
|
+
IdentityValidationExpression?: string;
|
|
353
|
+
}
|
|
354
|
+
export interface AwsAppSyncGraphQlApiOpenIdConnectConfigDetails {
|
|
355
|
+
AuthTtL?: number;
|
|
356
|
+
ClientId?: string;
|
|
357
|
+
IatTtL?: number;
|
|
358
|
+
Issuer?: string;
|
|
359
|
+
}
|
|
360
|
+
export interface AwsAppSyncGraphQlApiUserPoolConfigDetails {
|
|
361
|
+
AppIdClientRegex?: string;
|
|
362
|
+
AwsRegion?: string;
|
|
363
|
+
DefaultAction?: string;
|
|
364
|
+
UserPoolId?: string;
|
|
365
|
+
}
|
|
366
|
+
export interface AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails {
|
|
367
|
+
AuthenticationType?: string;
|
|
368
|
+
LambdaAuthorizerConfig?: AwsAppSyncGraphQlApiLambdaAuthorizerConfigDetails;
|
|
369
|
+
OpenIdConnectConfig?: AwsAppSyncGraphQlApiOpenIdConnectConfigDetails;
|
|
370
|
+
UserPoolConfig?: AwsAppSyncGraphQlApiUserPoolConfigDetails;
|
|
371
|
+
}
|
|
372
|
+
export interface AwsAppSyncGraphQlApiLogConfigDetails {
|
|
373
|
+
CloudWatchLogsRoleArn?: string;
|
|
374
|
+
ExcludeVerboseContent?: boolean;
|
|
375
|
+
FieldLogLevel?: string;
|
|
376
|
+
}
|
|
377
|
+
export interface AwsAppSyncGraphQlApiDetails {
|
|
378
|
+
ApiId?: string;
|
|
379
|
+
Id?: string;
|
|
380
|
+
OpenIdConnectConfig?: AwsAppSyncGraphQlApiOpenIdConnectConfigDetails;
|
|
381
|
+
Name?: string;
|
|
382
|
+
LambdaAuthorizerConfig?: AwsAppSyncGraphQlApiLambdaAuthorizerConfigDetails;
|
|
383
|
+
XrayEnabled?: boolean;
|
|
384
|
+
Arn?: string;
|
|
385
|
+
UserPoolConfig?: AwsAppSyncGraphQlApiUserPoolConfigDetails;
|
|
386
|
+
AuthenticationType?: string;
|
|
387
|
+
LogConfig?: AwsAppSyncGraphQlApiLogConfigDetails;
|
|
388
|
+
AdditionalAuthenticationProviders?: AwsAppSyncGraphQlApiAdditionalAuthenticationProvidersDetails[];
|
|
389
|
+
WafWebAclArn?: string;
|
|
390
|
+
}
|
|
293
391
|
export interface AwsAutoScalingAutoScalingGroupAvailabilityZonesListDetails {
|
|
294
392
|
Value?: string;
|
|
295
393
|
}
|
|
@@ -1868,87 +1966,3 @@ export interface AwsElbLoadBalancerConnectionDraining {
|
|
|
1868
1966
|
export interface AwsElbLoadBalancerConnectionSettings {
|
|
1869
1967
|
IdleTimeout?: number;
|
|
1870
1968
|
}
|
|
1871
|
-
export interface AwsElbLoadBalancerCrossZoneLoadBalancing {
|
|
1872
|
-
Enabled?: boolean;
|
|
1873
|
-
}
|
|
1874
|
-
export interface AwsElbLoadBalancerAttributes {
|
|
1875
|
-
AccessLog?: AwsElbLoadBalancerAccessLog;
|
|
1876
|
-
ConnectionDraining?: AwsElbLoadBalancerConnectionDraining;
|
|
1877
|
-
ConnectionSettings?: AwsElbLoadBalancerConnectionSettings;
|
|
1878
|
-
CrossZoneLoadBalancing?: AwsElbLoadBalancerCrossZoneLoadBalancing;
|
|
1879
|
-
AdditionalAttributes?: AwsElbLoadBalancerAdditionalAttribute[];
|
|
1880
|
-
}
|
|
1881
|
-
export interface AwsElbLoadBalancerBackendServerDescription {
|
|
1882
|
-
InstancePort?: number;
|
|
1883
|
-
PolicyNames?: string[];
|
|
1884
|
-
}
|
|
1885
|
-
export interface AwsElbLoadBalancerHealthCheck {
|
|
1886
|
-
HealthyThreshold?: number;
|
|
1887
|
-
Interval?: number;
|
|
1888
|
-
Target?: string;
|
|
1889
|
-
Timeout?: number;
|
|
1890
|
-
UnhealthyThreshold?: number;
|
|
1891
|
-
}
|
|
1892
|
-
export interface AwsElbLoadBalancerInstance {
|
|
1893
|
-
InstanceId?: string;
|
|
1894
|
-
}
|
|
1895
|
-
export interface AwsElbLoadBalancerListener {
|
|
1896
|
-
InstancePort?: number;
|
|
1897
|
-
InstanceProtocol?: string;
|
|
1898
|
-
LoadBalancerPort?: number;
|
|
1899
|
-
Protocol?: string;
|
|
1900
|
-
SslCertificateId?: string;
|
|
1901
|
-
}
|
|
1902
|
-
export interface AwsElbLoadBalancerListenerDescription {
|
|
1903
|
-
Listener?: AwsElbLoadBalancerListener;
|
|
1904
|
-
PolicyNames?: string[];
|
|
1905
|
-
}
|
|
1906
|
-
export interface AwsElbLoadBalancerPolicies {
|
|
1907
|
-
AppCookieStickinessPolicies?: AwsElbAppCookieStickinessPolicy[];
|
|
1908
|
-
LbCookieStickinessPolicies?: AwsElbLbCookieStickinessPolicy[];
|
|
1909
|
-
OtherPolicies?: string[];
|
|
1910
|
-
}
|
|
1911
|
-
export interface AwsElbLoadBalancerSourceSecurityGroup {
|
|
1912
|
-
GroupName?: string;
|
|
1913
|
-
OwnerAlias?: string;
|
|
1914
|
-
}
|
|
1915
|
-
export interface AwsElbLoadBalancerDetails {
|
|
1916
|
-
AvailabilityZones?: string[];
|
|
1917
|
-
BackendServerDescriptions?: AwsElbLoadBalancerBackendServerDescription[];
|
|
1918
|
-
CanonicalHostedZoneName?: string;
|
|
1919
|
-
CanonicalHostedZoneNameID?: string;
|
|
1920
|
-
CreatedTime?: string;
|
|
1921
|
-
DnsName?: string;
|
|
1922
|
-
HealthCheck?: AwsElbLoadBalancerHealthCheck;
|
|
1923
|
-
Instances?: AwsElbLoadBalancerInstance[];
|
|
1924
|
-
ListenerDescriptions?: AwsElbLoadBalancerListenerDescription[];
|
|
1925
|
-
LoadBalancerAttributes?: AwsElbLoadBalancerAttributes;
|
|
1926
|
-
LoadBalancerName?: string;
|
|
1927
|
-
Policies?: AwsElbLoadBalancerPolicies;
|
|
1928
|
-
Scheme?: string;
|
|
1929
|
-
SecurityGroups?: string[];
|
|
1930
|
-
SourceSecurityGroup?: AwsElbLoadBalancerSourceSecurityGroup;
|
|
1931
|
-
Subnets?: string[];
|
|
1932
|
-
VpcId?: string;
|
|
1933
|
-
}
|
|
1934
|
-
export interface AwsElbv2LoadBalancerAttribute {
|
|
1935
|
-
Key?: string;
|
|
1936
|
-
Value?: string;
|
|
1937
|
-
}
|
|
1938
|
-
export interface LoadBalancerState {
|
|
1939
|
-
Code?: string;
|
|
1940
|
-
Reason?: string;
|
|
1941
|
-
}
|
|
1942
|
-
export interface AwsElbv2LoadBalancerDetails {
|
|
1943
|
-
AvailabilityZones?: AvailabilityZone[];
|
|
1944
|
-
CanonicalHostedZoneId?: string;
|
|
1945
|
-
CreatedTime?: string;
|
|
1946
|
-
DNSName?: string;
|
|
1947
|
-
IpAddressType?: string;
|
|
1948
|
-
Scheme?: string;
|
|
1949
|
-
SecurityGroups?: string[];
|
|
1950
|
-
State?: LoadBalancerState;
|
|
1951
|
-
Type?: string;
|
|
1952
|
-
VpcId?: string;
|
|
1953
|
-
LoadBalancerAttributes?: AwsElbv2LoadBalancerAttribute[];
|
|
1954
|
-
}
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
1
|
import {
|
|
3
2
|
Action,
|
|
4
3
|
Adjustment,
|
|
5
4
|
AssociatedStandard,
|
|
6
|
-
|
|
5
|
+
AvailabilityZone,
|
|
6
|
+
AwsAmazonMqBrokerDetails,
|
|
7
7
|
AwsApiGatewayRestApiDetails,
|
|
8
8
|
AwsApiGatewayStageDetails,
|
|
9
9
|
AwsApiGatewayV2ApiDetails,
|
|
10
10
|
AwsApiGatewayV2StageDetails,
|
|
11
|
+
AwsAppSyncGraphQlApiDetails,
|
|
11
12
|
AwsAutoScalingAutoScalingGroupDetails,
|
|
12
13
|
AwsAutoScalingLaunchConfigurationDetails,
|
|
13
14
|
AwsBackupBackupPlanDetails,
|
|
@@ -45,10 +46,150 @@ import {
|
|
|
45
46
|
AwsEksClusterDetails,
|
|
46
47
|
AwsElasticBeanstalkEnvironmentDetails,
|
|
47
48
|
AwsElasticsearchDomainDetails,
|
|
48
|
-
|
|
49
|
-
|
|
49
|
+
AwsElbAppCookieStickinessPolicy,
|
|
50
|
+
AwsElbLbCookieStickinessPolicy,
|
|
51
|
+
AwsElbLoadBalancerAccessLog,
|
|
52
|
+
AwsElbLoadBalancerAdditionalAttribute,
|
|
53
|
+
AwsElbLoadBalancerConnectionDraining,
|
|
54
|
+
AwsElbLoadBalancerConnectionSettings,
|
|
50
55
|
} from "./models_0";
|
|
51
|
-
|
|
56
|
+
export interface AwsElbLoadBalancerCrossZoneLoadBalancing {
|
|
57
|
+
Enabled?: boolean;
|
|
58
|
+
}
|
|
59
|
+
export interface AwsElbLoadBalancerAttributes {
|
|
60
|
+
AccessLog?: AwsElbLoadBalancerAccessLog;
|
|
61
|
+
ConnectionDraining?: AwsElbLoadBalancerConnectionDraining;
|
|
62
|
+
ConnectionSettings?: AwsElbLoadBalancerConnectionSettings;
|
|
63
|
+
CrossZoneLoadBalancing?: AwsElbLoadBalancerCrossZoneLoadBalancing;
|
|
64
|
+
AdditionalAttributes?: AwsElbLoadBalancerAdditionalAttribute[];
|
|
65
|
+
}
|
|
66
|
+
export interface AwsElbLoadBalancerBackendServerDescription {
|
|
67
|
+
InstancePort?: number;
|
|
68
|
+
PolicyNames?: string[];
|
|
69
|
+
}
|
|
70
|
+
export interface AwsElbLoadBalancerHealthCheck {
|
|
71
|
+
HealthyThreshold?: number;
|
|
72
|
+
Interval?: number;
|
|
73
|
+
Target?: string;
|
|
74
|
+
Timeout?: number;
|
|
75
|
+
UnhealthyThreshold?: number;
|
|
76
|
+
}
|
|
77
|
+
export interface AwsElbLoadBalancerInstance {
|
|
78
|
+
InstanceId?: string;
|
|
79
|
+
}
|
|
80
|
+
export interface AwsElbLoadBalancerListener {
|
|
81
|
+
InstancePort?: number;
|
|
82
|
+
InstanceProtocol?: string;
|
|
83
|
+
LoadBalancerPort?: number;
|
|
84
|
+
Protocol?: string;
|
|
85
|
+
SslCertificateId?: string;
|
|
86
|
+
}
|
|
87
|
+
export interface AwsElbLoadBalancerListenerDescription {
|
|
88
|
+
Listener?: AwsElbLoadBalancerListener;
|
|
89
|
+
PolicyNames?: string[];
|
|
90
|
+
}
|
|
91
|
+
export interface AwsElbLoadBalancerPolicies {
|
|
92
|
+
AppCookieStickinessPolicies?: AwsElbAppCookieStickinessPolicy[];
|
|
93
|
+
LbCookieStickinessPolicies?: AwsElbLbCookieStickinessPolicy[];
|
|
94
|
+
OtherPolicies?: string[];
|
|
95
|
+
}
|
|
96
|
+
export interface AwsElbLoadBalancerSourceSecurityGroup {
|
|
97
|
+
GroupName?: string;
|
|
98
|
+
OwnerAlias?: string;
|
|
99
|
+
}
|
|
100
|
+
export interface AwsElbLoadBalancerDetails {
|
|
101
|
+
AvailabilityZones?: string[];
|
|
102
|
+
BackendServerDescriptions?: AwsElbLoadBalancerBackendServerDescription[];
|
|
103
|
+
CanonicalHostedZoneName?: string;
|
|
104
|
+
CanonicalHostedZoneNameID?: string;
|
|
105
|
+
CreatedTime?: string;
|
|
106
|
+
DnsName?: string;
|
|
107
|
+
HealthCheck?: AwsElbLoadBalancerHealthCheck;
|
|
108
|
+
Instances?: AwsElbLoadBalancerInstance[];
|
|
109
|
+
ListenerDescriptions?: AwsElbLoadBalancerListenerDescription[];
|
|
110
|
+
LoadBalancerAttributes?: AwsElbLoadBalancerAttributes;
|
|
111
|
+
LoadBalancerName?: string;
|
|
112
|
+
Policies?: AwsElbLoadBalancerPolicies;
|
|
113
|
+
Scheme?: string;
|
|
114
|
+
SecurityGroups?: string[];
|
|
115
|
+
SourceSecurityGroup?: AwsElbLoadBalancerSourceSecurityGroup;
|
|
116
|
+
Subnets?: string[];
|
|
117
|
+
VpcId?: string;
|
|
118
|
+
}
|
|
119
|
+
export interface AwsElbv2LoadBalancerAttribute {
|
|
120
|
+
Key?: string;
|
|
121
|
+
Value?: string;
|
|
122
|
+
}
|
|
123
|
+
export interface LoadBalancerState {
|
|
124
|
+
Code?: string;
|
|
125
|
+
Reason?: string;
|
|
126
|
+
}
|
|
127
|
+
export interface AwsElbv2LoadBalancerDetails {
|
|
128
|
+
AvailabilityZones?: AvailabilityZone[];
|
|
129
|
+
CanonicalHostedZoneId?: string;
|
|
130
|
+
CreatedTime?: string;
|
|
131
|
+
DNSName?: string;
|
|
132
|
+
IpAddressType?: string;
|
|
133
|
+
Scheme?: string;
|
|
134
|
+
SecurityGroups?: string[];
|
|
135
|
+
State?: LoadBalancerState;
|
|
136
|
+
Type?: string;
|
|
137
|
+
VpcId?: string;
|
|
138
|
+
LoadBalancerAttributes?: AwsElbv2LoadBalancerAttribute[];
|
|
139
|
+
}
|
|
140
|
+
export interface AwsEventSchemasRegistryDetails {
|
|
141
|
+
Description?: string;
|
|
142
|
+
RegistryArn?: string;
|
|
143
|
+
RegistryName?: string;
|
|
144
|
+
}
|
|
145
|
+
export interface AwsGuardDutyDetectorDataSourcesCloudTrailDetails {
|
|
146
|
+
Status?: string;
|
|
147
|
+
}
|
|
148
|
+
export interface AwsGuardDutyDetectorDataSourcesDnsLogsDetails {
|
|
149
|
+
Status?: string;
|
|
150
|
+
}
|
|
151
|
+
export interface AwsGuardDutyDetectorDataSourcesFlowLogsDetails {
|
|
152
|
+
Status?: string;
|
|
153
|
+
}
|
|
154
|
+
export interface AwsGuardDutyDetectorDataSourcesKubernetesAuditLogsDetails {
|
|
155
|
+
Status?: string;
|
|
156
|
+
}
|
|
157
|
+
export interface AwsGuardDutyDetectorDataSourcesKubernetesDetails {
|
|
158
|
+
AuditLogs?: AwsGuardDutyDetectorDataSourcesKubernetesAuditLogsDetails;
|
|
159
|
+
}
|
|
160
|
+
export interface AwsGuardDutyDetectorDataSourcesMalwareProtectionScanEc2InstanceWithFindingsEbsVolumesDetails {
|
|
161
|
+
Reason?: string;
|
|
162
|
+
Status?: string;
|
|
163
|
+
}
|
|
164
|
+
export interface AwsGuardDutyDetectorDataSourcesMalwareProtectionScanEc2InstanceWithFindingsDetails {
|
|
165
|
+
EbsVolumes?: AwsGuardDutyDetectorDataSourcesMalwareProtectionScanEc2InstanceWithFindingsEbsVolumesDetails;
|
|
166
|
+
}
|
|
167
|
+
export interface AwsGuardDutyDetectorDataSourcesMalwareProtectionDetails {
|
|
168
|
+
ScanEc2InstanceWithFindings?: AwsGuardDutyDetectorDataSourcesMalwareProtectionScanEc2InstanceWithFindingsDetails;
|
|
169
|
+
ServiceRole?: string;
|
|
170
|
+
}
|
|
171
|
+
export interface AwsGuardDutyDetectorDataSourcesS3LogsDetails {
|
|
172
|
+
Status?: string;
|
|
173
|
+
}
|
|
174
|
+
export interface AwsGuardDutyDetectorDataSourcesDetails {
|
|
175
|
+
CloudTrail?: AwsGuardDutyDetectorDataSourcesCloudTrailDetails;
|
|
176
|
+
DnsLogs?: AwsGuardDutyDetectorDataSourcesDnsLogsDetails;
|
|
177
|
+
FlowLogs?: AwsGuardDutyDetectorDataSourcesFlowLogsDetails;
|
|
178
|
+
Kubernetes?: AwsGuardDutyDetectorDataSourcesKubernetesDetails;
|
|
179
|
+
MalwareProtection?: AwsGuardDutyDetectorDataSourcesMalwareProtectionDetails;
|
|
180
|
+
S3Logs?: AwsGuardDutyDetectorDataSourcesS3LogsDetails;
|
|
181
|
+
}
|
|
182
|
+
export interface AwsGuardDutyDetectorFeaturesDetails {
|
|
183
|
+
Name?: string;
|
|
184
|
+
Status?: string;
|
|
185
|
+
}
|
|
186
|
+
export interface AwsGuardDutyDetectorDetails {
|
|
187
|
+
DataSources?: AwsGuardDutyDetectorDataSourcesDetails;
|
|
188
|
+
Features?: AwsGuardDutyDetectorFeaturesDetails[];
|
|
189
|
+
FindingPublishingFrequency?: string;
|
|
190
|
+
ServiceRole?: string;
|
|
191
|
+
Status?: string;
|
|
192
|
+
}
|
|
52
193
|
export interface AwsIamAccessKeySessionContextAttributes {
|
|
53
194
|
MfaAuthenticated?: boolean;
|
|
54
195
|
CreationDate?: string;
|
|
@@ -1315,6 +1456,30 @@ export interface AwsSsmPatch {
|
|
|
1315
1456
|
export interface AwsSsmPatchComplianceDetails {
|
|
1316
1457
|
Patch?: AwsSsmPatch;
|
|
1317
1458
|
}
|
|
1459
|
+
export interface AwsStepFunctionStateMachineLoggingConfigurationDestinationsCloudWatchLogsLogGroupDetails {
|
|
1460
|
+
LogGroupArn?: string;
|
|
1461
|
+
}
|
|
1462
|
+
export interface AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails {
|
|
1463
|
+
CloudWatchLogsLogGroup?: AwsStepFunctionStateMachineLoggingConfigurationDestinationsCloudWatchLogsLogGroupDetails;
|
|
1464
|
+
}
|
|
1465
|
+
export interface AwsStepFunctionStateMachineLoggingConfigurationDetails {
|
|
1466
|
+
Destinations?: AwsStepFunctionStateMachineLoggingConfigurationDestinationsDetails[];
|
|
1467
|
+
IncludeExecutionData?: boolean;
|
|
1468
|
+
Level?: string;
|
|
1469
|
+
}
|
|
1470
|
+
export interface AwsStepFunctionStateMachineTracingConfigurationDetails {
|
|
1471
|
+
Enabled?: boolean;
|
|
1472
|
+
}
|
|
1473
|
+
export interface AwsStepFunctionStateMachineDetails {
|
|
1474
|
+
Label?: string;
|
|
1475
|
+
LoggingConfiguration?: AwsStepFunctionStateMachineLoggingConfigurationDetails;
|
|
1476
|
+
Name?: string;
|
|
1477
|
+
RoleArn?: string;
|
|
1478
|
+
StateMachineArn?: string;
|
|
1479
|
+
Status?: string;
|
|
1480
|
+
TracingConfiguration?: AwsStepFunctionStateMachineTracingConfigurationDetails;
|
|
1481
|
+
Type?: string;
|
|
1482
|
+
}
|
|
1318
1483
|
export interface AwsWafRateBasedRuleMatchPredicate {
|
|
1319
1484
|
DataId?: string;
|
|
1320
1485
|
Negated?: boolean;
|
|
@@ -1613,6 +1778,11 @@ export interface ResourceDetails {
|
|
|
1613
1778
|
AwsWafv2WebAcl?: AwsWafv2WebAclDetails;
|
|
1614
1779
|
AwsWafv2RuleGroup?: AwsWafv2RuleGroupDetails;
|
|
1615
1780
|
AwsEc2RouteTable?: AwsEc2RouteTableDetails;
|
|
1781
|
+
AwsAmazonMqBroker?: AwsAmazonMqBrokerDetails;
|
|
1782
|
+
AwsAppSyncGraphQlApi?: AwsAppSyncGraphQlApiDetails;
|
|
1783
|
+
AwsEventSchemasRegistry?: AwsEventSchemasRegistryDetails;
|
|
1784
|
+
AwsGuardDutyDetector?: AwsGuardDutyDetectorDetails;
|
|
1785
|
+
AwsStepFunctionStateMachine?: AwsStepFunctionStateMachineDetails;
|
|
1616
1786
|
}
|
|
1617
1787
|
export declare const Partition: {
|
|
1618
1788
|
readonly AWS: "aws";
|
|
@@ -1988,175 +2158,3 @@ export interface BatchEnableStandardsRequest {
|
|
|
1988
2158
|
export interface BatchEnableStandardsResponse {
|
|
1989
2159
|
StandardsSubscriptions?: StandardsSubscription[];
|
|
1990
2160
|
}
|
|
1991
|
-
export interface BatchGetSecurityControlsRequest {
|
|
1992
|
-
SecurityControlIds: string[] | undefined;
|
|
1993
|
-
}
|
|
1994
|
-
export declare const ControlStatus: {
|
|
1995
|
-
readonly DISABLED: "DISABLED";
|
|
1996
|
-
readonly ENABLED: "ENABLED";
|
|
1997
|
-
};
|
|
1998
|
-
export type ControlStatus = (typeof ControlStatus)[keyof typeof ControlStatus];
|
|
1999
|
-
export declare const SeverityRating: {
|
|
2000
|
-
readonly CRITICAL: "CRITICAL";
|
|
2001
|
-
readonly HIGH: "HIGH";
|
|
2002
|
-
readonly LOW: "LOW";
|
|
2003
|
-
readonly MEDIUM: "MEDIUM";
|
|
2004
|
-
};
|
|
2005
|
-
export type SeverityRating =
|
|
2006
|
-
(typeof SeverityRating)[keyof typeof SeverityRating];
|
|
2007
|
-
export interface SecurityControl {
|
|
2008
|
-
SecurityControlId: string | undefined;
|
|
2009
|
-
SecurityControlArn: string | undefined;
|
|
2010
|
-
Title: string | undefined;
|
|
2011
|
-
Description: string | undefined;
|
|
2012
|
-
RemediationUrl: string | undefined;
|
|
2013
|
-
SeverityRating: SeverityRating | string | undefined;
|
|
2014
|
-
SecurityControlStatus: ControlStatus | string | undefined;
|
|
2015
|
-
}
|
|
2016
|
-
export declare const UnprocessedErrorCode: {
|
|
2017
|
-
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
2018
|
-
readonly INVALID_INPUT: "INVALID_INPUT";
|
|
2019
|
-
readonly LIMIT_EXCEEDED: "LIMIT_EXCEEDED";
|
|
2020
|
-
readonly NOT_FOUND: "NOT_FOUND";
|
|
2021
|
-
};
|
|
2022
|
-
export type UnprocessedErrorCode =
|
|
2023
|
-
(typeof UnprocessedErrorCode)[keyof typeof UnprocessedErrorCode];
|
|
2024
|
-
export interface UnprocessedSecurityControl {
|
|
2025
|
-
SecurityControlId: string | undefined;
|
|
2026
|
-
ErrorCode: UnprocessedErrorCode | string | undefined;
|
|
2027
|
-
ErrorReason?: string;
|
|
2028
|
-
}
|
|
2029
|
-
export interface BatchGetSecurityControlsResponse {
|
|
2030
|
-
SecurityControls: SecurityControl[] | undefined;
|
|
2031
|
-
UnprocessedIds?: UnprocessedSecurityControl[];
|
|
2032
|
-
}
|
|
2033
|
-
export interface StandardsControlAssociationId {
|
|
2034
|
-
SecurityControlId: string | undefined;
|
|
2035
|
-
StandardsArn: string | undefined;
|
|
2036
|
-
}
|
|
2037
|
-
export interface BatchGetStandardsControlAssociationsRequest {
|
|
2038
|
-
StandardsControlAssociationIds: StandardsControlAssociationId[] | undefined;
|
|
2039
|
-
}
|
|
2040
|
-
export interface StandardsControlAssociationDetail {
|
|
2041
|
-
StandardsArn: string | undefined;
|
|
2042
|
-
SecurityControlId: string | undefined;
|
|
2043
|
-
SecurityControlArn: string | undefined;
|
|
2044
|
-
AssociationStatus: AssociationStatus | string | undefined;
|
|
2045
|
-
RelatedRequirements?: string[];
|
|
2046
|
-
UpdatedAt?: Date;
|
|
2047
|
-
UpdatedReason?: string;
|
|
2048
|
-
StandardsControlTitle?: string;
|
|
2049
|
-
StandardsControlDescription?: string;
|
|
2050
|
-
StandardsControlArns?: string[];
|
|
2051
|
-
}
|
|
2052
|
-
export interface UnprocessedStandardsControlAssociation {
|
|
2053
|
-
StandardsControlAssociationId: StandardsControlAssociationId | undefined;
|
|
2054
|
-
ErrorCode: UnprocessedErrorCode | string | undefined;
|
|
2055
|
-
ErrorReason?: string;
|
|
2056
|
-
}
|
|
2057
|
-
export interface BatchGetStandardsControlAssociationsResponse {
|
|
2058
|
-
StandardsControlAssociationDetails:
|
|
2059
|
-
| StandardsControlAssociationDetail[]
|
|
2060
|
-
| undefined;
|
|
2061
|
-
UnprocessedAssociations?: UnprocessedStandardsControlAssociation[];
|
|
2062
|
-
}
|
|
2063
|
-
export interface BatchImportFindingsRequest {
|
|
2064
|
-
Findings: AwsSecurityFinding[] | undefined;
|
|
2065
|
-
}
|
|
2066
|
-
export interface ImportFindingsError {
|
|
2067
|
-
Id: string | undefined;
|
|
2068
|
-
ErrorCode: string | undefined;
|
|
2069
|
-
ErrorMessage: string | undefined;
|
|
2070
|
-
}
|
|
2071
|
-
export interface BatchImportFindingsResponse {
|
|
2072
|
-
FailedCount: number | undefined;
|
|
2073
|
-
SuccessCount: number | undefined;
|
|
2074
|
-
FailedFindings?: ImportFindingsError[];
|
|
2075
|
-
}
|
|
2076
|
-
export interface NoteUpdate {
|
|
2077
|
-
Text: string | undefined;
|
|
2078
|
-
UpdatedBy: string | undefined;
|
|
2079
|
-
}
|
|
2080
|
-
export interface SeverityUpdate {
|
|
2081
|
-
Normalized?: number;
|
|
2082
|
-
Product?: number;
|
|
2083
|
-
Label?: SeverityLabel | string;
|
|
2084
|
-
}
|
|
2085
|
-
export interface WorkflowUpdate {
|
|
2086
|
-
Status?: WorkflowStatus | string;
|
|
2087
|
-
}
|
|
2088
|
-
export interface BatchUpdateFindingsRequest {
|
|
2089
|
-
FindingIdentifiers: AwsSecurityFindingIdentifier[] | undefined;
|
|
2090
|
-
Note?: NoteUpdate;
|
|
2091
|
-
Severity?: SeverityUpdate;
|
|
2092
|
-
VerificationState?: VerificationState | string;
|
|
2093
|
-
Confidence?: number;
|
|
2094
|
-
Criticality?: number;
|
|
2095
|
-
Types?: string[];
|
|
2096
|
-
UserDefinedFields?: Record<string, string>;
|
|
2097
|
-
Workflow?: WorkflowUpdate;
|
|
2098
|
-
RelatedFindings?: RelatedFinding[];
|
|
2099
|
-
}
|
|
2100
|
-
export interface BatchUpdateFindingsUnprocessedFinding {
|
|
2101
|
-
FindingIdentifier: AwsSecurityFindingIdentifier | undefined;
|
|
2102
|
-
ErrorCode: string | undefined;
|
|
2103
|
-
ErrorMessage: string | undefined;
|
|
2104
|
-
}
|
|
2105
|
-
export interface BatchUpdateFindingsResponse {
|
|
2106
|
-
ProcessedFindings: AwsSecurityFindingIdentifier[] | undefined;
|
|
2107
|
-
UnprocessedFindings: BatchUpdateFindingsUnprocessedFinding[] | undefined;
|
|
2108
|
-
}
|
|
2109
|
-
export interface StandardsControlAssociationUpdate {
|
|
2110
|
-
StandardsArn: string | undefined;
|
|
2111
|
-
SecurityControlId: string | undefined;
|
|
2112
|
-
AssociationStatus: AssociationStatus | string | undefined;
|
|
2113
|
-
UpdatedReason?: string;
|
|
2114
|
-
}
|
|
2115
|
-
export interface BatchUpdateStandardsControlAssociationsRequest {
|
|
2116
|
-
StandardsControlAssociationUpdates:
|
|
2117
|
-
| StandardsControlAssociationUpdate[]
|
|
2118
|
-
| undefined;
|
|
2119
|
-
}
|
|
2120
|
-
export interface UnprocessedStandardsControlAssociationUpdate {
|
|
2121
|
-
StandardsControlAssociationUpdate:
|
|
2122
|
-
| StandardsControlAssociationUpdate
|
|
2123
|
-
| undefined;
|
|
2124
|
-
ErrorCode: UnprocessedErrorCode | string | undefined;
|
|
2125
|
-
ErrorReason?: string;
|
|
2126
|
-
}
|
|
2127
|
-
export interface BatchUpdateStandardsControlAssociationsResponse {
|
|
2128
|
-
UnprocessedAssociationUpdates?: UnprocessedStandardsControlAssociationUpdate[];
|
|
2129
|
-
}
|
|
2130
|
-
export declare const ControlFindingGenerator: {
|
|
2131
|
-
readonly SECURITY_CONTROL: "SECURITY_CONTROL";
|
|
2132
|
-
readonly STANDARD_CONTROL: "STANDARD_CONTROL";
|
|
2133
|
-
};
|
|
2134
|
-
export type ControlFindingGenerator =
|
|
2135
|
-
(typeof ControlFindingGenerator)[keyof typeof ControlFindingGenerator];
|
|
2136
|
-
export interface CreateActionTargetRequest {
|
|
2137
|
-
Name: string | undefined;
|
|
2138
|
-
Description: string | undefined;
|
|
2139
|
-
Id: string | undefined;
|
|
2140
|
-
}
|
|
2141
|
-
export interface CreateActionTargetResponse {
|
|
2142
|
-
ActionTargetArn: string | undefined;
|
|
2143
|
-
}
|
|
2144
|
-
export declare class ResourceConflictException extends __BaseException {
|
|
2145
|
-
readonly name: "ResourceConflictException";
|
|
2146
|
-
readonly $fault: "client";
|
|
2147
|
-
Message?: string;
|
|
2148
|
-
Code?: string;
|
|
2149
|
-
constructor(
|
|
2150
|
-
opts: __ExceptionOptionType<ResourceConflictException, __BaseException>
|
|
2151
|
-
);
|
|
2152
|
-
}
|
|
2153
|
-
export interface CreateFindingAggregatorRequest {
|
|
2154
|
-
RegionLinkingMode: string | undefined;
|
|
2155
|
-
Regions?: string[];
|
|
2156
|
-
}
|
|
2157
|
-
export interface CreateFindingAggregatorResponse {
|
|
2158
|
-
FindingAggregatorArn?: string;
|
|
2159
|
-
FindingAggregationRegion?: string;
|
|
2160
|
-
RegionLinkingMode?: string;
|
|
2161
|
-
Regions?: string[];
|
|
2162
|
-
}
|