@aws-sdk/client-guardduty 3.696.0 → 3.703.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.
@@ -140,6 +140,27 @@ export declare class AccessDeniedException extends __BaseException {
140
140
  */
141
141
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
142
142
  }
143
+ /**
144
+ * <p>Contains information about the access keys.</p>
145
+ * @public
146
+ */
147
+ export interface AccessKey {
148
+ /**
149
+ * <p>Principal ID of the user.</p>
150
+ * @public
151
+ */
152
+ PrincipalId?: string | undefined;
153
+ /**
154
+ * <p>Name of the user.</p>
155
+ * @public
156
+ */
157
+ UserName?: string | undefined;
158
+ /**
159
+ * <p>Type of the user.</p>
160
+ * @public
161
+ */
162
+ UserType?: string | undefined;
163
+ }
143
164
  /**
144
165
  * <p>Contains information about the access keys.</p>
145
166
  * @public
@@ -166,6 +187,22 @@ export interface AccessKeyDetails {
166
187
  */
167
188
  UserType?: string | undefined;
168
189
  }
190
+ /**
191
+ * <p>Contains information about the account.</p>
192
+ * @public
193
+ */
194
+ export interface Account {
195
+ /**
196
+ * <p>ID of the member's Amazon Web Services account</p>
197
+ * @public
198
+ */
199
+ Uid: string | undefined;
200
+ /**
201
+ * <p>Name of the member's Amazon Web Services account.</p>
202
+ * @public
203
+ */
204
+ Name?: string | undefined;
205
+ }
169
206
  /**
170
207
  * <p>Contains information about the account.</p>
171
208
  * @public
@@ -968,6 +1005,99 @@ export interface Action {
968
1005
  */
969
1006
  KubernetesRoleDetails?: KubernetesRoleDetails | undefined;
970
1007
  }
1008
+ /**
1009
+ * @public
1010
+ * @enum
1011
+ */
1012
+ export declare const MfaStatus: {
1013
+ readonly DISABLED: "DISABLED";
1014
+ readonly ENABLED: "ENABLED";
1015
+ };
1016
+ /**
1017
+ * @public
1018
+ */
1019
+ export type MfaStatus = (typeof MfaStatus)[keyof typeof MfaStatus];
1020
+ /**
1021
+ * <p>Contains information about the authenticated session.</p>
1022
+ * @public
1023
+ */
1024
+ export interface Session {
1025
+ /**
1026
+ * <p>The unique identifier of the session.</p>
1027
+ * @public
1028
+ */
1029
+ Uid?: string | undefined;
1030
+ /**
1031
+ * <p>Indicates whether or not multi-factor authencation (MFA) was used during authentication.</p>
1032
+ * <p>In Amazon Web Services CloudTrail, you can find this value as <code>userIdentity.sessionContext.attributes.mfaAuthenticated</code>.</p>
1033
+ * @public
1034
+ */
1035
+ MfaStatus?: MfaStatus | undefined;
1036
+ /**
1037
+ * <p>The timestamp for when the session was created.</p>
1038
+ * <p>In Amazon Web Services CloudTrail, you can find this value as <code>userIdentity.sessionContext.attributes.creationDate</code>.</p>
1039
+ * @public
1040
+ */
1041
+ CreatedTime?: Date | undefined;
1042
+ /**
1043
+ * <p>Identifier of the session issuer.</p>
1044
+ * <p>In Amazon Web Services CloudTrail, you can find this value as <code>userIdentity.sessionContext.sessionIssuer.arn</code>.</p>
1045
+ * @public
1046
+ */
1047
+ Issuer?: string | undefined;
1048
+ }
1049
+ /**
1050
+ * <p>Contains information about the user involved in the attack sequence.</p>
1051
+ * @public
1052
+ */
1053
+ export interface User {
1054
+ /**
1055
+ * <p>The name of the user.</p>
1056
+ * @public
1057
+ */
1058
+ Name: string | undefined;
1059
+ /**
1060
+ * <p>The unique identifier of the user.</p>
1061
+ * @public
1062
+ */
1063
+ Uid: string | undefined;
1064
+ /**
1065
+ * <p>The type of the user.</p>
1066
+ * @public
1067
+ */
1068
+ Type: string | undefined;
1069
+ /**
1070
+ * <p>The credentials of the user ID.</p>
1071
+ * @public
1072
+ */
1073
+ CredentialUid?: string | undefined;
1074
+ /**
1075
+ * <p>Contains information about the Amazon Web Services account.</p>
1076
+ * @public
1077
+ */
1078
+ Account?: Account | undefined;
1079
+ }
1080
+ /**
1081
+ * <p>Information about the actors involved in an attack sequence.</p>
1082
+ * @public
1083
+ */
1084
+ export interface Actor {
1085
+ /**
1086
+ * <p>ID of the threat actor.</p>
1087
+ * @public
1088
+ */
1089
+ Id: string | undefined;
1090
+ /**
1091
+ * <p>Contains information about the user credentials used by the threat actor.</p>
1092
+ * @public
1093
+ */
1094
+ User?: User | undefined;
1095
+ /**
1096
+ * <p>Contains information about the user session where the activity initiated.</p>
1097
+ * @public
1098
+ */
1099
+ Session?: Session | undefined;
1100
+ }
971
1101
  /**
972
1102
  * <p>Information about the installed EKS add-on (GuardDuty security agent).</p>
973
1103
  * @public
@@ -1172,6 +1302,23 @@ export declare const AutoEnableMembers: {
1172
1302
  * @public
1173
1303
  */
1174
1304
  export type AutoEnableMembers = (typeof AutoEnableMembers)[keyof typeof AutoEnableMembers];
1305
+ /**
1306
+ * <p>Contains information about the Autonomous System (AS) associated with the network
1307
+ * endpoints involved in an attack sequence.</p>
1308
+ * @public
1309
+ */
1310
+ export interface AutonomousSystem {
1311
+ /**
1312
+ * <p>Name associated with the Autonomous System (AS).</p>
1313
+ * @public
1314
+ */
1315
+ Name: string | undefined;
1316
+ /**
1317
+ * <p>The unique number that identifies the Autonomous System (AS).</p>
1318
+ * @public
1319
+ */
1320
+ Number: number | undefined;
1321
+ }
1175
1322
  /**
1176
1323
  * <p>Contains information on the current bucket policies for the S3 bucket.</p>
1177
1324
  * @public
@@ -4047,2903 +4194,2983 @@ export interface Destination {
4047
4194
  Status: PublishingStatus | undefined;
4048
4195
  }
4049
4196
  /**
4050
- * <p>Contains information about the detected behavior.</p>
4051
4197
  * @public
4198
+ * @enum
4052
4199
  */
4053
- export interface Detection {
4200
+ export declare const NetworkDirection: {
4201
+ readonly INBOUND: "INBOUND";
4202
+ readonly OUTBOUND: "OUTBOUND";
4203
+ };
4204
+ /**
4205
+ * @public
4206
+ */
4207
+ export type NetworkDirection = (typeof NetworkDirection)[keyof typeof NetworkDirection];
4208
+ /**
4209
+ * <p>Contains information about the network connection.</p>
4210
+ * @public
4211
+ */
4212
+ export interface NetworkConnection {
4054
4213
  /**
4055
- * <p>The details about the anomalous activity that caused GuardDuty to
4056
- * generate the finding.</p>
4214
+ * <p>The direction in which the network traffic is flowing.</p>
4057
4215
  * @public
4058
4216
  */
4059
- Anomaly?: Anomaly | undefined;
4217
+ Direction: NetworkDirection | undefined;
4060
4218
  }
4061
4219
  /**
4062
- * <p>Information about the additional configuration.</p>
4220
+ * <p>Contains information about network endpoint location.</p>
4063
4221
  * @public
4064
4222
  */
4065
- export interface DetectorAdditionalConfigurationResult {
4223
+ export interface NetworkGeoLocation {
4066
4224
  /**
4067
- * <p>Name of the additional configuration.</p>
4225
+ * <p>The name of the city.</p>
4068
4226
  * @public
4069
4227
  */
4070
- Name?: FeatureAdditionalConfiguration | undefined;
4228
+ City: string | undefined;
4071
4229
  /**
4072
- * <p>Status of the additional configuration.</p>
4230
+ * <p>The name of the country.</p>
4073
4231
  * @public
4074
4232
  */
4075
- Status?: FeatureStatus | undefined;
4233
+ Country: string | undefined;
4076
4234
  /**
4077
- * <p>The timestamp at which the additional configuration was last updated. This is in UTC
4078
- * format.</p>
4235
+ * <p>The latitude information of the endpoint location.</p>
4079
4236
  * @public
4080
4237
  */
4081
- UpdatedAt?: Date | undefined;
4238
+ Latitude: number | undefined;
4239
+ /**
4240
+ * <p>The longitude information of the endpoint location.</p>
4241
+ * @public
4242
+ */
4243
+ Longitude: number | undefined;
4082
4244
  }
4083
4245
  /**
4084
- * @public
4085
- * @enum
4086
- */
4087
- export declare const DetectorFeatureResult: {
4088
- readonly CLOUD_TRAIL: "CLOUD_TRAIL";
4089
- readonly DNS_LOGS: "DNS_LOGS";
4090
- readonly EBS_MALWARE_PROTECTION: "EBS_MALWARE_PROTECTION";
4091
- readonly EKS_AUDIT_LOGS: "EKS_AUDIT_LOGS";
4092
- readonly EKS_RUNTIME_MONITORING: "EKS_RUNTIME_MONITORING";
4093
- readonly FLOW_LOGS: "FLOW_LOGS";
4094
- readonly LAMBDA_NETWORK_LOGS: "LAMBDA_NETWORK_LOGS";
4095
- readonly RDS_LOGIN_EVENTS: "RDS_LOGIN_EVENTS";
4096
- readonly RUNTIME_MONITORING: "RUNTIME_MONITORING";
4097
- readonly S3_DATA_EVENTS: "S3_DATA_EVENTS";
4098
- };
4099
- /**
4100
- * @public
4101
- */
4102
- export type DetectorFeatureResult = (typeof DetectorFeatureResult)[keyof typeof DetectorFeatureResult];
4103
- /**
4104
- * <p>Contains information about a GuardDuty feature.</p>
4105
- * <p>Specifying both EKS Runtime Monitoring (<code>EKS_RUNTIME_MONITORING</code>)
4106
- * and Runtime Monitoring (<code>RUNTIME_MONITORING</code>) will cause an error.
4107
- * You can add only one of these two features because Runtime Monitoring already includes the
4108
- * threat detection for Amazon EKS resources. For more information, see
4109
- * <a href="https://docs.aws.amazon.com/guardduty/latest/ug/runtime-monitoring.html">Runtime Monitoring</a>.</p>
4246
+ * <p>Contains information about network endpoints that were observed in the attack sequence.</p>
4110
4247
  * @public
4111
4248
  */
4112
- export interface DetectorFeatureConfigurationResult {
4249
+ export interface NetworkEndpoint {
4113
4250
  /**
4114
- * <p>Indicates the name of the feature that can be enabled for the detector.</p>
4251
+ * <p>The ID of the network endpoint.</p>
4115
4252
  * @public
4116
4253
  */
4117
- Name?: DetectorFeatureResult | undefined;
4254
+ Id: string | undefined;
4118
4255
  /**
4119
- * <p>Indicates the status of the feature that is enabled for the detector.</p>
4256
+ * <p>The IP address associated with the network endpoint.</p>
4120
4257
  * @public
4121
4258
  */
4122
- Status?: FeatureStatus | undefined;
4259
+ Ip?: string | undefined;
4123
4260
  /**
4124
- * <p>The timestamp at which the feature object was updated.</p>
4261
+ * <p>The domain information for the network endpoint.</p>
4125
4262
  * @public
4126
4263
  */
4127
- UpdatedAt?: Date | undefined;
4264
+ Domain?: string | undefined;
4128
4265
  /**
4129
- * <p>Additional configuration for a resource.</p>
4266
+ * <p>The port number associated with the network endpoint.</p>
4130
4267
  * @public
4131
4268
  */
4132
- AdditionalConfiguration?: DetectorAdditionalConfigurationResult[] | undefined;
4133
- }
4134
- /**
4135
- * @public
4136
- * @enum
4137
- */
4138
- export declare const DetectorStatus: {
4139
- readonly DISABLED: "DISABLED";
4140
- readonly ENABLED: "ENABLED";
4141
- };
4142
- /**
4143
- * @public
4144
- */
4145
- export type DetectorStatus = (typeof DetectorStatus)[keyof typeof DetectorStatus];
4146
- /**
4147
- * @public
4148
- */
4149
- export interface DisableOrganizationAdminAccountRequest {
4269
+ Port?: number | undefined;
4150
4270
  /**
4151
- * <p>The Amazon Web Services Account ID for the organizations account to be disabled as a GuardDuty delegated
4152
- * administrator.</p>
4271
+ * <p>Information about the location of the network endpoint.</p>
4153
4272
  * @public
4154
4273
  */
4155
- AdminAccountId: string | undefined;
4156
- }
4157
- /**
4158
- * @public
4159
- */
4160
- export interface DisableOrganizationAdminAccountResponse {
4161
- }
4162
- /**
4163
- * @public
4164
- */
4165
- export interface DisassociateFromAdministratorAccountRequest {
4274
+ Location?: NetworkGeoLocation | undefined;
4166
4275
  /**
4167
- * <p>The unique ID of the detector of the GuardDuty member account.</p>
4276
+ * <p>The Autonomous System (AS) of the network endpoint.</p>
4168
4277
  * @public
4169
4278
  */
4170
- DetectorId: string | undefined;
4171
- }
4172
- /**
4173
- * @public
4174
- */
4175
- export interface DisassociateFromAdministratorAccountResponse {
4176
- }
4177
- /**
4178
- * @public
4179
- */
4180
- export interface DisassociateFromMasterAccountRequest {
4279
+ AutonomousSystem?: AutonomousSystem | undefined;
4181
4280
  /**
4182
- * <p>The unique ID of the detector of the GuardDuty member account.</p>
4281
+ * <p>Information about the network connection.</p>
4183
4282
  * @public
4184
4283
  */
4185
- DetectorId: string | undefined;
4186
- }
4187
- /**
4188
- * @public
4189
- */
4190
- export interface DisassociateFromMasterAccountResponse {
4284
+ Connection?: NetworkConnection | undefined;
4191
4285
  }
4192
4286
  /**
4287
+ * <p>Contains information about the EC2 instance profile.</p>
4193
4288
  * @public
4194
4289
  */
4195
- export interface DisassociateMembersRequest {
4290
+ export interface IamInstanceProfile {
4196
4291
  /**
4197
- * <p>The unique ID of the detector of the GuardDuty account whose members you want to
4198
- * disassociate from the administrator account.</p>
4292
+ * <p>The profile ARN of the EC2 instance.</p>
4199
4293
  * @public
4200
4294
  */
4201
- DetectorId: string | undefined;
4295
+ Arn?: string | undefined;
4202
4296
  /**
4203
- * <p>A list of account IDs of the GuardDuty member accounts that you want to disassociate from
4204
- * the administrator account.</p>
4297
+ * <p>The profile ID of the EC2 instance.</p>
4205
4298
  * @public
4206
4299
  */
4207
- AccountIds: string[] | undefined;
4300
+ Id?: string | undefined;
4208
4301
  }
4209
4302
  /**
4303
+ * <p>Contains information about the product code for the EC2 instance.</p>
4210
4304
  * @public
4211
4305
  */
4212
- export interface DisassociateMembersResponse {
4306
+ export interface ProductCode {
4213
4307
  /**
4214
- * <p>A list of objects that contain the unprocessed account and a result string that explains
4215
- * why it was unprocessed.</p>
4308
+ * <p>The product code information.</p>
4216
4309
  * @public
4217
4310
  */
4218
- UnprocessedAccounts: UnprocessedAccount[] | undefined;
4311
+ Code?: string | undefined;
4312
+ /**
4313
+ * <p>The product code type.</p>
4314
+ * @public
4315
+ */
4316
+ ProductType?: string | undefined;
4219
4317
  }
4220
4318
  /**
4221
- * @public
4222
- * @enum
4223
- */
4224
- export declare const EbsSnapshotPreservation: {
4225
- readonly NO_RETENTION: "NO_RETENTION";
4226
- readonly RETENTION_WITH_FINDING: "RETENTION_WITH_FINDING";
4227
- };
4228
- /**
4229
- * @public
4230
- */
4231
- export type EbsSnapshotPreservation = (typeof EbsSnapshotPreservation)[keyof typeof EbsSnapshotPreservation];
4232
- /**
4233
- * <p>Contains list of scanned and skipped EBS volumes with details.</p>
4319
+ * <p>Details about the potentially impacted Amazon EC2 instance resource.</p>
4234
4320
  * @public
4235
4321
  */
4236
- export interface EbsVolumeDetails {
4322
+ export interface Ec2Instance {
4237
4323
  /**
4238
- * <p>List of EBS volumes that were scanned.</p>
4324
+ * <p>The availability zone of the Amazon EC2 instance. For more information, see
4325
+ * <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-availability-zones">Availability zones</a>
4326
+ * in the <i>Amazon EC2 User Guide</i>.</p>
4239
4327
  * @public
4240
4328
  */
4241
- ScannedVolumeDetails?: VolumeDetail[] | undefined;
4329
+ AvailabilityZone?: string | undefined;
4242
4330
  /**
4243
- * <p>List of EBS volumes that were skipped from the malware scan.</p>
4331
+ * <p>The image description of the Amazon EC2 instance.</p>
4244
4332
  * @public
4245
4333
  */
4246
- SkippedVolumeDetails?: VolumeDetail[] | undefined;
4247
- }
4248
- /**
4249
- * <p>Contains details of the highest severity threat detected during scan and number of
4250
- * infected files.</p>
4251
- * @public
4252
- */
4253
- export interface HighestSeverityThreatDetails {
4334
+ ImageDescription?: string | undefined;
4254
4335
  /**
4255
- * <p>Severity level of the highest severity threat detected.</p>
4336
+ * <p>The state of the Amazon EC2 instance. For more information, see
4337
+ * <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-lifecycle.html">Amazon EC2 instance state changes</a>
4338
+ * in the <i>Amazon EC2 User Guide</i>.</p>
4256
4339
  * @public
4257
4340
  */
4258
- Severity?: string | undefined;
4341
+ InstanceState?: string | undefined;
4259
4342
  /**
4260
- * <p>Threat name of the highest severity threat detected as part of the malware scan.</p>
4343
+ * <p>Contains information about the EC2 instance profile.</p>
4261
4344
  * @public
4262
4345
  */
4263
- ThreatName?: string | undefined;
4346
+ IamInstanceProfile?: IamInstanceProfile | undefined;
4264
4347
  /**
4265
- * <p>Total number of infected files with the highest severity threat detected.</p>
4348
+ * <p>Type of the Amazon EC2 instance.</p>
4266
4349
  * @public
4267
4350
  */
4268
- Count?: number | undefined;
4269
- }
4270
- /**
4271
- * <p>Total number of scanned files.</p>
4272
- * @public
4273
- */
4274
- export interface ScannedItemCount {
4351
+ InstanceType?: string | undefined;
4275
4352
  /**
4276
- * <p>Total GB of files scanned for malware.</p>
4353
+ * <p>The Amazon Resource Name (ARN) of the Amazon Web Services Outpost. This shows applicable Amazon Web Services Outposts instances.</p>
4277
4354
  * @public
4278
4355
  */
4279
- TotalGb?: number | undefined;
4356
+ OutpostArn?: string | undefined;
4280
4357
  /**
4281
- * <p>Number of files scanned.</p>
4358
+ * <p>The platform of the Amazon EC2 instance.</p>
4282
4359
  * @public
4283
4360
  */
4284
- Files?: number | undefined;
4361
+ Platform?: string | undefined;
4285
4362
  /**
4286
- * <p>Total number of scanned volumes.</p>
4363
+ * <p>The product code of the Amazon EC2 instance.</p>
4287
4364
  * @public
4288
4365
  */
4289
- Volumes?: number | undefined;
4366
+ ProductCodes?: ProductCode[] | undefined;
4367
+ /**
4368
+ * <p>The ID of the network interface.</p>
4369
+ * @public
4370
+ */
4371
+ Ec2NetworkInterfaceUids?: string[] | undefined;
4290
4372
  }
4291
4373
  /**
4292
- * <p>Contains details of infected file including name, file path and hash.</p>
4374
+ * <p>Contains other private IP address information of the EC2 instance.</p>
4293
4375
  * @public
4294
4376
  */
4295
- export interface ScanFilePath {
4296
- /**
4297
- * <p>The file path of the infected file.</p>
4298
- * @public
4299
- */
4300
- FilePath?: string | undefined;
4301
- /**
4302
- * <p>EBS volume ARN details of the infected file.</p>
4303
- * @public
4304
- */
4305
- VolumeArn?: string | undefined;
4377
+ export interface PrivateIpAddressDetails {
4306
4378
  /**
4307
- * <p>The hash value of the infected file.</p>
4379
+ * <p>The private DNS name of the EC2 instance.</p>
4308
4380
  * @public
4309
4381
  */
4310
- Hash?: string | undefined;
4382
+ PrivateDnsName?: string | undefined;
4311
4383
  /**
4312
- * <p>File name of the infected file.</p>
4384
+ * <p>The private IP address of the EC2 instance.</p>
4313
4385
  * @public
4314
4386
  */
4315
- FileName?: string | undefined;
4387
+ PrivateIpAddress?: string | undefined;
4316
4388
  }
4317
4389
  /**
4318
- * <p>Contains files infected with the given threat providing details of malware name and
4319
- * severity.</p>
4390
+ * <p>Contains information about the security groups associated with the EC2 instance.</p>
4320
4391
  * @public
4321
4392
  */
4322
- export interface ScanThreatName {
4393
+ export interface SecurityGroup {
4323
4394
  /**
4324
- * <p>The name of the identified threat.</p>
4395
+ * <p>The security group ID of the EC2 instance.</p>
4325
4396
  * @public
4326
4397
  */
4327
- Name?: string | undefined;
4398
+ GroupId?: string | undefined;
4328
4399
  /**
4329
- * <p>Severity of threat identified as part of the malware scan.</p>
4400
+ * <p>The security group name of the EC2 instance.</p>
4330
4401
  * @public
4331
4402
  */
4332
- Severity?: string | undefined;
4403
+ GroupName?: string | undefined;
4404
+ }
4405
+ /**
4406
+ * <p>Contains information about the elastic network interface of the Amazon EC2 instance.</p>
4407
+ * @public
4408
+ */
4409
+ export interface Ec2NetworkInterface {
4333
4410
  /**
4334
- * <p>Total number of files infected with given threat.</p>
4411
+ * <p>A list of IPv6 addresses for the Amazon EC2 instance.</p>
4335
4412
  * @public
4336
4413
  */
4337
- ItemCount?: number | undefined;
4414
+ Ipv6Addresses?: string[] | undefined;
4338
4415
  /**
4339
- * <p>List of infected files in EBS volume with details.</p>
4416
+ * <p>Other private IP address information of the Amazon EC2 instance.</p>
4340
4417
  * @public
4341
4418
  */
4342
- FilePaths?: ScanFilePath[] | undefined;
4343
- }
4344
- /**
4345
- * <p>Contains details about identified threats organized by threat name.</p>
4346
- * @public
4347
- */
4348
- export interface ThreatDetectedByName {
4419
+ PrivateIpAddresses?: PrivateIpAddressDetails[] | undefined;
4349
4420
  /**
4350
- * <p>Total number of infected files identified.</p>
4421
+ * <p>The public IP address of the Amazon EC2 instance.</p>
4351
4422
  * @public
4352
4423
  */
4353
- ItemCount?: number | undefined;
4424
+ PublicIp?: string | undefined;
4354
4425
  /**
4355
- * <p>Total number of unique threats by name identified, as part of the malware scan.</p>
4426
+ * <p>The security groups associated with the Amazon EC2 instance.</p>
4356
4427
  * @public
4357
4428
  */
4358
- UniqueThreatNameCount?: number | undefined;
4429
+ SecurityGroups?: SecurityGroup[] | undefined;
4359
4430
  /**
4360
- * <p>Flag to determine if the finding contains every single infected file-path and/or every
4361
- * threat.</p>
4431
+ * <p>The subnet ID of the Amazon EC2 instance.</p>
4362
4432
  * @public
4363
4433
  */
4364
- Shortened?: boolean | undefined;
4434
+ SubNetId?: string | undefined;
4365
4435
  /**
4366
- * <p>List of identified threats with details, organized by threat name.</p>
4436
+ * <p>The VPC ID of the Amazon EC2 instance.</p>
4367
4437
  * @public
4368
4438
  */
4369
- ThreatNames?: ScanThreatName[] | undefined;
4439
+ VpcId?: string | undefined;
4370
4440
  }
4371
4441
  /**
4372
- * <p>Contains total number of infected files.</p>
4373
4442
  * @public
4443
+ * @enum
4374
4444
  */
4375
- export interface ThreatsDetectedItemCount {
4376
- /**
4377
- * <p>Total number of infected files.</p>
4378
- * @public
4379
- */
4380
- Files?: number | undefined;
4381
- }
4445
+ export declare const PublicAccessStatus: {
4446
+ readonly ALLOWED: "ALLOWED";
4447
+ readonly BLOCKED: "BLOCKED";
4448
+ };
4382
4449
  /**
4383
- * <p>Contains a complete view providing malware scan result details.</p>
4384
4450
  * @public
4385
4451
  */
4386
- export interface ScanDetections {
4452
+ export type PublicAccessStatus = (typeof PublicAccessStatus)[keyof typeof PublicAccessStatus];
4453
+ /**
4454
+ * @public
4455
+ * @enum
4456
+ */
4457
+ export declare const PublicAclIgnoreBehavior: {
4458
+ readonly IGNORED: "IGNORED";
4459
+ readonly NOT_IGNORED: "NOT_IGNORED";
4460
+ };
4461
+ /**
4462
+ * @public
4463
+ */
4464
+ export type PublicAclIgnoreBehavior = (typeof PublicAclIgnoreBehavior)[keyof typeof PublicAclIgnoreBehavior];
4465
+ /**
4466
+ * @public
4467
+ * @enum
4468
+ */
4469
+ export declare const PublicBucketRestrictBehavior: {
4470
+ readonly NOT_RESTRICTED: "NOT_RESTRICTED";
4471
+ readonly RESTRICTED: "RESTRICTED";
4472
+ };
4473
+ /**
4474
+ * @public
4475
+ */
4476
+ export type PublicBucketRestrictBehavior = (typeof PublicBucketRestrictBehavior)[keyof typeof PublicBucketRestrictBehavior];
4477
+ /**
4478
+ * <p>Describes public access policies that apply to the Amazon S3 bucket.</p>
4479
+ * <p>For information about each of the following settings, see
4480
+ * <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-control-block-public-access.html">Blocking public access to your Amazon S3 storage</a> in the <i>Amazon S3 User Guide</i>.</p>
4481
+ * @public
4482
+ */
4483
+ export interface PublicAccessConfiguration {
4387
4484
  /**
4388
- * <p>Total number of scanned files.</p>
4485
+ * <p>Indicates whether or not there is a setting that allows public access to the Amazon S3 buckets through access
4486
+ * control lists (ACLs).</p>
4389
4487
  * @public
4390
4488
  */
4391
- ScannedItemCount?: ScannedItemCount | undefined;
4489
+ PublicAclAccess?: PublicAccessStatus | undefined;
4392
4490
  /**
4393
- * <p>Total number of infected files.</p>
4491
+ * <p>Indicates whether or not there is a setting that allows public access to the Amazon S3 bucket policy.</p>
4394
4492
  * @public
4395
4493
  */
4396
- ThreatsDetectedItemCount?: ThreatsDetectedItemCount | undefined;
4494
+ PublicPolicyAccess?: PublicAccessStatus | undefined;
4397
4495
  /**
4398
- * <p>Details of the highest severity threat detected during malware scan and number of infected
4399
- * files.</p>
4496
+ * <p>Indicates whether or not there is a setting that ignores all public access control lists (ACLs)
4497
+ * on the Amazon S3 bucket and the objects that it contains.</p>
4400
4498
  * @public
4401
4499
  */
4402
- HighestSeverityThreatDetails?: HighestSeverityThreatDetails | undefined;
4500
+ PublicAclIgnoreBehavior?: PublicAclIgnoreBehavior | undefined;
4403
4501
  /**
4404
- * <p>Contains details about identified threats organized by threat name.</p>
4502
+ * <p>Indicates whether or not there is a setting that restricts access to the bucket with specified policies.</p>
4405
4503
  * @public
4406
4504
  */
4407
- ThreatDetectedByName?: ThreatDetectedByName | undefined;
4505
+ PublicBucketRestrictBehavior?: PublicBucketRestrictBehavior | undefined;
4408
4506
  }
4409
4507
  /**
4410
- * <p>Contains details from the malware scan that created a finding.</p>
4508
+ * <p>Contains information about the Amazon S3 bucket policies and encryption.</p>
4411
4509
  * @public
4412
4510
  */
4413
- export interface EbsVolumeScanDetails {
4511
+ export interface S3Bucket {
4414
4512
  /**
4415
- * <p>Unique Id of the malware scan that generated the finding.</p>
4513
+ * <p>The owner ID of the associated S3Amazon S3bucket.</p>
4416
4514
  * @public
4417
4515
  */
4418
- ScanId?: string | undefined;
4516
+ OwnerId?: string | undefined;
4419
4517
  /**
4420
- * <p>Returns the start date and time of the malware scan.</p>
4518
+ * <p>The timestamp at which the Amazon S3 bucket was created.</p>
4421
4519
  * @public
4422
4520
  */
4423
- ScanStartedAt?: Date | undefined;
4521
+ CreatedAt?: Date | undefined;
4424
4522
  /**
4425
- * <p>Returns the completion date and time of the malware scan.</p>
4523
+ * <p>The type of encryption used for the Amazon S3 buckets and its objects. For more information,
4524
+ * see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/serv-side-encryption.html">Protecting data with server-side encryption</a>
4525
+ * in the <i>Amazon S3 User Guide</i>.</p>
4426
4526
  * @public
4427
4527
  */
4428
- ScanCompletedAt?: Date | undefined;
4528
+ EncryptionType?: string | undefined;
4429
4529
  /**
4430
- * <p>GuardDuty finding ID that triggered a malware scan.</p>
4530
+ * <p>The Amazon Resource Name (ARN) of the encryption key that is used to encrypt the Amazon S3 bucket and its objects.</p>
4431
4531
  * @public
4432
4532
  */
4433
- TriggerFindingId?: string | undefined;
4533
+ EncryptionKeyArn?: string | undefined;
4434
4534
  /**
4435
- * <p>Contains list of threat intelligence sources used to detect threats.</p>
4535
+ * <p>Describes the effective permissions on this S3 bucket, after factoring all the attached policies.</p>
4436
4536
  * @public
4437
4537
  */
4438
- Sources?: string[] | undefined;
4538
+ EffectivePermission?: string | undefined;
4439
4539
  /**
4440
- * <p>Contains a complete view providing malware scan result details.</p>
4540
+ * <p>Indicates whether or not the public read access is allowed for an Amazon S3 bucket.</p>
4441
4541
  * @public
4442
4542
  */
4443
- ScanDetections?: ScanDetections | undefined;
4543
+ PublicReadAccess?: PublicAccessStatus | undefined;
4444
4544
  /**
4445
- * <p>Specifies the scan type that invoked the malware scan.</p>
4545
+ * <p>Indicates whether or not the public write access is allowed for an Amazon S3 bucket.</p>
4446
4546
  * @public
4447
4547
  */
4448
- ScanType?: ScanType | undefined;
4449
- }
4450
- /**
4451
- * <p>Contains information about a tag key-value pair.</p>
4452
- * @public
4453
- */
4454
- export interface Tag {
4548
+ PublicWriteAccess?: PublicAccessStatus | undefined;
4455
4549
  /**
4456
- * <p>Describes the key associated with the tag.</p>
4550
+ * <p>Contains information about the public access policies that apply to the Amazon S3 bucket at the account level.</p>
4457
4551
  * @public
4458
4552
  */
4459
- Key?: string | undefined;
4553
+ AccountPublicAccess?: PublicAccessConfiguration | undefined;
4460
4554
  /**
4461
- * <p>Describes the value associated with the tag key.</p>
4555
+ * <p>Contains information about public access policies that apply to the Amazon S3 bucket.</p>
4462
4556
  * @public
4463
4557
  */
4464
- Value?: string | undefined;
4465
- }
4466
- /**
4467
- * <p>Represents a pre-existing file or directory on the host machine that the volume maps
4468
- * to.</p>
4469
- * @public
4470
- */
4471
- export interface HostPath {
4558
+ BucketPublicAccess?: PublicAccessConfiguration | undefined;
4472
4559
  /**
4473
- * <p>Path of the file or directory on the host that the volume maps to.</p>
4560
+ * <p>Represents a list of Amazon S3 object identifiers.</p>
4474
4561
  * @public
4475
4562
  */
4476
- Path?: string | undefined;
4563
+ S3ObjectUids?: string[] | undefined;
4477
4564
  }
4478
4565
  /**
4479
- * <p>Volume used by the Kubernetes workload.</p>
4566
+ * <p>Contains information about the Amazon S3 object.</p>
4480
4567
  * @public
4481
4568
  */
4482
- export interface Volume {
4569
+ export interface S3Object {
4483
4570
  /**
4484
- * <p>Volume name.</p>
4571
+ * <p>The entity tag is a hash of the Amazon S3 object. The ETag reflects changes only to the
4572
+ * contents of an object, and not its metadata.</p>
4485
4573
  * @public
4486
4574
  */
4487
- Name?: string | undefined;
4575
+ ETag?: string | undefined;
4488
4576
  /**
4489
- * <p>Represents a pre-existing file or directory on the host machine that the volume maps
4490
- * to.</p>
4577
+ * <p>The key of the Amazon S3 object.</p>
4491
4578
  * @public
4492
4579
  */
4493
- HostPath?: HostPath | undefined;
4580
+ Key?: string | undefined;
4581
+ /**
4582
+ * <p>The version Id of the Amazon S3 object.</p>
4583
+ * @public
4584
+ */
4585
+ VersionId?: string | undefined;
4494
4586
  }
4495
4587
  /**
4496
- * <p>Contains information about the task in an ECS cluster.</p>
4588
+ * <p>Contains information about the Amazon Web Services resource that is associated with the activity that prompted
4589
+ * GuardDuty to generate a finding.</p>
4497
4590
  * @public
4498
4591
  */
4499
- export interface EcsTaskDetails {
4592
+ export interface ResourceData {
4500
4593
  /**
4501
- * <p>The Amazon Resource Name (ARN) of the task.</p>
4594
+ * <p>Contains information about the Amazon S3 bucket.</p>
4502
4595
  * @public
4503
4596
  */
4504
- Arn?: string | undefined;
4597
+ S3Bucket?: S3Bucket | undefined;
4505
4598
  /**
4506
- * <p>The ARN of the task definition that creates the task.</p>
4599
+ * <p>Contains information about the Amazon EC2 instance.</p>
4507
4600
  * @public
4508
4601
  */
4509
- DefinitionArn?: string | undefined;
4602
+ Ec2Instance?: Ec2Instance | undefined;
4510
4603
  /**
4511
- * <p>The version counter for the task.</p>
4604
+ * <p>Contains information about the IAM access key details of a user that involved in the GuardDuty finding.</p>
4512
4605
  * @public
4513
4606
  */
4514
- Version?: string | undefined;
4607
+ AccessKey?: AccessKey | undefined;
4515
4608
  /**
4516
- * <p>The Unix timestamp for the time when the task was created.</p>
4609
+ * <p>Contains information about the elastic network interface of the Amazon EC2 instance.</p>
4517
4610
  * @public
4518
4611
  */
4519
- TaskCreatedAt?: Date | undefined;
4612
+ Ec2NetworkInterface?: Ec2NetworkInterface | undefined;
4520
4613
  /**
4521
- * <p>The Unix timestamp for the time when the task started.</p>
4614
+ * <p>Contains information about the Amazon S3 object.</p>
4522
4615
  * @public
4523
4616
  */
4524
- StartedAt?: Date | undefined;
4617
+ S3Object?: S3Object | undefined;
4618
+ }
4619
+ /**
4620
+ * @public
4621
+ * @enum
4622
+ */
4623
+ export declare const FindingResourceType: {
4624
+ readonly ACCESS_KEY: "ACCESS_KEY";
4625
+ readonly EC2_INSTANCE: "EC2_INSTANCE";
4626
+ readonly EC2_NETWORK_INTERFACE: "EC2_NETWORK_INTERFACE";
4627
+ readonly S3_BUCKET: "S3_BUCKET";
4628
+ readonly S3_OBJECT: "S3_OBJECT";
4629
+ };
4630
+ /**
4631
+ * @public
4632
+ */
4633
+ export type FindingResourceType = (typeof FindingResourceType)[keyof typeof FindingResourceType];
4634
+ /**
4635
+ * <p>Contains information about a tag key-value pair.</p>
4636
+ * @public
4637
+ */
4638
+ export interface Tag {
4525
4639
  /**
4526
- * <p>Contains the tag specified when a task is started.</p>
4640
+ * <p>Describes the key associated with the tag.</p>
4527
4641
  * @public
4528
4642
  */
4529
- StartedBy?: string | undefined;
4643
+ Key?: string | undefined;
4530
4644
  /**
4531
- * <p>The tags of the ECS Task.</p>
4645
+ * <p>Describes the value associated with the tag key.</p>
4532
4646
  * @public
4533
4647
  */
4534
- Tags?: Tag[] | undefined;
4648
+ Value?: string | undefined;
4649
+ }
4650
+ /**
4651
+ * <p>Contains information about the Amazon Web Services resource that is associated with the GuardDuty finding.</p>
4652
+ * @public
4653
+ */
4654
+ export interface ResourceV2 {
4535
4655
  /**
4536
- * <p>The list of data volume definitions for the task.</p>
4656
+ * <p>The unique identifier of the resource.</p>
4537
4657
  * @public
4538
4658
  */
4539
- Volumes?: Volume[] | undefined;
4659
+ Uid: string | undefined;
4540
4660
  /**
4541
- * <p>The containers that's associated with the task.</p>
4661
+ * <p>The name of the resource.</p>
4542
4662
  * @public
4543
4663
  */
4544
- Containers?: Container[] | undefined;
4664
+ Name?: string | undefined;
4545
4665
  /**
4546
- * <p>The name of the task group that's associated with the task.</p>
4666
+ * <p>The Amazon Web Services account ID to which the resource belongs.</p>
4547
4667
  * @public
4548
4668
  */
4549
- Group?: string | undefined;
4669
+ AccountId?: string | undefined;
4550
4670
  /**
4551
- * <p>A capacity on which the task is running. For example, <code>Fargate</code> and <code>EC2</code>.</p>
4671
+ * <p>The type of the Amazon Web Services resource.</p>
4552
4672
  * @public
4553
4673
  */
4554
- LaunchType?: string | undefined;
4555
- }
4556
- /**
4557
- * <p>Contains information about the details of the ECS Cluster.</p>
4558
- * @public
4559
- */
4560
- export interface EcsClusterDetails {
4674
+ ResourceType: FindingResourceType | undefined;
4561
4675
  /**
4562
- * <p>The name of the ECS Cluster.</p>
4676
+ * <p>The Amazon Web Services Region where the resource belongs.</p>
4563
4677
  * @public
4564
4678
  */
4565
- Name?: string | undefined;
4679
+ Region?: string | undefined;
4566
4680
  /**
4567
- * <p>The Amazon Resource Name (ARN) that identifies the cluster.</p>
4681
+ * <p>The Amazon Web Services service of the resource.</p>
4568
4682
  * @public
4569
4683
  */
4570
- Arn?: string | undefined;
4684
+ Service?: string | undefined;
4571
4685
  /**
4572
- * <p>The status of the ECS cluster.</p>
4686
+ * <p>The cloud partition within the Amazon Web Services Region to which the resource belongs.</p>
4573
4687
  * @public
4574
4688
  */
4575
- Status?: string | undefined;
4689
+ CloudPartition?: string | undefined;
4576
4690
  /**
4577
- * <p>The number of services that are running on the cluster in an ACTIVE state.</p>
4578
- * @public
4579
- */
4580
- ActiveServicesCount?: number | undefined;
4581
- /**
4582
- * <p>The number of container instances registered into the cluster.</p>
4583
- * @public
4584
- */
4585
- RegisteredContainerInstancesCount?: number | undefined;
4586
- /**
4587
- * <p>The number of tasks in the cluster that are in the RUNNING state.</p>
4588
- * @public
4589
- */
4590
- RunningTasksCount?: number | undefined;
4591
- /**
4592
- * <p>The tags of the ECS Cluster.</p>
4593
- * @public
4594
- */
4595
- Tags?: Tag[] | undefined;
4596
- /**
4597
- * <p>Contains information about the details of the ECS Task.</p>
4598
- * @public
4599
- */
4600
- TaskDetails?: EcsTaskDetails | undefined;
4601
- }
4602
- /**
4603
- * <p>Details about the EKS cluster involved in a Kubernetes finding.</p>
4604
- * @public
4605
- */
4606
- export interface EksClusterDetails {
4607
- /**
4608
- * <p>EKS cluster name.</p>
4609
- * @public
4610
- */
4611
- Name?: string | undefined;
4612
- /**
4613
- * <p>EKS cluster ARN.</p>
4614
- * @public
4615
- */
4616
- Arn?: string | undefined;
4617
- /**
4618
- * <p>The VPC ID to which the EKS cluster is attached.</p>
4619
- * @public
4620
- */
4621
- VpcId?: string | undefined;
4622
- /**
4623
- * <p>The EKS cluster status.</p>
4624
- * @public
4625
- */
4626
- Status?: string | undefined;
4627
- /**
4628
- * <p>The EKS cluster tags.</p>
4691
+ * <p>Contains information about the tags associated with the resource.</p>
4629
4692
  * @public
4630
4693
  */
4631
4694
  Tags?: Tag[] | undefined;
4632
4695
  /**
4633
- * <p>The timestamp when the EKS cluster was created.</p>
4696
+ * <p>Contains information about the Amazon Web Services resource associated with the activity that prompted
4697
+ * GuardDuty to generate a finding.</p>
4634
4698
  * @public
4635
4699
  */
4636
- CreatedAt?: Date | undefined;
4700
+ Data?: ResourceData | undefined;
4637
4701
  }
4638
4702
  /**
4639
4703
  * @public
4704
+ * @enum
4640
4705
  */
4641
- export interface EnableOrganizationAdminAccountRequest {
4642
- /**
4643
- * <p>The Amazon Web Services account ID for the organization account to be enabled as a GuardDuty delegated
4644
- * administrator.</p>
4645
- * @public
4646
- */
4647
- AdminAccountId: string | undefined;
4648
- }
4706
+ export declare const IndicatorType: {
4707
+ readonly ATTACK_TACTIC: "ATTACK_TACTIC";
4708
+ readonly ATTACK_TECHNIQUE: "ATTACK_TECHNIQUE";
4709
+ readonly HIGH_RISK_API: "HIGH_RISK_API";
4710
+ readonly MALICIOUS_IP: "MALICIOUS_IP";
4711
+ readonly SUSPICIOUS_NETWORK: "SUSPICIOUS_NETWORK";
4712
+ readonly SUSPICIOUS_USER_AGENT: "SUSPICIOUS_USER_AGENT";
4713
+ readonly TOR_IP: "TOR_IP";
4714
+ readonly UNUSUAL_API_FOR_ACCOUNT: "UNUSUAL_API_FOR_ACCOUNT";
4715
+ readonly UNUSUAL_ASN_FOR_ACCOUNT: "UNUSUAL_ASN_FOR_ACCOUNT";
4716
+ readonly UNUSUAL_ASN_FOR_USER: "UNUSUAL_ASN_FOR_USER";
4717
+ };
4649
4718
  /**
4650
4719
  * @public
4651
4720
  */
4652
- export interface EnableOrganizationAdminAccountResponse {
4653
- }
4721
+ export type IndicatorType = (typeof IndicatorType)[keyof typeof IndicatorType];
4654
4722
  /**
4655
- * <p>An instance of a threat intelligence detail that constitutes evidence for the
4656
- * finding.</p>
4723
+ * <p>Contains information about the indicators that include a set of
4724
+ * signals observed in an attack sequence.</p>
4657
4725
  * @public
4658
4726
  */
4659
- export interface ThreatIntelligenceDetail {
4660
- /**
4661
- * <p>The name of the threat intelligence list that triggered the finding.</p>
4662
- * @public
4663
- */
4664
- ThreatListName?: string | undefined;
4727
+ export interface Indicator {
4665
4728
  /**
4666
- * <p>A list of names of the threats in the threat intelligence list that triggered the
4667
- * finding.</p>
4729
+ * <p>Specific indicator keys observed in the attack sequence.</p>
4668
4730
  * @public
4669
4731
  */
4670
- ThreatNames?: string[] | undefined;
4732
+ Key: IndicatorType | undefined;
4671
4733
  /**
4672
- * <p>SHA256 of the file that generated the finding.</p>
4734
+ * <p>Values associated with each indicator key. For example, if the indicator key is
4735
+ * <code>SUSPICIOUS_NETWORK</code>, then the value will be the name of the network. If
4736
+ * the indicator key is <code>ATTACK_TACTIC</code>, then the value will be one of the MITRE tactics. </p>
4737
+ * <p>For more information about the
4738
+ * values associated with the key, see GuardDuty Extended Threat Detection in the
4739
+ * <i>GuardDuty User Guide.</i>
4740
+ * </p>
4673
4741
  * @public
4674
4742
  */
4675
- ThreatFileSha256?: string | undefined;
4676
- }
4677
- /**
4678
- * <p>Contains information about the reason that the finding was generated.</p>
4679
- * @public
4680
- */
4681
- export interface Evidence {
4743
+ Values?: string[] | undefined;
4682
4744
  /**
4683
- * <p>A list of threat intelligence details related to the evidence.</p>
4745
+ * <p>Title describing the indicator.</p>
4684
4746
  * @public
4685
4747
  */
4686
- ThreatIntelligenceDetails?: ThreatIntelligenceDetail[] | undefined;
4748
+ Title?: string | undefined;
4687
4749
  }
4688
4750
  /**
4689
4751
  * @public
4690
4752
  * @enum
4691
4753
  */
4692
- export declare const Feedback: {
4693
- readonly NOT_USEFUL: "NOT_USEFUL";
4694
- readonly USEFUL: "USEFUL";
4754
+ export declare const SignalType: {
4755
+ readonly CLOUD_TRAIL: "CLOUD_TRAIL";
4756
+ readonly FINDING: "FINDING";
4757
+ readonly S3_DATA_EVENTS: "S3_DATA_EVENTS";
4695
4758
  };
4696
4759
  /**
4697
4760
  * @public
4698
4761
  */
4699
- export type Feedback = (typeof Feedback)[keyof typeof Feedback];
4700
- /**
4701
- * <p>Contains information about the EC2 instance profile.</p>
4702
- * @public
4703
- */
4704
- export interface IamInstanceProfile {
4705
- /**
4706
- * <p>The profile ARN of the EC2 instance.</p>
4707
- * @public
4708
- */
4709
- Arn?: string | undefined;
4710
- /**
4711
- * <p>The profile ID of the EC2 instance.</p>
4712
- * @public
4713
- */
4714
- Id?: string | undefined;
4715
- }
4716
- /**
4717
- * <p>Contains other private IP address information of the EC2 instance.</p>
4718
- * @public
4719
- */
4720
- export interface PrivateIpAddressDetails {
4721
- /**
4722
- * <p>The private DNS name of the EC2 instance.</p>
4723
- * @public
4724
- */
4725
- PrivateDnsName?: string | undefined;
4726
- /**
4727
- * <p>The private IP address of the EC2 instance.</p>
4728
- * @public
4729
- */
4730
- PrivateIpAddress?: string | undefined;
4731
- }
4762
+ export type SignalType = (typeof SignalType)[keyof typeof SignalType];
4732
4763
  /**
4733
- * <p>Contains information about the security groups associated with the EC2 instance.</p>
4764
+ * <p>Contains information about the signals involved in the attack sequence.</p>
4734
4765
  * @public
4735
4766
  */
4736
- export interface SecurityGroup {
4767
+ export interface Signal {
4737
4768
  /**
4738
- * <p>The security group ID of the EC2 instance.</p>
4769
+ * <p>The unique identifier of the signal.</p>
4739
4770
  * @public
4740
4771
  */
4741
- GroupId?: string | undefined;
4772
+ Uid: string | undefined;
4742
4773
  /**
4743
- * <p>The security group name of the EC2 instance.</p>
4774
+ * <p>The type of the signal used to identify an attack sequence.</p>
4775
+ * <p>Signals can be GuardDuty findings or activities observed in data sources that GuardDuty monitors. For
4776
+ * more information, see
4777
+ * <a href="https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_data-sources.html">Foundational data sources</a> in the
4778
+ * <i>GuardDuty User Guide</i>.</p>
4779
+ * <p>A signal type can be one of the valid values listed in this API. Here are the related descriptions:</p>
4780
+ * <ul>
4781
+ * <li>
4782
+ * <p>
4783
+ * <code>FINDING</code> - Individually generated GuardDuty finding.</p>
4784
+ * </li>
4785
+ * <li>
4786
+ * <p>
4787
+ * <code>CLOUD_TRAIL</code> - Activity observed from CloudTrail logs</p>
4788
+ * </li>
4789
+ * <li>
4790
+ * <p>
4791
+ * <code>S3_DATA_EVENTS</code> - Activity observed from CloudTrail data events for S3. Activities associated
4792
+ * with this type will show up only when
4793
+ * you have enabled GuardDuty S3 Protection feature in your account. For more information about S3 Protection and
4794
+ * steps to enable it, see <a href="https://docs.aws.amazon.com/guardduty/latest/ug/s3-protection.html">S3 Protection</a> in the
4795
+ * <i>GuardDuty User Guide</i>.</p>
4796
+ * </li>
4797
+ * </ul>
4744
4798
  * @public
4745
4799
  */
4746
- GroupName?: string | undefined;
4747
- }
4748
- /**
4749
- * <p>Contains information about the elastic network interface of the EC2 instance.</p>
4750
- * @public
4751
- */
4752
- export interface NetworkInterface {
4800
+ Type: SignalType | undefined;
4753
4801
  /**
4754
- * <p>A list of IPv6 addresses for the EC2 instance.</p>
4802
+ * <p>The description of the signal.</p>
4755
4803
  * @public
4756
4804
  */
4757
- Ipv6Addresses?: string[] | undefined;
4805
+ Description?: string | undefined;
4758
4806
  /**
4759
- * <p>The ID of the network interface.</p>
4807
+ * <p>The name of the signal. For example, when signal type is <code>FINDING</code>,
4808
+ * the signal name is the name of the finding.</p>
4760
4809
  * @public
4761
4810
  */
4762
- NetworkInterfaceId?: string | undefined;
4811
+ Name: string | undefined;
4763
4812
  /**
4764
- * <p>The private DNS name of the EC2 instance.</p>
4813
+ * <p>The timestamp when the first finding or activity related to this signal was observed.</p>
4765
4814
  * @public
4766
4815
  */
4767
- PrivateDnsName?: string | undefined;
4816
+ CreatedAt: Date | undefined;
4768
4817
  /**
4769
- * <p>The private IP address of the EC2 instance.</p>
4818
+ * <p>The timestamp when this signal was last observed.</p>
4770
4819
  * @public
4771
4820
  */
4772
- PrivateIpAddress?: string | undefined;
4821
+ UpdatedAt: Date | undefined;
4773
4822
  /**
4774
- * <p>Other private IP address information of the EC2 instance.</p>
4823
+ * <p>The timestamp when the first finding or activity related to this signal was observed.</p>
4775
4824
  * @public
4776
4825
  */
4777
- PrivateIpAddresses?: PrivateIpAddressDetails[] | undefined;
4826
+ FirstSeenAt: Date | undefined;
4778
4827
  /**
4779
- * <p>The public DNS name of the EC2 instance.</p>
4828
+ * <p>The timestamp when the last finding or activity related to this signal was observed.</p>
4780
4829
  * @public
4781
4830
  */
4782
- PublicDnsName?: string | undefined;
4831
+ LastSeenAt: Date | undefined;
4783
4832
  /**
4784
- * <p>The public IP address of the EC2 instance.</p>
4833
+ * <p>The severity associated with the signal. For more information about severity, see
4834
+ * <a href="https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_findings-severity.html">Findings severity levels</a>
4835
+ * in the <i>GuardDuty User Guide</i>.</p>
4785
4836
  * @public
4786
4837
  */
4787
- PublicIp?: string | undefined;
4838
+ Severity?: number | undefined;
4788
4839
  /**
4789
- * <p>The security groups associated with the EC2 instance.</p>
4840
+ * <p>The number of times this signal was observed.</p>
4790
4841
  * @public
4791
4842
  */
4792
- SecurityGroups?: SecurityGroup[] | undefined;
4843
+ Count: number | undefined;
4793
4844
  /**
4794
- * <p>The subnet ID of the EC2 instance.</p>
4845
+ * <p>Information about the unique identifiers of the resources involved in the signal.</p>
4795
4846
  * @public
4796
4847
  */
4797
- SubnetId?: string | undefined;
4848
+ ResourceUids?: string[] | undefined;
4798
4849
  /**
4799
- * <p>The VPC ID of the EC2 instance.</p>
4850
+ * <p>Information about the IDs of the threat actors involved in the signal.</p>
4800
4851
  * @public
4801
4852
  */
4802
- VpcId?: string | undefined;
4803
- }
4804
- /**
4805
- * <p>Contains information about the product code for the EC2 instance.</p>
4806
- * @public
4807
- */
4808
- export interface ProductCode {
4853
+ ActorIds?: string[] | undefined;
4809
4854
  /**
4810
- * <p>The product code information.</p>
4855
+ * <p>Information about the endpoint IDs associated with this signal.</p>
4811
4856
  * @public
4812
4857
  */
4813
- Code?: string | undefined;
4858
+ EndpointIds?: string[] | undefined;
4814
4859
  /**
4815
- * <p>The product code type.</p>
4860
+ * <p>Contains information about the indicators associated with the signals.</p>
4816
4861
  * @public
4817
4862
  */
4818
- ProductType?: string | undefined;
4863
+ SignalIndicators?: Indicator[] | undefined;
4819
4864
  }
4820
4865
  /**
4821
- * <p>Contains information about the details of an instance.</p>
4866
+ * <p>Contains information about the GuardDuty attack sequence finding.</p>
4822
4867
  * @public
4823
4868
  */
4824
- export interface InstanceDetails {
4825
- /**
4826
- * <p>The Availability Zone of the EC2 instance.</p>
4827
- * @public
4828
- */
4829
- AvailabilityZone?: string | undefined;
4830
- /**
4831
- * <p>The profile information of the EC2 instance.</p>
4832
- * @public
4833
- */
4834
- IamInstanceProfile?: IamInstanceProfile | undefined;
4835
- /**
4836
- * <p>The image description of the EC2 instance.</p>
4837
- * @public
4838
- */
4839
- ImageDescription?: string | undefined;
4840
- /**
4841
- * <p>The image ID of the EC2 instance.</p>
4842
- * @public
4843
- */
4844
- ImageId?: string | undefined;
4845
- /**
4846
- * <p>The ID of the EC2 instance.</p>
4847
- * @public
4848
- */
4849
- InstanceId?: string | undefined;
4850
- /**
4851
- * <p>The state of the EC2 instance.</p>
4852
- * @public
4853
- */
4854
- InstanceState?: string | undefined;
4869
+ export interface Sequence {
4855
4870
  /**
4856
- * <p>The type of the EC2 instance.</p>
4871
+ * <p>Unique identifier of the attack sequence.</p>
4857
4872
  * @public
4858
4873
  */
4859
- InstanceType?: string | undefined;
4874
+ Uid: string | undefined;
4860
4875
  /**
4861
- * <p>The Amazon Resource Name (ARN) of the Amazon Web Services Outpost. Only applicable to Amazon Web Services Outposts
4862
- * instances.</p>
4876
+ * <p>Description of the attack sequence.</p>
4863
4877
  * @public
4864
4878
  */
4865
- OutpostArn?: string | undefined;
4879
+ Description: string | undefined;
4866
4880
  /**
4867
- * <p>The launch time of the EC2 instance.</p>
4881
+ * <p>Contains information about the actors involved in the attack sequence.</p>
4868
4882
  * @public
4869
4883
  */
4870
- LaunchTime?: string | undefined;
4884
+ Actors?: Actor[] | undefined;
4871
4885
  /**
4872
- * <p>The elastic network interface information of the EC2 instance.</p>
4886
+ * <p>Contains information about the resources involved in the attack sequence.</p>
4873
4887
  * @public
4874
4888
  */
4875
- NetworkInterfaces?: NetworkInterface[] | undefined;
4889
+ Resources?: ResourceV2[] | undefined;
4876
4890
  /**
4877
- * <p>The platform of the EC2 instance.</p>
4891
+ * <p>Contains information about the network endpoints that were used in the attack sequence.</p>
4878
4892
  * @public
4879
4893
  */
4880
- Platform?: string | undefined;
4894
+ Endpoints?: NetworkEndpoint[] | undefined;
4881
4895
  /**
4882
- * <p>The product code of the EC2 instance.</p>
4896
+ * <p>Contains information about the signals involved in the attack sequence.</p>
4883
4897
  * @public
4884
4898
  */
4885
- ProductCodes?: ProductCode[] | undefined;
4899
+ Signals: Signal[] | undefined;
4886
4900
  /**
4887
- * <p>The tags of the EC2 instance.</p>
4901
+ * <p>Contains information about the indicators observed in the attack sequence.</p>
4888
4902
  * @public
4889
4903
  */
4890
- Tags?: Tag[] | undefined;
4904
+ SequenceIndicators?: Indicator[] | undefined;
4891
4905
  }
4892
4906
  /**
4893
- * <p>Contains information about the impersonated user.</p>
4907
+ * <p>Contains information about the detected behavior.</p>
4894
4908
  * @public
4895
4909
  */
4896
- export interface ImpersonatedUser {
4910
+ export interface Detection {
4897
4911
  /**
4898
- * <p>Information about the <code>username</code> that was being impersonated.</p>
4912
+ * <p>The details about the anomalous activity that caused GuardDuty to
4913
+ * generate the finding.</p>
4899
4914
  * @public
4900
4915
  */
4901
- Username?: string | undefined;
4916
+ Anomaly?: Anomaly | undefined;
4902
4917
  /**
4903
- * <p>The <code>group</code> to which the user name belongs.</p>
4918
+ * <p>The details about the attack sequence.</p>
4904
4919
  * @public
4905
4920
  */
4906
- Groups?: string[] | undefined;
4921
+ Sequence?: Sequence | undefined;
4907
4922
  }
4908
4923
  /**
4909
- * <p>Details about the Kubernetes user involved in a Kubernetes finding.</p>
4924
+ * <p>Information about the additional configuration.</p>
4910
4925
  * @public
4911
4926
  */
4912
- export interface KubernetesUserDetails {
4927
+ export interface DetectorAdditionalConfigurationResult {
4913
4928
  /**
4914
- * <p>The username of the user who called the Kubernetes API.</p>
4929
+ * <p>Name of the additional configuration.</p>
4915
4930
  * @public
4916
4931
  */
4917
- Username?: string | undefined;
4932
+ Name?: FeatureAdditionalConfiguration | undefined;
4918
4933
  /**
4919
- * <p>The user ID of the user who called the Kubernetes API.</p>
4934
+ * <p>Status of the additional configuration.</p>
4920
4935
  * @public
4921
4936
  */
4922
- Uid?: string | undefined;
4937
+ Status?: FeatureStatus | undefined;
4923
4938
  /**
4924
- * <p>The groups that include the user who called the Kubernetes API.</p>
4939
+ * <p>The timestamp at which the additional configuration was last updated. This is in UTC
4940
+ * format.</p>
4925
4941
  * @public
4926
4942
  */
4927
- Groups?: string[] | undefined;
4943
+ UpdatedAt?: Date | undefined;
4944
+ }
4945
+ /**
4946
+ * @public
4947
+ * @enum
4948
+ */
4949
+ export declare const DetectorFeatureResult: {
4950
+ readonly CLOUD_TRAIL: "CLOUD_TRAIL";
4951
+ readonly DNS_LOGS: "DNS_LOGS";
4952
+ readonly EBS_MALWARE_PROTECTION: "EBS_MALWARE_PROTECTION";
4953
+ readonly EKS_AUDIT_LOGS: "EKS_AUDIT_LOGS";
4954
+ readonly EKS_RUNTIME_MONITORING: "EKS_RUNTIME_MONITORING";
4955
+ readonly FLOW_LOGS: "FLOW_LOGS";
4956
+ readonly LAMBDA_NETWORK_LOGS: "LAMBDA_NETWORK_LOGS";
4957
+ readonly RDS_LOGIN_EVENTS: "RDS_LOGIN_EVENTS";
4958
+ readonly RUNTIME_MONITORING: "RUNTIME_MONITORING";
4959
+ readonly S3_DATA_EVENTS: "S3_DATA_EVENTS";
4960
+ };
4961
+ /**
4962
+ * @public
4963
+ */
4964
+ export type DetectorFeatureResult = (typeof DetectorFeatureResult)[keyof typeof DetectorFeatureResult];
4965
+ /**
4966
+ * <p>Contains information about a GuardDuty feature.</p>
4967
+ * <p>Specifying both EKS Runtime Monitoring (<code>EKS_RUNTIME_MONITORING</code>)
4968
+ * and Runtime Monitoring (<code>RUNTIME_MONITORING</code>) will cause an error.
4969
+ * You can add only one of these two features because Runtime Monitoring already includes the
4970
+ * threat detection for Amazon EKS resources. For more information, see
4971
+ * <a href="https://docs.aws.amazon.com/guardduty/latest/ug/runtime-monitoring.html">Runtime Monitoring</a>.</p>
4972
+ * @public
4973
+ */
4974
+ export interface DetectorFeatureConfigurationResult {
4928
4975
  /**
4929
- * <p>Entity that assumes the IAM role
4930
- * when Kubernetes RBAC permissions are assigned to that role.</p>
4976
+ * <p>Indicates the name of the feature that can be enabled for the detector.</p>
4931
4977
  * @public
4932
4978
  */
4933
- SessionName?: string[] | undefined;
4979
+ Name?: DetectorFeatureResult | undefined;
4934
4980
  /**
4935
- * <p>Information about the impersonated user.</p>
4981
+ * <p>Indicates the status of the feature that is enabled for the detector.</p>
4936
4982
  * @public
4937
4983
  */
4938
- ImpersonatedUser?: ImpersonatedUser | undefined;
4984
+ Status?: FeatureStatus | undefined;
4985
+ /**
4986
+ * <p>The timestamp at which the feature object was updated.</p>
4987
+ * @public
4988
+ */
4989
+ UpdatedAt?: Date | undefined;
4990
+ /**
4991
+ * <p>Additional configuration for a resource.</p>
4992
+ * @public
4993
+ */
4994
+ AdditionalConfiguration?: DetectorAdditionalConfigurationResult[] | undefined;
4939
4995
  }
4940
4996
  /**
4941
- * <p>Details about the Kubernetes workload involved in a Kubernetes finding.</p>
4942
4997
  * @public
4998
+ * @enum
4943
4999
  */
4944
- export interface KubernetesWorkloadDetails {
5000
+ export declare const DetectorStatus: {
5001
+ readonly DISABLED: "DISABLED";
5002
+ readonly ENABLED: "ENABLED";
5003
+ };
5004
+ /**
5005
+ * @public
5006
+ */
5007
+ export type DetectorStatus = (typeof DetectorStatus)[keyof typeof DetectorStatus];
5008
+ /**
5009
+ * @public
5010
+ */
5011
+ export interface DisableOrganizationAdminAccountRequest {
4945
5012
  /**
4946
- * <p>Kubernetes workload name.</p>
5013
+ * <p>The Amazon Web Services Account ID for the organizations account to be disabled as a GuardDuty delegated
5014
+ * administrator.</p>
5015
+ * @public
5016
+ */
5017
+ AdminAccountId: string | undefined;
5018
+ }
5019
+ /**
5020
+ * @public
5021
+ */
5022
+ export interface DisableOrganizationAdminAccountResponse {
5023
+ }
5024
+ /**
5025
+ * @public
5026
+ */
5027
+ export interface DisassociateFromAdministratorAccountRequest {
5028
+ /**
5029
+ * <p>The unique ID of the detector of the GuardDuty member account.</p>
5030
+ * @public
5031
+ */
5032
+ DetectorId: string | undefined;
5033
+ }
5034
+ /**
5035
+ * @public
5036
+ */
5037
+ export interface DisassociateFromAdministratorAccountResponse {
5038
+ }
5039
+ /**
5040
+ * @public
5041
+ */
5042
+ export interface DisassociateFromMasterAccountRequest {
5043
+ /**
5044
+ * <p>The unique ID of the detector of the GuardDuty member account.</p>
5045
+ * @public
5046
+ */
5047
+ DetectorId: string | undefined;
5048
+ }
5049
+ /**
5050
+ * @public
5051
+ */
5052
+ export interface DisassociateFromMasterAccountResponse {
5053
+ }
5054
+ /**
5055
+ * @public
5056
+ */
5057
+ export interface DisassociateMembersRequest {
5058
+ /**
5059
+ * <p>The unique ID of the detector of the GuardDuty account whose members you want to
5060
+ * disassociate from the administrator account.</p>
5061
+ * @public
5062
+ */
5063
+ DetectorId: string | undefined;
5064
+ /**
5065
+ * <p>A list of account IDs of the GuardDuty member accounts that you want to disassociate from
5066
+ * the administrator account.</p>
5067
+ * @public
5068
+ */
5069
+ AccountIds: string[] | undefined;
5070
+ }
5071
+ /**
5072
+ * @public
5073
+ */
5074
+ export interface DisassociateMembersResponse {
5075
+ /**
5076
+ * <p>A list of objects that contain the unprocessed account and a result string that explains
5077
+ * why it was unprocessed.</p>
5078
+ * @public
5079
+ */
5080
+ UnprocessedAccounts: UnprocessedAccount[] | undefined;
5081
+ }
5082
+ /**
5083
+ * @public
5084
+ * @enum
5085
+ */
5086
+ export declare const EbsSnapshotPreservation: {
5087
+ readonly NO_RETENTION: "NO_RETENTION";
5088
+ readonly RETENTION_WITH_FINDING: "RETENTION_WITH_FINDING";
5089
+ };
5090
+ /**
5091
+ * @public
5092
+ */
5093
+ export type EbsSnapshotPreservation = (typeof EbsSnapshotPreservation)[keyof typeof EbsSnapshotPreservation];
5094
+ /**
5095
+ * <p>Contains list of scanned and skipped EBS volumes with details.</p>
5096
+ * @public
5097
+ */
5098
+ export interface EbsVolumeDetails {
5099
+ /**
5100
+ * <p>List of EBS volumes that were scanned.</p>
5101
+ * @public
5102
+ */
5103
+ ScannedVolumeDetails?: VolumeDetail[] | undefined;
5104
+ /**
5105
+ * <p>List of EBS volumes that were skipped from the malware scan.</p>
5106
+ * @public
5107
+ */
5108
+ SkippedVolumeDetails?: VolumeDetail[] | undefined;
5109
+ }
5110
+ /**
5111
+ * <p>Contains details of the highest severity threat detected during scan and number of
5112
+ * infected files.</p>
5113
+ * @public
5114
+ */
5115
+ export interface HighestSeverityThreatDetails {
5116
+ /**
5117
+ * <p>Severity level of the highest severity threat detected.</p>
5118
+ * @public
5119
+ */
5120
+ Severity?: string | undefined;
5121
+ /**
5122
+ * <p>Threat name of the highest severity threat detected as part of the malware scan.</p>
5123
+ * @public
5124
+ */
5125
+ ThreatName?: string | undefined;
5126
+ /**
5127
+ * <p>Total number of infected files with the highest severity threat detected.</p>
5128
+ * @public
5129
+ */
5130
+ Count?: number | undefined;
5131
+ }
5132
+ /**
5133
+ * <p>Total number of scanned files.</p>
5134
+ * @public
5135
+ */
5136
+ export interface ScannedItemCount {
5137
+ /**
5138
+ * <p>Total GB of files scanned for malware.</p>
5139
+ * @public
5140
+ */
5141
+ TotalGb?: number | undefined;
5142
+ /**
5143
+ * <p>Number of files scanned.</p>
5144
+ * @public
5145
+ */
5146
+ Files?: number | undefined;
5147
+ /**
5148
+ * <p>Total number of scanned volumes.</p>
5149
+ * @public
5150
+ */
5151
+ Volumes?: number | undefined;
5152
+ }
5153
+ /**
5154
+ * <p>Contains details of infected file including name, file path and hash.</p>
5155
+ * @public
5156
+ */
5157
+ export interface ScanFilePath {
5158
+ /**
5159
+ * <p>The file path of the infected file.</p>
5160
+ * @public
5161
+ */
5162
+ FilePath?: string | undefined;
5163
+ /**
5164
+ * <p>EBS volume ARN details of the infected file.</p>
5165
+ * @public
5166
+ */
5167
+ VolumeArn?: string | undefined;
5168
+ /**
5169
+ * <p>The hash value of the infected file.</p>
5170
+ * @public
5171
+ */
5172
+ Hash?: string | undefined;
5173
+ /**
5174
+ * <p>File name of the infected file.</p>
5175
+ * @public
5176
+ */
5177
+ FileName?: string | undefined;
5178
+ }
5179
+ /**
5180
+ * <p>Contains files infected with the given threat providing details of malware name and
5181
+ * severity.</p>
5182
+ * @public
5183
+ */
5184
+ export interface ScanThreatName {
5185
+ /**
5186
+ * <p>The name of the identified threat.</p>
4947
5187
  * @public
4948
5188
  */
4949
5189
  Name?: string | undefined;
4950
5190
  /**
4951
- * <p>Kubernetes workload type (e.g. Pod, Deployment, etc.).</p>
5191
+ * <p>Severity of threat identified as part of the malware scan.</p>
4952
5192
  * @public
4953
5193
  */
4954
- Type?: string | undefined;
5194
+ Severity?: string | undefined;
4955
5195
  /**
4956
- * <p>Kubernetes workload ID.</p>
5196
+ * <p>Total number of files infected with given threat.</p>
4957
5197
  * @public
4958
5198
  */
4959
- Uid?: string | undefined;
5199
+ ItemCount?: number | undefined;
4960
5200
  /**
4961
- * <p>Kubernetes namespace that the workload is part of.</p>
5201
+ * <p>List of infected files in EBS volume with details.</p>
4962
5202
  * @public
4963
5203
  */
4964
- Namespace?: string | undefined;
5204
+ FilePaths?: ScanFilePath[] | undefined;
5205
+ }
5206
+ /**
5207
+ * <p>Contains details about identified threats organized by threat name.</p>
5208
+ * @public
5209
+ */
5210
+ export interface ThreatDetectedByName {
4965
5211
  /**
4966
- * <p>Whether the hostNetwork flag is enabled for the pods included in the workload.</p>
5212
+ * <p>Total number of infected files identified.</p>
4967
5213
  * @public
4968
5214
  */
4969
- HostNetwork?: boolean | undefined;
5215
+ ItemCount?: number | undefined;
4970
5216
  /**
4971
- * <p>Containers running as part of the Kubernetes workload.</p>
5217
+ * <p>Total number of unique threats by name identified, as part of the malware scan.</p>
4972
5218
  * @public
4973
5219
  */
4974
- Containers?: Container[] | undefined;
5220
+ UniqueThreatNameCount?: number | undefined;
4975
5221
  /**
4976
- * <p>Volumes used by the Kubernetes workload.</p>
5222
+ * <p>Flag to determine if the finding contains every single infected file-path and/or every
5223
+ * threat.</p>
4977
5224
  * @public
4978
5225
  */
4979
- Volumes?: Volume[] | undefined;
5226
+ Shortened?: boolean | undefined;
4980
5227
  /**
4981
- * <p>The service account name that is associated with a Kubernetes workload.</p>
5228
+ * <p>List of identified threats with details, organized by threat name.</p>
4982
5229
  * @public
4983
5230
  */
4984
- ServiceAccountName?: string | undefined;
5231
+ ThreatNames?: ScanThreatName[] | undefined;
5232
+ }
5233
+ /**
5234
+ * <p>Contains total number of infected files.</p>
5235
+ * @public
5236
+ */
5237
+ export interface ThreatsDetectedItemCount {
4985
5238
  /**
4986
- * <p>Whether the host IPC flag is enabled for the pods in the workload.</p>
5239
+ * <p>Total number of infected files.</p>
4987
5240
  * @public
4988
5241
  */
4989
- HostIPC?: boolean | undefined;
5242
+ Files?: number | undefined;
5243
+ }
5244
+ /**
5245
+ * <p>Contains a complete view providing malware scan result details.</p>
5246
+ * @public
5247
+ */
5248
+ export interface ScanDetections {
4990
5249
  /**
4991
- * <p>Whether the host PID flag is enabled for the pods in the workload. </p>
5250
+ * <p>Total number of scanned files.</p>
4992
5251
  * @public
4993
5252
  */
4994
- HostPID?: boolean | undefined;
5253
+ ScannedItemCount?: ScannedItemCount | undefined;
5254
+ /**
5255
+ * <p>Total number of infected files.</p>
5256
+ * @public
5257
+ */
5258
+ ThreatsDetectedItemCount?: ThreatsDetectedItemCount | undefined;
5259
+ /**
5260
+ * <p>Details of the highest severity threat detected during malware scan and number of infected
5261
+ * files.</p>
5262
+ * @public
5263
+ */
5264
+ HighestSeverityThreatDetails?: HighestSeverityThreatDetails | undefined;
5265
+ /**
5266
+ * <p>Contains details about identified threats organized by threat name.</p>
5267
+ * @public
5268
+ */
5269
+ ThreatDetectedByName?: ThreatDetectedByName | undefined;
4995
5270
  }
4996
5271
  /**
4997
- * <p>Details about Kubernetes resources such as a Kubernetes user or workload resource involved
4998
- * in a Kubernetes finding.</p>
5272
+ * <p>Contains details from the malware scan that created a finding.</p>
4999
5273
  * @public
5000
5274
  */
5001
- export interface KubernetesDetails {
5275
+ export interface EbsVolumeScanDetails {
5276
+ /**
5277
+ * <p>Unique Id of the malware scan that generated the finding.</p>
5278
+ * @public
5279
+ */
5280
+ ScanId?: string | undefined;
5281
+ /**
5282
+ * <p>Returns the start date and time of the malware scan.</p>
5283
+ * @public
5284
+ */
5285
+ ScanStartedAt?: Date | undefined;
5286
+ /**
5287
+ * <p>Returns the completion date and time of the malware scan.</p>
5288
+ * @public
5289
+ */
5290
+ ScanCompletedAt?: Date | undefined;
5291
+ /**
5292
+ * <p>GuardDuty finding ID that triggered a malware scan.</p>
5293
+ * @public
5294
+ */
5295
+ TriggerFindingId?: string | undefined;
5296
+ /**
5297
+ * <p>Contains list of threat intelligence sources used to detect threats.</p>
5298
+ * @public
5299
+ */
5300
+ Sources?: string[] | undefined;
5301
+ /**
5302
+ * <p>Contains a complete view providing malware scan result details.</p>
5303
+ * @public
5304
+ */
5305
+ ScanDetections?: ScanDetections | undefined;
5306
+ /**
5307
+ * <p>Specifies the scan type that invoked the malware scan.</p>
5308
+ * @public
5309
+ */
5310
+ ScanType?: ScanType | undefined;
5311
+ }
5312
+ /**
5313
+ * <p>Represents a pre-existing file or directory on the host machine that the volume maps
5314
+ * to.</p>
5315
+ * @public
5316
+ */
5317
+ export interface HostPath {
5318
+ /**
5319
+ * <p>Path of the file or directory on the host that the volume maps to.</p>
5320
+ * @public
5321
+ */
5322
+ Path?: string | undefined;
5323
+ }
5324
+ /**
5325
+ * <p>Volume used by the Kubernetes workload.</p>
5326
+ * @public
5327
+ */
5328
+ export interface Volume {
5329
+ /**
5330
+ * <p>Volume name.</p>
5331
+ * @public
5332
+ */
5333
+ Name?: string | undefined;
5334
+ /**
5335
+ * <p>Represents a pre-existing file or directory on the host machine that the volume maps
5336
+ * to.</p>
5337
+ * @public
5338
+ */
5339
+ HostPath?: HostPath | undefined;
5340
+ }
5341
+ /**
5342
+ * <p>Contains information about the task in an ECS cluster.</p>
5343
+ * @public
5344
+ */
5345
+ export interface EcsTaskDetails {
5346
+ /**
5347
+ * <p>The Amazon Resource Name (ARN) of the task.</p>
5348
+ * @public
5349
+ */
5350
+ Arn?: string | undefined;
5351
+ /**
5352
+ * <p>The ARN of the task definition that creates the task.</p>
5353
+ * @public
5354
+ */
5355
+ DefinitionArn?: string | undefined;
5356
+ /**
5357
+ * <p>The version counter for the task.</p>
5358
+ * @public
5359
+ */
5360
+ Version?: string | undefined;
5361
+ /**
5362
+ * <p>The Unix timestamp for the time when the task was created.</p>
5363
+ * @public
5364
+ */
5365
+ TaskCreatedAt?: Date | undefined;
5366
+ /**
5367
+ * <p>The Unix timestamp for the time when the task started.</p>
5368
+ * @public
5369
+ */
5370
+ StartedAt?: Date | undefined;
5371
+ /**
5372
+ * <p>Contains the tag specified when a task is started.</p>
5373
+ * @public
5374
+ */
5375
+ StartedBy?: string | undefined;
5002
5376
  /**
5003
- * <p>Details about the Kubernetes user involved in a Kubernetes finding.</p>
5377
+ * <p>The tags of the ECS Task.</p>
5004
5378
  * @public
5005
5379
  */
5006
- KubernetesUserDetails?: KubernetesUserDetails | undefined;
5380
+ Tags?: Tag[] | undefined;
5007
5381
  /**
5008
- * <p>Details about the Kubernetes workload involved in a Kubernetes finding.</p>
5382
+ * <p>The list of data volume definitions for the task.</p>
5009
5383
  * @public
5010
5384
  */
5011
- KubernetesWorkloadDetails?: KubernetesWorkloadDetails | undefined;
5012
- }
5013
- /**
5014
- * <p>Amazon Virtual Private Cloud configuration details associated with your Lambda function.</p>
5015
- * @public
5016
- */
5017
- export interface VpcConfig {
5385
+ Volumes?: Volume[] | undefined;
5018
5386
  /**
5019
- * <p>The identifiers of the subnets that are associated with your Lambda function.</p>
5387
+ * <p>The containers that's associated with the task.</p>
5020
5388
  * @public
5021
5389
  */
5022
- SubnetIds?: string[] | undefined;
5390
+ Containers?: Container[] | undefined;
5023
5391
  /**
5024
- * <p>The identifier of the Amazon Virtual Private Cloud.</p>
5392
+ * <p>The name of the task group that's associated with the task.</p>
5025
5393
  * @public
5026
5394
  */
5027
- VpcId?: string | undefined;
5395
+ Group?: string | undefined;
5028
5396
  /**
5029
- * <p>The identifier of the security group attached to the Lambda function.</p>
5397
+ * <p>A capacity on which the task is running. For example, <code>Fargate</code> and <code>EC2</code>.</p>
5030
5398
  * @public
5031
5399
  */
5032
- SecurityGroups?: SecurityGroup[] | undefined;
5400
+ LaunchType?: string | undefined;
5033
5401
  }
5034
5402
  /**
5035
- * <p>Information about the Lambda function involved in the finding.</p>
5403
+ * <p>Contains information about the details of the ECS Cluster.</p>
5036
5404
  * @public
5037
5405
  */
5038
- export interface LambdaDetails {
5039
- /**
5040
- * <p>Amazon Resource Name (ARN) of the Lambda function.</p>
5041
- * @public
5042
- */
5043
- FunctionArn?: string | undefined;
5406
+ export interface EcsClusterDetails {
5044
5407
  /**
5045
- * <p>Name of the Lambda function.</p>
5408
+ * <p>The name of the ECS Cluster.</p>
5046
5409
  * @public
5047
5410
  */
5048
- FunctionName?: string | undefined;
5411
+ Name?: string | undefined;
5049
5412
  /**
5050
- * <p>Description of the Lambda function.</p>
5413
+ * <p>The Amazon Resource Name (ARN) that identifies the cluster.</p>
5051
5414
  * @public
5052
5415
  */
5053
- Description?: string | undefined;
5416
+ Arn?: string | undefined;
5054
5417
  /**
5055
- * <p>The timestamp when the Lambda function was last modified. This field is in the UTC date string
5056
- * format <code>(2023-03-22T19:37:20.168Z)</code>.</p>
5418
+ * <p>The status of the ECS cluster.</p>
5057
5419
  * @public
5058
5420
  */
5059
- LastModifiedAt?: Date | undefined;
5421
+ Status?: string | undefined;
5060
5422
  /**
5061
- * <p>The revision ID of the Lambda function version.</p>
5423
+ * <p>The number of services that are running on the cluster in an ACTIVE state.</p>
5062
5424
  * @public
5063
5425
  */
5064
- RevisionId?: string | undefined;
5426
+ ActiveServicesCount?: number | undefined;
5065
5427
  /**
5066
- * <p>The version of the Lambda function.</p>
5428
+ * <p>The number of container instances registered into the cluster.</p>
5067
5429
  * @public
5068
5430
  */
5069
- FunctionVersion?: string | undefined;
5431
+ RegisteredContainerInstancesCount?: number | undefined;
5070
5432
  /**
5071
- * <p>The execution role of the Lambda function.</p>
5433
+ * <p>The number of tasks in the cluster that are in the RUNNING state.</p>
5072
5434
  * @public
5073
5435
  */
5074
- Role?: string | undefined;
5436
+ RunningTasksCount?: number | undefined;
5075
5437
  /**
5076
- * <p>Amazon Virtual Private Cloud configuration details associated with your Lambda function.</p>
5438
+ * <p>The tags of the ECS Cluster.</p>
5077
5439
  * @public
5078
5440
  */
5079
- VpcConfig?: VpcConfig | undefined;
5441
+ Tags?: Tag[] | undefined;
5080
5442
  /**
5081
- * <p>A list of tags attached to this resource, listed in the format of
5082
- * <code>key</code>:<code>value</code> pair.</p>
5443
+ * <p>Contains information about the details of the ECS Task.</p>
5083
5444
  * @public
5084
5445
  */
5085
- Tags?: Tag[] | undefined;
5446
+ TaskDetails?: EcsTaskDetails | undefined;
5086
5447
  }
5087
5448
  /**
5088
- * <p>Contains information about the resource type <code>RDSDBInstance</code> involved in a
5089
- * GuardDuty finding.</p>
5449
+ * <p>Details about the EKS cluster involved in a Kubernetes finding.</p>
5090
5450
  * @public
5091
5451
  */
5092
- export interface RdsDbInstanceDetails {
5452
+ export interface EksClusterDetails {
5093
5453
  /**
5094
- * <p>The identifier associated to the database instance that was involved in the
5095
- * finding.</p>
5454
+ * <p>EKS cluster name.</p>
5096
5455
  * @public
5097
5456
  */
5098
- DbInstanceIdentifier?: string | undefined;
5457
+ Name?: string | undefined;
5099
5458
  /**
5100
- * <p>The database engine of the database instance involved in the finding.</p>
5459
+ * <p>EKS cluster ARN.</p>
5101
5460
  * @public
5102
5461
  */
5103
- Engine?: string | undefined;
5462
+ Arn?: string | undefined;
5104
5463
  /**
5105
- * <p>The version of the database engine that was involved in the finding.</p>
5464
+ * <p>The VPC ID to which the EKS cluster is attached.</p>
5106
5465
  * @public
5107
5466
  */
5108
- EngineVersion?: string | undefined;
5467
+ VpcId?: string | undefined;
5109
5468
  /**
5110
- * <p>The identifier of the database cluster that contains the database instance ID involved in
5111
- * the finding.</p>
5469
+ * <p>The EKS cluster status.</p>
5112
5470
  * @public
5113
5471
  */
5114
- DbClusterIdentifier?: string | undefined;
5472
+ Status?: string | undefined;
5115
5473
  /**
5116
- * <p>The Amazon Resource Name (ARN) that identifies the database instance involved in the
5117
- * finding.</p>
5474
+ * <p>The EKS cluster tags.</p>
5118
5475
  * @public
5119
5476
  */
5120
- DbInstanceArn?: string | undefined;
5477
+ Tags?: Tag[] | undefined;
5121
5478
  /**
5122
- * <p>Information about the tag key-value pairs.</p>
5479
+ * <p>The timestamp when the EKS cluster was created.</p>
5123
5480
  * @public
5124
5481
  */
5125
- Tags?: Tag[] | undefined;
5482
+ CreatedAt?: Date | undefined;
5126
5483
  }
5127
5484
  /**
5128
- * <p>Contains information about the user and authentication details for a database instance
5129
- * involved in the finding.</p>
5130
5485
  * @public
5131
5486
  */
5132
- export interface RdsDbUserDetails {
5487
+ export interface EnableOrganizationAdminAccountRequest {
5133
5488
  /**
5134
- * <p>The user name used in the anomalous login attempt.</p>
5489
+ * <p>The Amazon Web Services account ID for the organization account to be enabled as a GuardDuty delegated
5490
+ * administrator.</p>
5135
5491
  * @public
5136
5492
  */
5137
- User?: string | undefined;
5493
+ AdminAccountId: string | undefined;
5494
+ }
5495
+ /**
5496
+ * @public
5497
+ */
5498
+ export interface EnableOrganizationAdminAccountResponse {
5499
+ }
5500
+ /**
5501
+ * <p>An instance of a threat intelligence detail that constitutes evidence for the
5502
+ * finding.</p>
5503
+ * @public
5504
+ */
5505
+ export interface ThreatIntelligenceDetail {
5138
5506
  /**
5139
- * <p>The application name used in the anomalous login attempt.</p>
5507
+ * <p>The name of the threat intelligence list that triggered the finding.</p>
5140
5508
  * @public
5141
5509
  */
5142
- Application?: string | undefined;
5510
+ ThreatListName?: string | undefined;
5143
5511
  /**
5144
- * <p>The name of the database instance involved in the anomalous login attempt.</p>
5512
+ * <p>A list of names of the threats in the threat intelligence list that triggered the
5513
+ * finding.</p>
5145
5514
  * @public
5146
5515
  */
5147
- Database?: string | undefined;
5516
+ ThreatNames?: string[] | undefined;
5148
5517
  /**
5149
- * <p>The version of the Secure Socket Layer (SSL) used for the network.</p>
5518
+ * <p>SHA256 of the file that generated the finding.</p>
5150
5519
  * @public
5151
5520
  */
5152
- Ssl?: string | undefined;
5521
+ ThreatFileSha256?: string | undefined;
5522
+ }
5523
+ /**
5524
+ * <p>Contains information about the reason that the finding was generated.</p>
5525
+ * @public
5526
+ */
5527
+ export interface Evidence {
5153
5528
  /**
5154
- * <p>The authentication method used by the user involved in the finding.</p>
5529
+ * <p>A list of threat intelligence details related to the evidence.</p>
5155
5530
  * @public
5156
5531
  */
5157
- AuthMethod?: string | undefined;
5532
+ ThreatIntelligenceDetails?: ThreatIntelligenceDetail[] | undefined;
5158
5533
  }
5159
5534
  /**
5160
- * <p>Contains information about the resource type <code>RDSLimitlessDB</code> that is involved in a GuardDuty
5161
- * finding.</p>
5162
5535
  * @public
5536
+ * @enum
5163
5537
  */
5164
- export interface RdsLimitlessDbDetails {
5538
+ export declare const Feedback: {
5539
+ readonly NOT_USEFUL: "NOT_USEFUL";
5540
+ readonly USEFUL: "USEFUL";
5541
+ };
5542
+ /**
5543
+ * @public
5544
+ */
5545
+ export type Feedback = (typeof Feedback)[keyof typeof Feedback];
5546
+ /**
5547
+ * <p>Contains information about the elastic network interface of the EC2 instance.</p>
5548
+ * @public
5549
+ */
5550
+ export interface NetworkInterface {
5165
5551
  /**
5166
- * <p>The name associated with the Limitless DB shard group.</p>
5552
+ * <p>A list of IPv6 addresses for the EC2 instance.</p>
5167
5553
  * @public
5168
5554
  */
5169
- DbShardGroupIdentifier?: string | undefined;
5555
+ Ipv6Addresses?: string[] | undefined;
5170
5556
  /**
5171
- * <p>The resource identifier of the DB shard group within the Limitless Database.</p>
5557
+ * <p>The ID of the network interface.</p>
5172
5558
  * @public
5173
5559
  */
5174
- DbShardGroupResourceId?: string | undefined;
5560
+ NetworkInterfaceId?: string | undefined;
5175
5561
  /**
5176
- * <p>The Amazon Resource Name (ARN) that identifies the DB shard group.</p>
5562
+ * <p>The private DNS name of the EC2 instance.</p>
5177
5563
  * @public
5178
5564
  */
5179
- DbShardGroupArn?: string | undefined;
5565
+ PrivateDnsName?: string | undefined;
5180
5566
  /**
5181
- * <p>The database engine of the database instance involved in the finding.</p>
5567
+ * <p>The private IP address of the EC2 instance.</p>
5182
5568
  * @public
5183
5569
  */
5184
- Engine?: string | undefined;
5570
+ PrivateIpAddress?: string | undefined;
5185
5571
  /**
5186
- * <p>The version of the database engine.</p>
5572
+ * <p>Other private IP address information of the EC2 instance.</p>
5187
5573
  * @public
5188
5574
  */
5189
- EngineVersion?: string | undefined;
5575
+ PrivateIpAddresses?: PrivateIpAddressDetails[] | undefined;
5190
5576
  /**
5191
- * <p>The name of the database cluster that is a part of the Limitless Database.</p>
5577
+ * <p>The public DNS name of the EC2 instance.</p>
5192
5578
  * @public
5193
5579
  */
5194
- DbClusterIdentifier?: string | undefined;
5580
+ PublicDnsName?: string | undefined;
5195
5581
  /**
5196
- * <p>Information about the tag-key value pair.</p>
5582
+ * <p>The public IP address of the EC2 instance.</p>
5197
5583
  * @public
5198
5584
  */
5199
- Tags?: Tag[] | undefined;
5200
- }
5201
- /**
5202
- * <p>Contains information on the owner of the bucket.</p>
5203
- * @public
5204
- */
5205
- export interface Owner {
5585
+ PublicIp?: string | undefined;
5206
5586
  /**
5207
- * <p>The canonical user ID of the bucket owner. For information about locating your canonical
5208
- * user ID see <a href="https://docs.aws.amazon.com/general/latest/gr/acct-identifiers.html#FindingCanonicalId">Finding Your Account
5209
- * Canonical User ID.</a>
5210
- * </p>
5587
+ * <p>The security groups associated with the EC2 instance.</p>
5211
5588
  * @public
5212
5589
  */
5213
- Id?: string | undefined;
5214
- }
5215
- /**
5216
- * <p>Contains information about how permissions are configured for the S3 bucket.</p>
5217
- * @public
5218
- */
5219
- export interface PermissionConfiguration {
5590
+ SecurityGroups?: SecurityGroup[] | undefined;
5220
5591
  /**
5221
- * <p>Contains information about the bucket level permissions for the S3 bucket.</p>
5592
+ * <p>The subnet ID of the EC2 instance.</p>
5222
5593
  * @public
5223
5594
  */
5224
- BucketLevelPermissions?: BucketLevelPermissions | undefined;
5595
+ SubnetId?: string | undefined;
5225
5596
  /**
5226
- * <p>Contains information about the account level permissions on the S3 bucket.</p>
5597
+ * <p>The VPC ID of the EC2 instance.</p>
5227
5598
  * @public
5228
5599
  */
5229
- AccountLevelPermissions?: AccountLevelPermissions | undefined;
5600
+ VpcId?: string | undefined;
5230
5601
  }
5231
5602
  /**
5232
- * <p>Describes the public access policies that apply to the S3 bucket.</p>
5603
+ * <p>Contains information about the details of an instance.</p>
5233
5604
  * @public
5234
5605
  */
5235
- export interface PublicAccess {
5236
- /**
5237
- * <p>Contains information about how permissions are configured for the S3 bucket.</p>
5238
- * @public
5239
- */
5240
- PermissionConfiguration?: PermissionConfiguration | undefined;
5606
+ export interface InstanceDetails {
5241
5607
  /**
5242
- * <p>Describes the effective permission on this bucket after factoring all attached
5243
- * policies.</p>
5608
+ * <p>The Availability Zone of the EC2 instance.</p>
5244
5609
  * @public
5245
5610
  */
5246
- EffectivePermission?: string | undefined;
5247
- }
5248
- /**
5249
- * <p>Information about the S3 object that was scanned</p>
5250
- * @public
5251
- */
5252
- export interface S3ObjectDetail {
5611
+ AvailabilityZone?: string | undefined;
5253
5612
  /**
5254
- * <p>Amazon Resource Name (ARN) of the S3 object.</p>
5613
+ * <p>The profile information of the EC2 instance.</p>
5255
5614
  * @public
5256
5615
  */
5257
- ObjectArn?: string | undefined;
5616
+ IamInstanceProfile?: IamInstanceProfile | undefined;
5258
5617
  /**
5259
- * <p>Key of the S3 object.</p>
5618
+ * <p>The image description of the EC2 instance.</p>
5260
5619
  * @public
5261
5620
  */
5262
- Key?: string | undefined;
5621
+ ImageDescription?: string | undefined;
5263
5622
  /**
5264
- * <p>The entity tag is a hash of the S3 object. The ETag reflects changes only to the contents of
5265
- * an object, and not its metadata.</p>
5623
+ * <p>The image ID of the EC2 instance.</p>
5266
5624
  * @public
5267
5625
  */
5268
- ETag?: string | undefined;
5626
+ ImageId?: string | undefined;
5269
5627
  /**
5270
- * <p>Hash of the threat detected in this finding.</p>
5628
+ * <p>The ID of the EC2 instance.</p>
5271
5629
  * @public
5272
5630
  */
5273
- Hash?: string | undefined;
5631
+ InstanceId?: string | undefined;
5274
5632
  /**
5275
- * <p>Version ID of the object.</p>
5633
+ * <p>The state of the EC2 instance.</p>
5276
5634
  * @public
5277
5635
  */
5278
- VersionId?: string | undefined;
5279
- }
5280
- /**
5281
- * <p>Contains information on the S3 bucket.</p>
5282
- * @public
5283
- */
5284
- export interface S3BucketDetail {
5636
+ InstanceState?: string | undefined;
5285
5637
  /**
5286
- * <p>The Amazon Resource Name (ARN) of the S3 bucket.</p>
5638
+ * <p>The type of the EC2 instance.</p>
5287
5639
  * @public
5288
5640
  */
5289
- Arn?: string | undefined;
5641
+ InstanceType?: string | undefined;
5290
5642
  /**
5291
- * <p>The name of the S3 bucket.</p>
5643
+ * <p>The Amazon Resource Name (ARN) of the Amazon Web Services Outpost. Only applicable to Amazon Web Services Outposts
5644
+ * instances.</p>
5292
5645
  * @public
5293
5646
  */
5294
- Name?: string | undefined;
5647
+ OutpostArn?: string | undefined;
5295
5648
  /**
5296
- * <p>Describes whether the bucket is a source or destination bucket.</p>
5649
+ * <p>The launch time of the EC2 instance.</p>
5297
5650
  * @public
5298
5651
  */
5299
- Type?: string | undefined;
5652
+ LaunchTime?: string | undefined;
5300
5653
  /**
5301
- * <p>The date and time the bucket was created at.</p>
5654
+ * <p>The elastic network interface information of the EC2 instance.</p>
5302
5655
  * @public
5303
5656
  */
5304
- CreatedAt?: Date | undefined;
5657
+ NetworkInterfaces?: NetworkInterface[] | undefined;
5305
5658
  /**
5306
- * <p>The owner of the S3 bucket.</p>
5659
+ * <p>The platform of the EC2 instance.</p>
5307
5660
  * @public
5308
5661
  */
5309
- Owner?: Owner | undefined;
5662
+ Platform?: string | undefined;
5310
5663
  /**
5311
- * <p>All tags attached to the S3 bucket</p>
5664
+ * <p>The product code of the EC2 instance.</p>
5312
5665
  * @public
5313
5666
  */
5314
- Tags?: Tag[] | undefined;
5667
+ ProductCodes?: ProductCode[] | undefined;
5315
5668
  /**
5316
- * <p>Describes the server side encryption method used in the S3 bucket.</p>
5669
+ * <p>The tags of the EC2 instance.</p>
5317
5670
  * @public
5318
5671
  */
5319
- DefaultServerSideEncryption?: DefaultServerSideEncryption | undefined;
5672
+ Tags?: Tag[] | undefined;
5673
+ }
5674
+ /**
5675
+ * <p>Contains information about the impersonated user.</p>
5676
+ * @public
5677
+ */
5678
+ export interface ImpersonatedUser {
5320
5679
  /**
5321
- * <p>Describes the public access policies that apply to the S3 bucket.</p>
5680
+ * <p>Information about the <code>username</code> that was being impersonated.</p>
5322
5681
  * @public
5323
5682
  */
5324
- PublicAccess?: PublicAccess | undefined;
5683
+ Username?: string | undefined;
5325
5684
  /**
5326
- * <p>Information about the S3 object that was scanned.</p>
5685
+ * <p>The <code>group</code> to which the user name belongs.</p>
5327
5686
  * @public
5328
5687
  */
5329
- S3ObjectDetails?: S3ObjectDetail[] | undefined;
5688
+ Groups?: string[] | undefined;
5330
5689
  }
5331
5690
  /**
5332
- * <p>Contains information about the Amazon Web Services resource associated with the activity that prompted
5333
- * GuardDuty to generate a finding.</p>
5691
+ * <p>Details about the Kubernetes user involved in a Kubernetes finding.</p>
5334
5692
  * @public
5335
5693
  */
5336
- export interface Resource {
5694
+ export interface KubernetesUserDetails {
5337
5695
  /**
5338
- * <p>The IAM access key details (user information) of a user that engaged in the activity that
5339
- * prompted GuardDuty to generate a finding.</p>
5696
+ * <p>The username of the user who called the Kubernetes API.</p>
5340
5697
  * @public
5341
5698
  */
5342
- AccessKeyDetails?: AccessKeyDetails | undefined;
5699
+ Username?: string | undefined;
5343
5700
  /**
5344
- * <p>Contains information on the S3 bucket.</p>
5701
+ * <p>The user ID of the user who called the Kubernetes API.</p>
5345
5702
  * @public
5346
5703
  */
5347
- S3BucketDetails?: S3BucketDetail[] | undefined;
5704
+ Uid?: string | undefined;
5348
5705
  /**
5349
- * <p>The information about the EC2 instance associated with the activity that prompted
5350
- * GuardDuty to generate a finding.</p>
5706
+ * <p>The groups that include the user who called the Kubernetes API.</p>
5351
5707
  * @public
5352
5708
  */
5353
- InstanceDetails?: InstanceDetails | undefined;
5709
+ Groups?: string[] | undefined;
5354
5710
  /**
5355
- * <p>Details about the EKS cluster involved in a Kubernetes finding.</p>
5711
+ * <p>Entity that assumes the IAM role
5712
+ * when Kubernetes RBAC permissions are assigned to that role.</p>
5356
5713
  * @public
5357
5714
  */
5358
- EksClusterDetails?: EksClusterDetails | undefined;
5715
+ SessionName?: string[] | undefined;
5359
5716
  /**
5360
- * <p>Details about the Kubernetes user and workload involved in a Kubernetes finding.</p>
5717
+ * <p>Information about the impersonated user.</p>
5361
5718
  * @public
5362
5719
  */
5363
- KubernetesDetails?: KubernetesDetails | undefined;
5720
+ ImpersonatedUser?: ImpersonatedUser | undefined;
5721
+ }
5722
+ /**
5723
+ * <p>Details about the Kubernetes workload involved in a Kubernetes finding.</p>
5724
+ * @public
5725
+ */
5726
+ export interface KubernetesWorkloadDetails {
5364
5727
  /**
5365
- * <p>The type of Amazon Web Services resource.</p>
5728
+ * <p>Kubernetes workload name.</p>
5366
5729
  * @public
5367
5730
  */
5368
- ResourceType?: string | undefined;
5731
+ Name?: string | undefined;
5369
5732
  /**
5370
- * <p>Contains list of scanned and skipped EBS volumes with details.</p>
5733
+ * <p>Kubernetes workload type (e.g. Pod, Deployment, etc.).</p>
5371
5734
  * @public
5372
5735
  */
5373
- EbsVolumeDetails?: EbsVolumeDetails | undefined;
5736
+ Type?: string | undefined;
5374
5737
  /**
5375
- * <p>Contains information about the details of the ECS Cluster.</p>
5738
+ * <p>Kubernetes workload ID.</p>
5376
5739
  * @public
5377
5740
  */
5378
- EcsClusterDetails?: EcsClusterDetails | undefined;
5741
+ Uid?: string | undefined;
5379
5742
  /**
5380
- * <p>Details of a container.</p>
5743
+ * <p>Kubernetes namespace that the workload is part of.</p>
5381
5744
  * @public
5382
5745
  */
5383
- ContainerDetails?: Container | undefined;
5746
+ Namespace?: string | undefined;
5384
5747
  /**
5385
- * <p>Contains information about the database instance to which an anomalous login attempt was
5386
- * made.</p>
5748
+ * <p>Whether the hostNetwork flag is enabled for the pods included in the workload.</p>
5387
5749
  * @public
5388
5750
  */
5389
- RdsDbInstanceDetails?: RdsDbInstanceDetails | undefined;
5751
+ HostNetwork?: boolean | undefined;
5390
5752
  /**
5391
- * <p>Contains information about the RDS Limitless database that was involved in a GuardDuty finding.</p>
5753
+ * <p>Containers running as part of the Kubernetes workload.</p>
5392
5754
  * @public
5393
5755
  */
5394
- RdsLimitlessDbDetails?: RdsLimitlessDbDetails | undefined;
5756
+ Containers?: Container[] | undefined;
5395
5757
  /**
5396
- * <p>Contains information about the user details through which anomalous login attempt was
5397
- * made.</p>
5758
+ * <p>Volumes used by the Kubernetes workload.</p>
5398
5759
  * @public
5399
5760
  */
5400
- RdsDbUserDetails?: RdsDbUserDetails | undefined;
5761
+ Volumes?: Volume[] | undefined;
5401
5762
  /**
5402
- * <p>Contains information about the Lambda function that was involved in a finding.</p>
5763
+ * <p>The service account name that is associated with a Kubernetes workload.</p>
5403
5764
  * @public
5404
5765
  */
5405
- LambdaDetails?: LambdaDetails | undefined;
5406
- }
5407
- /**
5408
- * <p>Additional information about the generated finding.</p>
5409
- * @public
5410
- */
5411
- export interface ServiceAdditionalInfo {
5766
+ ServiceAccountName?: string | undefined;
5412
5767
  /**
5413
- * <p>This field specifies the value of the additional information.</p>
5768
+ * <p>Whether the host IPC flag is enabled for the pods in the workload.</p>
5414
5769
  * @public
5415
5770
  */
5416
- Value?: string | undefined;
5771
+ HostIPC?: boolean | undefined;
5417
5772
  /**
5418
- * <p>Describes the type of the additional information.</p>
5773
+ * <p>Whether the host PID flag is enabled for the pods in the workload. </p>
5419
5774
  * @public
5420
5775
  */
5421
- Type?: string | undefined;
5776
+ HostPID?: boolean | undefined;
5422
5777
  }
5423
5778
  /**
5424
- * <p>Information about the nested item path and hash of the protected
5425
- * resource.</p>
5779
+ * <p>Details about Kubernetes resources such as a Kubernetes user or workload resource involved
5780
+ * in a Kubernetes finding.</p>
5426
5781
  * @public
5427
5782
  */
5428
- export interface ItemPath {
5783
+ export interface KubernetesDetails {
5429
5784
  /**
5430
- * <p>The nested item path where the infected file was found.</p>
5785
+ * <p>Details about the Kubernetes user involved in a Kubernetes finding.</p>
5431
5786
  * @public
5432
5787
  */
5433
- NestedItemPath?: string | undefined;
5788
+ KubernetesUserDetails?: KubernetesUserDetails | undefined;
5434
5789
  /**
5435
- * <p>The hash value of the infected resource.</p>
5790
+ * <p>Details about the Kubernetes workload involved in a Kubernetes finding.</p>
5436
5791
  * @public
5437
5792
  */
5438
- Hash?: string | undefined;
5793
+ KubernetesWorkloadDetails?: KubernetesWorkloadDetails | undefined;
5439
5794
  }
5440
5795
  /**
5441
- * <p>Information about the detected threats associated with the
5442
- * generated finding.</p>
5796
+ * <p>Amazon Virtual Private Cloud configuration details associated with your Lambda function.</p>
5443
5797
  * @public
5444
5798
  */
5445
- export interface Threat {
5446
- /**
5447
- * <p>Name of the detected threat that caused GuardDuty to generate this finding.</p>
5448
- * @public
5449
- */
5450
- Name?: string | undefined;
5799
+ export interface VpcConfig {
5451
5800
  /**
5452
- * <p>Source of the threat that generated this finding.</p>
5801
+ * <p>The identifiers of the subnets that are associated with your Lambda function.</p>
5453
5802
  * @public
5454
5803
  */
5455
- Source?: string | undefined;
5804
+ SubnetIds?: string[] | undefined;
5456
5805
  /**
5457
- * <p>Information about the nested item path and
5458
- * hash of the protected resource.</p>
5806
+ * <p>The identifier of the Amazon Virtual Private Cloud.</p>
5459
5807
  * @public
5460
5808
  */
5461
- ItemPaths?: ItemPath[] | undefined;
5462
- }
5463
- /**
5464
- * <p>Information about the malware scan that generated a GuardDuty finding.</p>
5465
- * @public
5466
- */
5467
- export interface MalwareScanDetails {
5809
+ VpcId?: string | undefined;
5468
5810
  /**
5469
- * <p>Information about the detected threats associated with the
5470
- * generated GuardDuty finding.</p>
5811
+ * <p>The identifier of the security group attached to the Lambda function.</p>
5471
5812
  * @public
5472
5813
  */
5473
- Threats?: Threat[] | undefined;
5814
+ SecurityGroups?: SecurityGroup[] | undefined;
5474
5815
  }
5475
5816
  /**
5476
- * <p>Information about the runtime process details.</p>
5817
+ * <p>Information about the Lambda function involved in the finding.</p>
5477
5818
  * @public
5478
5819
  */
5479
- export interface LineageObject {
5820
+ export interface LambdaDetails {
5480
5821
  /**
5481
- * <p>The time when the process started. This is in UTC format.</p>
5822
+ * <p>Amazon Resource Name (ARN) of the Lambda function.</p>
5482
5823
  * @public
5483
5824
  */
5484
- StartTime?: Date | undefined;
5825
+ FunctionArn?: string | undefined;
5485
5826
  /**
5486
- * <p>The process ID of the child process.</p>
5827
+ * <p>Name of the Lambda function.</p>
5487
5828
  * @public
5488
5829
  */
5489
- NamespacePid?: number | undefined;
5830
+ FunctionName?: string | undefined;
5490
5831
  /**
5491
- * <p>The user ID of the user that executed the process.</p>
5832
+ * <p>Description of the Lambda function.</p>
5492
5833
  * @public
5493
5834
  */
5494
- UserId?: number | undefined;
5835
+ Description?: string | undefined;
5495
5836
  /**
5496
- * <p>The name of the process.</p>
5837
+ * <p>The timestamp when the Lambda function was last modified. This field is in the UTC date string
5838
+ * format <code>(2023-03-22T19:37:20.168Z)</code>.</p>
5497
5839
  * @public
5498
5840
  */
5499
- Name?: string | undefined;
5841
+ LastModifiedAt?: Date | undefined;
5500
5842
  /**
5501
- * <p>The ID of the process.</p>
5843
+ * <p>The revision ID of the Lambda function version.</p>
5502
5844
  * @public
5503
5845
  */
5504
- Pid?: number | undefined;
5846
+ RevisionId?: string | undefined;
5505
5847
  /**
5506
- * <p>The unique ID assigned to the process by GuardDuty.</p>
5848
+ * <p>The version of the Lambda function.</p>
5507
5849
  * @public
5508
5850
  */
5509
- Uuid?: string | undefined;
5851
+ FunctionVersion?: string | undefined;
5510
5852
  /**
5511
- * <p>The absolute path of the process executable file.</p>
5853
+ * <p>The execution role of the Lambda function.</p>
5512
5854
  * @public
5513
5855
  */
5514
- ExecutablePath?: string | undefined;
5856
+ Role?: string | undefined;
5515
5857
  /**
5516
- * <p>The effective user ID that was used to execute the process.</p>
5858
+ * <p>Amazon Virtual Private Cloud configuration details associated with your Lambda function.</p>
5517
5859
  * @public
5518
5860
  */
5519
- Euid?: number | undefined;
5861
+ VpcConfig?: VpcConfig | undefined;
5520
5862
  /**
5521
- * <p>The unique ID of the parent process. This ID is assigned to the parent process by
5522
- * GuardDuty.</p>
5863
+ * <p>A list of tags attached to this resource, listed in the format of
5864
+ * <code>key</code>:<code>value</code> pair.</p>
5523
5865
  * @public
5524
5866
  */
5525
- ParentUuid?: string | undefined;
5867
+ Tags?: Tag[] | undefined;
5526
5868
  }
5527
5869
  /**
5528
- * <p>Information about the observed process.</p>
5870
+ * <p>Contains information about the resource type <code>RDSDBInstance</code> involved in a
5871
+ * GuardDuty finding.</p>
5529
5872
  * @public
5530
5873
  */
5531
- export interface ProcessDetails {
5532
- /**
5533
- * <p>The name of the process.</p>
5534
- * @public
5535
- */
5536
- Name?: string | undefined;
5537
- /**
5538
- * <p>The absolute path of the process executable file.</p>
5539
- * @public
5540
- */
5541
- ExecutablePath?: string | undefined;
5874
+ export interface RdsDbInstanceDetails {
5542
5875
  /**
5543
- * <p>The <code>SHA256</code> hash of the process executable.</p>
5876
+ * <p>The identifier associated to the database instance that was involved in the
5877
+ * finding.</p>
5544
5878
  * @public
5545
5879
  */
5546
- ExecutableSha256?: string | undefined;
5880
+ DbInstanceIdentifier?: string | undefined;
5547
5881
  /**
5548
- * <p>The ID of the child process.</p>
5882
+ * <p>The database engine of the database instance involved in the finding.</p>
5549
5883
  * @public
5550
5884
  */
5551
- NamespacePid?: number | undefined;
5885
+ Engine?: string | undefined;
5552
5886
  /**
5553
- * <p>The present working directory of the process.</p>
5887
+ * <p>The version of the database engine that was involved in the finding.</p>
5554
5888
  * @public
5555
5889
  */
5556
- Pwd?: string | undefined;
5890
+ EngineVersion?: string | undefined;
5557
5891
  /**
5558
- * <p>The ID of the process.</p>
5892
+ * <p>The identifier of the database cluster that contains the database instance ID involved in
5893
+ * the finding.</p>
5559
5894
  * @public
5560
5895
  */
5561
- Pid?: number | undefined;
5896
+ DbClusterIdentifier?: string | undefined;
5562
5897
  /**
5563
- * <p>The time when the process started. This is in UTC format.</p>
5898
+ * <p>The Amazon Resource Name (ARN) that identifies the database instance involved in the
5899
+ * finding.</p>
5564
5900
  * @public
5565
5901
  */
5566
- StartTime?: Date | undefined;
5902
+ DbInstanceArn?: string | undefined;
5567
5903
  /**
5568
- * <p>The unique ID assigned to the process by GuardDuty.</p>
5904
+ * <p>Information about the tag key-value pairs.</p>
5569
5905
  * @public
5570
5906
  */
5571
- Uuid?: string | undefined;
5907
+ Tags?: Tag[] | undefined;
5908
+ }
5909
+ /**
5910
+ * <p>Contains information about the user and authentication details for a database instance
5911
+ * involved in the finding.</p>
5912
+ * @public
5913
+ */
5914
+ export interface RdsDbUserDetails {
5572
5915
  /**
5573
- * <p>The unique ID of the parent process. This ID is assigned to the parent process by
5574
- * GuardDuty.</p>
5916
+ * <p>The user name used in the anomalous login attempt.</p>
5575
5917
  * @public
5576
5918
  */
5577
- ParentUuid?: string | undefined;
5919
+ User?: string | undefined;
5578
5920
  /**
5579
- * <p>The user that executed the process.</p>
5921
+ * <p>The application name used in the anomalous login attempt.</p>
5580
5922
  * @public
5581
5923
  */
5582
- User?: string | undefined;
5924
+ Application?: string | undefined;
5583
5925
  /**
5584
- * <p>The unique ID of the user that executed the process.</p>
5926
+ * <p>The name of the database instance involved in the anomalous login attempt.</p>
5585
5927
  * @public
5586
5928
  */
5587
- UserId?: number | undefined;
5929
+ Database?: string | undefined;
5588
5930
  /**
5589
- * <p>The effective user ID of the user that executed the process.</p>
5931
+ * <p>The version of the Secure Socket Layer (SSL) used for the network.</p>
5590
5932
  * @public
5591
5933
  */
5592
- Euid?: number | undefined;
5934
+ Ssl?: string | undefined;
5593
5935
  /**
5594
- * <p>Information about the process's lineage.</p>
5936
+ * <p>The authentication method used by the user involved in the finding.</p>
5595
5937
  * @public
5596
5938
  */
5597
- Lineage?: LineageObject[] | undefined;
5939
+ AuthMethod?: string | undefined;
5598
5940
  }
5599
5941
  /**
5600
- * <p>Additional information about the suspicious activity.</p>
5942
+ * <p>Contains information about the resource type <code>RDSLimitlessDB</code> that is involved in a GuardDuty
5943
+ * finding.</p>
5601
5944
  * @public
5602
5945
  */
5603
- export interface RuntimeContext {
5946
+ export interface RdsLimitlessDbDetails {
5604
5947
  /**
5605
- * <p>Information about the process that modified the current process. This is available for
5606
- * multiple finding types.</p>
5948
+ * <p>The name associated with the Limitless DB shard group.</p>
5607
5949
  * @public
5608
5950
  */
5609
- ModifyingProcess?: ProcessDetails | undefined;
5951
+ DbShardGroupIdentifier?: string | undefined;
5610
5952
  /**
5611
- * <p>The timestamp at which the process modified the current process. The timestamp is in UTC date string
5612
- * format.</p>
5953
+ * <p>The resource identifier of the DB shard group within the Limitless Database.</p>
5613
5954
  * @public
5614
5955
  */
5615
- ModifiedAt?: Date | undefined;
5956
+ DbShardGroupResourceId?: string | undefined;
5616
5957
  /**
5617
- * <p>The path to the script that was executed.</p>
5958
+ * <p>The Amazon Resource Name (ARN) that identifies the DB shard group.</p>
5618
5959
  * @public
5619
5960
  */
5620
- ScriptPath?: string | undefined;
5961
+ DbShardGroupArn?: string | undefined;
5621
5962
  /**
5622
- * <p>The path to the new library that was loaded.</p>
5963
+ * <p>The database engine of the database instance involved in the finding.</p>
5623
5964
  * @public
5624
5965
  */
5625
- LibraryPath?: string | undefined;
5966
+ Engine?: string | undefined;
5626
5967
  /**
5627
- * <p>The value of the LD_PRELOAD environment variable.</p>
5968
+ * <p>The version of the database engine.</p>
5628
5969
  * @public
5629
5970
  */
5630
- LdPreloadValue?: string | undefined;
5971
+ EngineVersion?: string | undefined;
5631
5972
  /**
5632
- * <p>The path to the docket socket that was accessed.</p>
5973
+ * <p>The name of the database cluster that is a part of the Limitless Database.</p>
5633
5974
  * @public
5634
5975
  */
5635
- SocketPath?: string | undefined;
5976
+ DbClusterIdentifier?: string | undefined;
5636
5977
  /**
5637
- * <p>The path to the leveraged <code>runc</code> implementation.</p>
5978
+ * <p>Information about the tag key-value pair.</p>
5638
5979
  * @public
5639
5980
  */
5640
- RuncBinaryPath?: string | undefined;
5981
+ Tags?: Tag[] | undefined;
5982
+ }
5983
+ /**
5984
+ * <p>Contains information on the owner of the bucket.</p>
5985
+ * @public
5986
+ */
5987
+ export interface Owner {
5641
5988
  /**
5642
- * <p>The path in the container that modified the release agent file.</p>
5989
+ * <p>The canonical user ID of the bucket owner. For information about locating your canonical
5990
+ * user ID see <a href="https://docs.aws.amazon.com/general/latest/gr/acct-identifiers.html#FindingCanonicalId">Finding Your Account
5991
+ * Canonical User ID.</a>
5992
+ * </p>
5643
5993
  * @public
5644
5994
  */
5645
- ReleaseAgentPath?: string | undefined;
5995
+ Id?: string | undefined;
5996
+ }
5997
+ /**
5998
+ * <p>Contains information about how permissions are configured for the S3 bucket.</p>
5999
+ * @public
6000
+ */
6001
+ export interface PermissionConfiguration {
5646
6002
  /**
5647
- * <p>The path on the host that is mounted by the container.</p>
6003
+ * <p>Contains information about the bucket level permissions for the S3 bucket.</p>
5648
6004
  * @public
5649
6005
  */
5650
- MountSource?: string | undefined;
6006
+ BucketLevelPermissions?: BucketLevelPermissions | undefined;
5651
6007
  /**
5652
- * <p>The path in the container that is mapped to the host directory.</p>
6008
+ * <p>Contains information about the account level permissions on the S3 bucket.</p>
5653
6009
  * @public
5654
6010
  */
5655
- MountTarget?: string | undefined;
6011
+ AccountLevelPermissions?: AccountLevelPermissions | undefined;
6012
+ }
6013
+ /**
6014
+ * <p>Describes the public access policies that apply to the S3 bucket.</p>
6015
+ * @public
6016
+ */
6017
+ export interface PublicAccess {
5656
6018
  /**
5657
- * <p>Represents the type of mounted fileSystem.</p>
6019
+ * <p>Contains information about how permissions are configured for the S3 bucket.</p>
5658
6020
  * @public
5659
6021
  */
5660
- FileSystemType?: string | undefined;
6022
+ PermissionConfiguration?: PermissionConfiguration | undefined;
5661
6023
  /**
5662
- * <p>Represents options that control the behavior of a runtime operation or action. For
5663
- * example, a filesystem mount operation may contain a read-only flag.</p>
6024
+ * <p>Describes the effective permission on this bucket after factoring all attached
6025
+ * policies.</p>
5664
6026
  * @public
5665
6027
  */
5666
- Flags?: string[] | undefined;
6028
+ EffectivePermission?: string | undefined;
6029
+ }
6030
+ /**
6031
+ * <p>Information about the S3 object that was scanned</p>
6032
+ * @public
6033
+ */
6034
+ export interface S3ObjectDetail {
5667
6035
  /**
5668
- * <p>The name of the module loaded into the kernel.</p>
6036
+ * <p>Amazon Resource Name (ARN) of the S3 object.</p>
5669
6037
  * @public
5670
6038
  */
5671
- ModuleName?: string | undefined;
6039
+ ObjectArn?: string | undefined;
5672
6040
  /**
5673
- * <p>The path to the module loaded into the kernel.</p>
6041
+ * <p>Key of the S3 object.</p>
5674
6042
  * @public
5675
6043
  */
5676
- ModuleFilePath?: string | undefined;
6044
+ Key?: string | undefined;
5677
6045
  /**
5678
- * <p>The <code>SHA256</code> hash of the module.</p>
6046
+ * <p>The entity tag is a hash of the S3 object. The ETag reflects changes only to the contents of
6047
+ * an object, and not its metadata.</p>
5679
6048
  * @public
5680
6049
  */
5681
- ModuleSha256?: string | undefined;
6050
+ ETag?: string | undefined;
5682
6051
  /**
5683
- * <p>The path to the modified shell history file.</p>
6052
+ * <p>Hash of the threat detected in this finding.</p>
5684
6053
  * @public
5685
6054
  */
5686
- ShellHistoryFilePath?: string | undefined;
6055
+ Hash?: string | undefined;
5687
6056
  /**
5688
- * <p>Information about the process that had its memory overwritten by the current process.</p>
6057
+ * <p>Version ID of the object.</p>
5689
6058
  * @public
5690
6059
  */
5691
- TargetProcess?: ProcessDetails | undefined;
6060
+ VersionId?: string | undefined;
6061
+ }
6062
+ /**
6063
+ * <p>Contains information on the S3 bucket.</p>
6064
+ * @public
6065
+ */
6066
+ export interface S3BucketDetail {
5692
6067
  /**
5693
- * <p>Represents the communication protocol associated with the address. For example, the address
5694
- * family <code>AF_INET</code> is used for IP version of 4 protocol.</p>
6068
+ * <p>The Amazon Resource Name (ARN) of the S3 bucket.</p>
5695
6069
  * @public
5696
6070
  */
5697
- AddressFamily?: string | undefined;
6071
+ Arn?: string | undefined;
5698
6072
  /**
5699
- * <p>Specifies a particular protocol within the address family. Usually there is a single
5700
- * protocol in address families. For example, the address family <code>AF_INET</code> only has
5701
- * the IP protocol.</p>
6073
+ * <p>The name of the S3 bucket.</p>
5702
6074
  * @public
5703
6075
  */
5704
- IanaProtocolNumber?: number | undefined;
6076
+ Name?: string | undefined;
5705
6077
  /**
5706
- * <p>Specifies the Region of a process's address space such as stack and heap.</p>
6078
+ * <p>Describes whether the bucket is a source or destination bucket.</p>
5707
6079
  * @public
5708
6080
  */
5709
- MemoryRegions?: string[] | undefined;
6081
+ Type?: string | undefined;
5710
6082
  /**
5711
- * <p>Name of the potentially suspicious tool.</p>
6083
+ * <p>The date and time the bucket was created at.</p>
5712
6084
  * @public
5713
6085
  */
5714
- ToolName?: string | undefined;
6086
+ CreatedAt?: Date | undefined;
5715
6087
  /**
5716
- * <p>Category that the tool belongs to. Some of the examples
5717
- * are Backdoor Tool, Pentest Tool, Network Scanner, and Network Sniffer.</p>
6088
+ * <p>The owner of the S3 bucket.</p>
5718
6089
  * @public
5719
6090
  */
5720
- ToolCategory?: string | undefined;
6091
+ Owner?: Owner | undefined;
5721
6092
  /**
5722
- * <p>Name of the security service that has been potentially disabled.</p>
6093
+ * <p>All tags attached to the S3 bucket</p>
5723
6094
  * @public
5724
6095
  */
5725
- ServiceName?: string | undefined;
6096
+ Tags?: Tag[] | undefined;
5726
6097
  /**
5727
- * <p>Example of the command line involved in the suspicious activity.</p>
6098
+ * <p>Describes the server side encryption method used in the S3 bucket.</p>
5728
6099
  * @public
5729
6100
  */
5730
- CommandLineExample?: string | undefined;
6101
+ DefaultServerSideEncryption?: DefaultServerSideEncryption | undefined;
5731
6102
  /**
5732
- * <p>The suspicious file path for which the threat intelligence details were found.</p>
6103
+ * <p>Describes the public access policies that apply to the S3 bucket.</p>
5733
6104
  * @public
5734
6105
  */
5735
- ThreatFilePath?: string | undefined;
6106
+ PublicAccess?: PublicAccess | undefined;
6107
+ /**
6108
+ * <p>Information about the S3 object that was scanned.</p>
6109
+ * @public
6110
+ */
6111
+ S3ObjectDetails?: S3ObjectDetail[] | undefined;
5736
6112
  }
5737
6113
  /**
5738
- * <p>Information about the process and any required context values for a specific
5739
- * finding.</p>
6114
+ * <p>Contains information about the Amazon Web Services resource associated with the activity that prompted
6115
+ * GuardDuty to generate a finding.</p>
5740
6116
  * @public
5741
6117
  */
5742
- export interface RuntimeDetails {
6118
+ export interface Resource {
5743
6119
  /**
5744
- * <p>Information about the observed process.</p>
6120
+ * <p>The IAM access key details (user information) of a user that engaged in the activity that
6121
+ * prompted GuardDuty to generate a finding.</p>
5745
6122
  * @public
5746
6123
  */
5747
- Process?: ProcessDetails | undefined;
6124
+ AccessKeyDetails?: AccessKeyDetails | undefined;
5748
6125
  /**
5749
- * <p>Additional information about the suspicious activity.</p>
6126
+ * <p>Contains information on the S3 bucket.</p>
5750
6127
  * @public
5751
6128
  */
5752
- Context?: RuntimeContext | undefined;
5753
- }
5754
- /**
5755
- * <p>Contains additional information about the generated finding.</p>
5756
- * @public
5757
- */
5758
- export interface Service {
6129
+ S3BucketDetails?: S3BucketDetail[] | undefined;
5759
6130
  /**
5760
- * <p>Information about the activity that is described in a finding.</p>
6131
+ * <p>The information about the EC2 instance associated with the activity that prompted
6132
+ * GuardDuty to generate a finding.</p>
5761
6133
  * @public
5762
6134
  */
5763
- Action?: Action | undefined;
6135
+ InstanceDetails?: InstanceDetails | undefined;
5764
6136
  /**
5765
- * <p>An evidence object associated with the service.</p>
6137
+ * <p>Details about the EKS cluster involved in a Kubernetes finding.</p>
5766
6138
  * @public
5767
6139
  */
5768
- Evidence?: Evidence | undefined;
6140
+ EksClusterDetails?: EksClusterDetails | undefined;
5769
6141
  /**
5770
- * <p>Indicates whether this finding is archived.</p>
6142
+ * <p>Details about the Kubernetes user and workload involved in a Kubernetes finding.</p>
5771
6143
  * @public
5772
6144
  */
5773
- Archived?: boolean | undefined;
6145
+ KubernetesDetails?: KubernetesDetails | undefined;
5774
6146
  /**
5775
- * <p>The total count of the occurrences of this finding type.</p>
6147
+ * <p>The type of Amazon Web Services resource.</p>
5776
6148
  * @public
5777
6149
  */
5778
- Count?: number | undefined;
6150
+ ResourceType?: string | undefined;
5779
6151
  /**
5780
- * <p>The detector ID for the GuardDuty service.</p>
6152
+ * <p>Contains list of scanned and skipped EBS volumes with details.</p>
5781
6153
  * @public
5782
6154
  */
5783
- DetectorId?: string | undefined;
6155
+ EbsVolumeDetails?: EbsVolumeDetails | undefined;
5784
6156
  /**
5785
- * <p>The first-seen timestamp of the activity that prompted GuardDuty to generate this
5786
- * finding.</p>
6157
+ * <p>Contains information about the details of the ECS Cluster.</p>
5787
6158
  * @public
5788
6159
  */
5789
- EventFirstSeen?: string | undefined;
6160
+ EcsClusterDetails?: EcsClusterDetails | undefined;
5790
6161
  /**
5791
- * <p>The last-seen timestamp of the activity that prompted GuardDuty to generate this
5792
- * finding.</p>
6162
+ * <p>Details of a container.</p>
5793
6163
  * @public
5794
6164
  */
5795
- EventLastSeen?: string | undefined;
6165
+ ContainerDetails?: Container | undefined;
5796
6166
  /**
5797
- * <p>The resource role information for this finding.</p>
6167
+ * <p>Contains information about the database instance to which an anomalous login attempt was
6168
+ * made.</p>
5798
6169
  * @public
5799
6170
  */
5800
- ResourceRole?: string | undefined;
6171
+ RdsDbInstanceDetails?: RdsDbInstanceDetails | undefined;
5801
6172
  /**
5802
- * <p>The name of the Amazon Web Services service (GuardDuty) that generated a finding.</p>
6173
+ * <p>Contains information about the RDS Limitless database that was involved in a GuardDuty finding.</p>
5803
6174
  * @public
5804
6175
  */
5805
- ServiceName?: string | undefined;
6176
+ RdsLimitlessDbDetails?: RdsLimitlessDbDetails | undefined;
6177
+ /**
6178
+ * <p>Contains information about the user details through which anomalous login attempt was
6179
+ * made.</p>
6180
+ * @public
6181
+ */
6182
+ RdsDbUserDetails?: RdsDbUserDetails | undefined;
6183
+ /**
6184
+ * <p>Contains information about the Lambda function that was involved in a finding.</p>
6185
+ * @public
6186
+ */
6187
+ LambdaDetails?: LambdaDetails | undefined;
6188
+ }
6189
+ /**
6190
+ * <p>Additional information about the generated finding.</p>
6191
+ * @public
6192
+ */
6193
+ export interface ServiceAdditionalInfo {
5806
6194
  /**
5807
- * <p>Feedback that was submitted about the finding.</p>
6195
+ * <p>This field specifies the value of the additional information.</p>
5808
6196
  * @public
5809
6197
  */
5810
- UserFeedback?: string | undefined;
6198
+ Value?: string | undefined;
5811
6199
  /**
5812
- * <p>Contains additional information about the generated finding.</p>
6200
+ * <p>Describes the type of the additional information.</p>
5813
6201
  * @public
5814
6202
  */
5815
- AdditionalInfo?: ServiceAdditionalInfo | undefined;
6203
+ Type?: string | undefined;
6204
+ }
6205
+ /**
6206
+ * <p>Information about the nested item path and hash of the protected
6207
+ * resource.</p>
6208
+ * @public
6209
+ */
6210
+ export interface ItemPath {
5816
6211
  /**
5817
- * <p>The name of the feature that generated a finding.</p>
6212
+ * <p>The nested item path where the infected file was found.</p>
5818
6213
  * @public
5819
6214
  */
5820
- FeatureName?: string | undefined;
6215
+ NestedItemPath?: string | undefined;
5821
6216
  /**
5822
- * <p>Returns details from the malware scan that created a finding.</p>
6217
+ * <p>The hash value of the infected resource.</p>
5823
6218
  * @public
5824
6219
  */
5825
- EbsVolumeScanDetails?: EbsVolumeScanDetails | undefined;
6220
+ Hash?: string | undefined;
6221
+ }
6222
+ /**
6223
+ * <p>Information about the detected threats associated with the
6224
+ * generated finding.</p>
6225
+ * @public
6226
+ */
6227
+ export interface Threat {
5826
6228
  /**
5827
- * <p>Information about the process and any required context values for a specific
5828
- * finding</p>
6229
+ * <p>Name of the detected threat that caused GuardDuty to generate this finding.</p>
5829
6230
  * @public
5830
6231
  */
5831
- RuntimeDetails?: RuntimeDetails | undefined;
6232
+ Name?: string | undefined;
5832
6233
  /**
5833
- * <p>Contains information about the detected unusual behavior.</p>
6234
+ * <p>Source of the threat that generated this finding.</p>
5834
6235
  * @public
5835
6236
  */
5836
- Detection?: Detection | undefined;
6237
+ Source?: string | undefined;
5837
6238
  /**
5838
- * <p>Returns details from the malware scan that generated a GuardDuty finding.</p>
6239
+ * <p>Information about the nested item path and
6240
+ * hash of the protected resource.</p>
5839
6241
  * @public
5840
6242
  */
5841
- MalwareScanDetails?: MalwareScanDetails | undefined;
6243
+ ItemPaths?: ItemPath[] | undefined;
5842
6244
  }
5843
6245
  /**
5844
- * <p>Contains information about the finding that is generated when abnormal or suspicious
5845
- * activity is detected.</p>
6246
+ * <p>Information about the malware scan that generated a GuardDuty finding.</p>
5846
6247
  * @public
5847
6248
  */
5848
- export interface Finding {
6249
+ export interface MalwareScanDetails {
5849
6250
  /**
5850
- * <p>The ID of the account in which the finding was generated.</p>
6251
+ * <p>Information about the detected threats associated with the
6252
+ * generated GuardDuty finding.</p>
5851
6253
  * @public
5852
6254
  */
5853
- AccountId: string | undefined;
6255
+ Threats?: Threat[] | undefined;
6256
+ }
6257
+ /**
6258
+ * <p>Information about the runtime process details.</p>
6259
+ * @public
6260
+ */
6261
+ export interface LineageObject {
5854
6262
  /**
5855
- * <p>The ARN of the finding.</p>
6263
+ * <p>The time when the process started. This is in UTC format.</p>
5856
6264
  * @public
5857
6265
  */
5858
- Arn: string | undefined;
6266
+ StartTime?: Date | undefined;
5859
6267
  /**
5860
- * <p>The confidence score for the finding.</p>
6268
+ * <p>The process ID of the child process.</p>
5861
6269
  * @public
5862
6270
  */
5863
- Confidence?: number | undefined;
6271
+ NamespacePid?: number | undefined;
5864
6272
  /**
5865
- * <p>The time and date when the finding was created.</p>
6273
+ * <p>The user ID of the user that executed the process.</p>
5866
6274
  * @public
5867
6275
  */
5868
- CreatedAt: string | undefined;
6276
+ UserId?: number | undefined;
5869
6277
  /**
5870
- * <p>The description of the finding.</p>
6278
+ * <p>The name of the process.</p>
5871
6279
  * @public
5872
6280
  */
5873
- Description?: string | undefined;
6281
+ Name?: string | undefined;
5874
6282
  /**
5875
- * <p>The ID of the finding.</p>
6283
+ * <p>The ID of the process.</p>
5876
6284
  * @public
5877
6285
  */
5878
- Id: string | undefined;
6286
+ Pid?: number | undefined;
5879
6287
  /**
5880
- * <p>The partition associated with the finding.</p>
6288
+ * <p>The unique ID assigned to the process by GuardDuty.</p>
5881
6289
  * @public
5882
6290
  */
5883
- Partition?: string | undefined;
6291
+ Uuid?: string | undefined;
5884
6292
  /**
5885
- * <p>The Region where the finding was generated.</p>
6293
+ * <p>The absolute path of the process executable file.</p>
5886
6294
  * @public
5887
6295
  */
5888
- Region: string | undefined;
6296
+ ExecutablePath?: string | undefined;
5889
6297
  /**
5890
- * <p>Contains information about the Amazon Web Services resource associated with the activity that prompted
5891
- * GuardDuty to generate a finding.</p>
6298
+ * <p>The effective user ID that was used to execute the process.</p>
5892
6299
  * @public
5893
6300
  */
5894
- Resource: Resource | undefined;
6301
+ Euid?: number | undefined;
5895
6302
  /**
5896
- * <p>The version of the schema used for the finding.</p>
6303
+ * <p>The unique ID of the parent process. This ID is assigned to the parent process by
6304
+ * GuardDuty.</p>
5897
6305
  * @public
5898
6306
  */
5899
- SchemaVersion: string | undefined;
6307
+ ParentUuid?: string | undefined;
6308
+ }
6309
+ /**
6310
+ * <p>Information about the observed process.</p>
6311
+ * @public
6312
+ */
6313
+ export interface ProcessDetails {
5900
6314
  /**
5901
- * <p>Contains additional information about the generated finding.</p>
6315
+ * <p>The name of the process.</p>
5902
6316
  * @public
5903
6317
  */
5904
- Service?: Service | undefined;
6318
+ Name?: string | undefined;
5905
6319
  /**
5906
- * <p>The severity of the finding.</p>
6320
+ * <p>The absolute path of the process executable file.</p>
5907
6321
  * @public
5908
6322
  */
5909
- Severity: number | undefined;
6323
+ ExecutablePath?: string | undefined;
5910
6324
  /**
5911
- * <p>The title of the finding.</p>
6325
+ * <p>The <code>SHA256</code> hash of the process executable.</p>
5912
6326
  * @public
5913
6327
  */
5914
- Title?: string | undefined;
6328
+ ExecutableSha256?: string | undefined;
5915
6329
  /**
5916
- * <p>The type of finding.</p>
6330
+ * <p>The ID of the child process.</p>
5917
6331
  * @public
5918
6332
  */
5919
- Type: string | undefined;
6333
+ NamespacePid?: number | undefined;
5920
6334
  /**
5921
- * <p>The time and date when the finding was last updated.</p>
6335
+ * <p>The present working directory of the process.</p>
5922
6336
  * @public
5923
6337
  */
5924
- UpdatedAt: string | undefined;
5925
- }
5926
- /**
5927
- * <p>Information about each finding type associated with the
5928
- * <code>groupedByFindingType</code> statistics.</p>
5929
- * @public
5930
- */
5931
- export interface FindingTypeStatistics {
6338
+ Pwd?: string | undefined;
5932
6339
  /**
5933
- * <p>Name of the finding type.</p>
6340
+ * <p>The ID of the process.</p>
5934
6341
  * @public
5935
6342
  */
5936
- FindingType?: string | undefined;
6343
+ Pid?: number | undefined;
5937
6344
  /**
5938
- * <p>The timestamp at which this finding type was last generated in your environment.</p>
6345
+ * <p>The time when the process started. This is in UTC format.</p>
5939
6346
  * @public
5940
6347
  */
5941
- LastGeneratedAt?: Date | undefined;
6348
+ StartTime?: Date | undefined;
5942
6349
  /**
5943
- * <p>The total number of findings associated with generated for each distinct finding type.</p>
6350
+ * <p>The unique ID assigned to the process by GuardDuty.</p>
5944
6351
  * @public
5945
6352
  */
5946
- TotalFindings?: number | undefined;
5947
- }
5948
- /**
5949
- * <p>Information about each resource type associated with the
5950
- * <code>groupedByResource</code> statistics.</p>
5951
- * @public
5952
- */
5953
- export interface ResourceStatistics {
6353
+ Uuid?: string | undefined;
5954
6354
  /**
5955
- * <p>The ID of the Amazon Web Services account.</p>
6355
+ * <p>The unique ID of the parent process. This ID is assigned to the parent process by
6356
+ * GuardDuty.</p>
5956
6357
  * @public
5957
6358
  */
5958
- AccountId?: string | undefined;
6359
+ ParentUuid?: string | undefined;
5959
6360
  /**
5960
- * <p>The timestamp at which the statistics for this resource was last generated.</p>
6361
+ * <p>The user that executed the process.</p>
5961
6362
  * @public
5962
6363
  */
5963
- LastGeneratedAt?: Date | undefined;
6364
+ User?: string | undefined;
5964
6365
  /**
5965
- * <p>ID associated with each resource. The following list provides the mapping of the resource type
5966
- * and resource ID.</p>
5967
- * <p class="title">
5968
- * <b>Mapping of resource and resource ID</b>
5969
- * </p>
5970
- * <ul>
5971
- * <li>
5972
- * <p>AccessKey - <code>resource.accessKeyDetails.accessKeyId</code>
5973
- * </p>
5974
- * </li>
5975
- * <li>
5976
- * <p>Container - <code>resource.containerDetails.id</code>
5977
- * </p>
5978
- * </li>
5979
- * <li>
5980
- * <p>ECSCluster - <code>resource.ecsClusterDetails.name</code>
5981
- * </p>
5982
- * </li>
5983
- * <li>
5984
- * <p>EKSCluster - <code>resource.eksClusterDetails.name</code>
5985
- * </p>
5986
- * </li>
5987
- * <li>
5988
- * <p>Instance - <code>resource.instanceDetails.instanceId</code>
5989
- * </p>
5990
- * </li>
5991
- * <li>
5992
- * <p>KubernetesCluster - <code>resource.kubernetesDetails.kubernetesWorkloadDetails.name</code>
5993
- * </p>
5994
- * </li>
5995
- * <li>
5996
- * <p>Lambda - <code>resource.lambdaDetails.functionName</code>
5997
- * </p>
5998
- * </li>
5999
- * <li>
6000
- * <p>RDSDBInstance - <code>resource.rdsDbInstanceDetails.dbInstanceIdentifier</code>
6001
- * </p>
6002
- * </li>
6003
- * <li>
6004
- * <p>S3Bucket - <code>resource.s3BucketDetails.name</code>
6005
- * </p>
6006
- * </li>
6007
- * <li>
6008
- * <p>S3Object - <code>resource.s3BucketDetails.name</code>
6009
- * </p>
6010
- * </li>
6011
- * </ul>
6366
+ * <p>The unique ID of the user that executed the process.</p>
6012
6367
  * @public
6013
6368
  */
6014
- ResourceId?: string | undefined;
6369
+ UserId?: number | undefined;
6015
6370
  /**
6016
- * <p>The type of resource.</p>
6371
+ * <p>The effective user ID of the user that executed the process.</p>
6017
6372
  * @public
6018
6373
  */
6019
- ResourceType?: string | undefined;
6374
+ Euid?: number | undefined;
6020
6375
  /**
6021
- * <p>The total number of findings associated with this resource.</p>
6376
+ * <p>Information about the process's lineage.</p>
6022
6377
  * @public
6023
6378
  */
6024
- TotalFindings?: number | undefined;
6379
+ Lineage?: LineageObject[] | undefined;
6025
6380
  }
6026
6381
  /**
6027
- * <p>Information about severity level for each finding type.</p>
6382
+ * <p>Additional information about the suspicious activity.</p>
6028
6383
  * @public
6029
6384
  */
6030
- export interface SeverityStatistics {
6385
+ export interface RuntimeContext {
6031
6386
  /**
6032
- * <p>The timestamp at which a finding type for a specific severity was last generated.</p>
6387
+ * <p>Information about the process that modified the current process. This is available for
6388
+ * multiple finding types.</p>
6033
6389
  * @public
6034
6390
  */
6035
- LastGeneratedAt?: Date | undefined;
6391
+ ModifyingProcess?: ProcessDetails | undefined;
6036
6392
  /**
6037
- * <p>The severity level associated with each finding type.</p>
6393
+ * <p>The timestamp at which the process modified the current process. The timestamp is in UTC date string
6394
+ * format.</p>
6038
6395
  * @public
6039
6396
  */
6040
- Severity?: number | undefined;
6397
+ ModifiedAt?: Date | undefined;
6041
6398
  /**
6042
- * <p>The total number of findings associated with this severity.</p>
6399
+ * <p>The path to the script that was executed.</p>
6043
6400
  * @public
6044
6401
  */
6045
- TotalFindings?: number | undefined;
6046
- }
6047
- /**
6048
- * <p>Contains information about finding statistics.</p>
6049
- * @public
6050
- */
6051
- export interface FindingStatistics {
6402
+ ScriptPath?: string | undefined;
6052
6403
  /**
6053
- * @deprecated
6054
- *
6055
- * <p>Represents a list of map of severity to count statistics for a set of findings.</p>
6404
+ * <p>The path to the new library that was loaded.</p>
6405
+ * @public
6406
+ */
6407
+ LibraryPath?: string | undefined;
6408
+ /**
6409
+ * <p>The value of the LD_PRELOAD environment variable.</p>
6056
6410
  * @public
6057
6411
  */
6058
- CountBySeverity?: Record<string, number> | undefined;
6412
+ LdPreloadValue?: string | undefined;
6059
6413
  /**
6060
- * <p>Represents a list of map of accounts with a findings count associated with each account.</p>
6414
+ * <p>The path to the docket socket that was accessed.</p>
6061
6415
  * @public
6062
6416
  */
6063
- GroupedByAccount?: AccountStatistics[] | undefined;
6417
+ SocketPath?: string | undefined;
6064
6418
  /**
6065
- * <p>Represents a list of map of dates with a count of total findings generated on each date per severity level.</p>
6419
+ * <p>The path to the leveraged <code>runc</code> implementation.</p>
6066
6420
  * @public
6067
6421
  */
6068
- GroupedByDate?: DateStatistics[] | undefined;
6422
+ RuncBinaryPath?: string | undefined;
6069
6423
  /**
6070
- * <p>Represents a list of map of finding types with a count of total findings generated for each type. </p>
6071
- * <p>Based on the <code>orderBy</code>
6072
- * parameter, this request returns either the most occurring finding types or the least occurring finding types. If the
6073
- * <code>orderBy</code> parameter is <code>ASC</code>, this will represent the least occurring finding types in
6074
- * your account; otherwise, this will represent the most occurring finding types. The default
6075
- * value of <code>orderBy</code> is <code>DESC</code>.</p>
6424
+ * <p>The path in the container that modified the release agent file.</p>
6076
6425
  * @public
6077
6426
  */
6078
- GroupedByFindingType?: FindingTypeStatistics[] | undefined;
6427
+ ReleaseAgentPath?: string | undefined;
6079
6428
  /**
6080
- * <p>Represents a list of map of top resources with a count of total findings.</p>
6429
+ * <p>The path on the host that is mounted by the container.</p>
6081
6430
  * @public
6082
6431
  */
6083
- GroupedByResource?: ResourceStatistics[] | undefined;
6432
+ MountSource?: string | undefined;
6084
6433
  /**
6085
- * <p>Represents a list of map of total findings for each severity level.</p>
6434
+ * <p>The path in the container that is mapped to the host directory.</p>
6086
6435
  * @public
6087
6436
  */
6088
- GroupedBySeverity?: SeverityStatistics[] | undefined;
6089
- }
6090
- /**
6091
- * @public
6092
- * @enum
6093
- */
6094
- export declare const FindingStatisticType: {
6095
- readonly COUNT_BY_SEVERITY: "COUNT_BY_SEVERITY";
6096
- };
6097
- /**
6098
- * @public
6099
- */
6100
- export type FindingStatisticType = (typeof FindingStatisticType)[keyof typeof FindingStatisticType];
6101
- /**
6102
- * @public
6103
- */
6104
- export interface GetAdministratorAccountRequest {
6437
+ MountTarget?: string | undefined;
6105
6438
  /**
6106
- * <p>The unique ID of the detector of the GuardDuty member account.</p>
6439
+ * <p>Represents the type of mounted fileSystem.</p>
6107
6440
  * @public
6108
6441
  */
6109
- DetectorId: string | undefined;
6110
- }
6111
- /**
6112
- * @public
6113
- */
6114
- export interface GetAdministratorAccountResponse {
6442
+ FileSystemType?: string | undefined;
6115
6443
  /**
6116
- * <p>The administrator account details.</p>
6444
+ * <p>Represents options that control the behavior of a runtime operation or action. For
6445
+ * example, a filesystem mount operation may contain a read-only flag.</p>
6117
6446
  * @public
6118
6447
  */
6119
- Administrator: Administrator | undefined;
6120
- }
6121
- /**
6122
- * @public
6123
- */
6124
- export interface GetCoverageStatisticsRequest {
6448
+ Flags?: string[] | undefined;
6125
6449
  /**
6126
- * <p>The unique ID of the GuardDuty detector.</p>
6127
- * <p>To find the <code>detectorId</code> in the current Region, see the
6128
- * Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
6450
+ * <p>The name of the module loaded into the kernel.</p>
6129
6451
  * @public
6130
6452
  */
6131
- DetectorId: string | undefined;
6453
+ ModuleName?: string | undefined;
6132
6454
  /**
6133
- * <p>Represents the criteria used to filter the coverage statistics.</p>
6455
+ * <p>The path to the module loaded into the kernel.</p>
6134
6456
  * @public
6135
6457
  */
6136
- FilterCriteria?: CoverageFilterCriteria | undefined;
6458
+ ModuleFilePath?: string | undefined;
6137
6459
  /**
6138
- * <p>Represents the statistics type used to aggregate the coverage details.</p>
6460
+ * <p>The <code>SHA256</code> hash of the module.</p>
6139
6461
  * @public
6140
6462
  */
6141
- StatisticsType: CoverageStatisticsType[] | undefined;
6142
- }
6143
- /**
6144
- * @public
6145
- */
6146
- export interface GetCoverageStatisticsResponse {
6463
+ ModuleSha256?: string | undefined;
6147
6464
  /**
6148
- * <p>Represents the count aggregated by the <code>statusCode</code> and
6149
- * <code>resourceType</code>.</p>
6465
+ * <p>The path to the modified shell history file.</p>
6150
6466
  * @public
6151
6467
  */
6152
- CoverageStatistics?: CoverageStatistics | undefined;
6153
- }
6154
- /**
6155
- * @public
6156
- */
6157
- export interface GetDetectorRequest {
6468
+ ShellHistoryFilePath?: string | undefined;
6158
6469
  /**
6159
- * <p>The unique ID of the detector that you want to get.</p>
6160
- * <p>To find the <code>detectorId</code> in the current Region, see the
6161
- * Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
6470
+ * <p>Information about the process that had its memory overwritten by the current process.</p>
6162
6471
  * @public
6163
6472
  */
6164
- DetectorId: string | undefined;
6165
- }
6166
- /**
6167
- * @public
6168
- */
6169
- export interface GetDetectorResponse {
6473
+ TargetProcess?: ProcessDetails | undefined;
6170
6474
  /**
6171
- * <p>The timestamp of when the detector was created.</p>
6475
+ * <p>Represents the communication protocol associated with the address. For example, the address
6476
+ * family <code>AF_INET</code> is used for IP version of 4 protocol.</p>
6172
6477
  * @public
6173
6478
  */
6174
- CreatedAt?: string | undefined;
6479
+ AddressFamily?: string | undefined;
6175
6480
  /**
6176
- * <p>The publishing frequency of the finding.</p>
6481
+ * <p>Specifies a particular protocol within the address family. Usually there is a single
6482
+ * protocol in address families. For example, the address family <code>AF_INET</code> only has
6483
+ * the IP protocol.</p>
6177
6484
  * @public
6178
6485
  */
6179
- FindingPublishingFrequency?: FindingPublishingFrequency | undefined;
6486
+ IanaProtocolNumber?: number | undefined;
6180
6487
  /**
6181
- * <p>The GuardDuty service role.</p>
6488
+ * <p>Specifies the Region of a process's address space such as stack and heap.</p>
6182
6489
  * @public
6183
6490
  */
6184
- ServiceRole: string | undefined;
6491
+ MemoryRegions?: string[] | undefined;
6185
6492
  /**
6186
- * <p>The detector status.</p>
6493
+ * <p>Name of the potentially suspicious tool.</p>
6187
6494
  * @public
6188
6495
  */
6189
- Status: DetectorStatus | undefined;
6496
+ ToolName?: string | undefined;
6190
6497
  /**
6191
- * <p>The last-updated timestamp for the detector.</p>
6498
+ * <p>Category that the tool belongs to. Some of the examples
6499
+ * are Backdoor Tool, Pentest Tool, Network Scanner, and Network Sniffer.</p>
6192
6500
  * @public
6193
6501
  */
6194
- UpdatedAt?: string | undefined;
6502
+ ToolCategory?: string | undefined;
6195
6503
  /**
6196
- * @deprecated
6197
- *
6198
- * <p>Describes which data sources are enabled for the detector.</p>
6504
+ * <p>Name of the security service that has been potentially disabled.</p>
6199
6505
  * @public
6200
6506
  */
6201
- DataSources?: DataSourceConfigurationsResult | undefined;
6507
+ ServiceName?: string | undefined;
6202
6508
  /**
6203
- * <p>The tags of the detector resource.</p>
6509
+ * <p>Example of the command line involved in the suspicious activity.</p>
6204
6510
  * @public
6205
6511
  */
6206
- Tags?: Record<string, string> | undefined;
6512
+ CommandLineExample?: string | undefined;
6207
6513
  /**
6208
- * <p>Describes the features that have been enabled for the detector.</p>
6514
+ * <p>The suspicious file path for which the threat intelligence details were found.</p>
6209
6515
  * @public
6210
6516
  */
6211
- Features?: DetectorFeatureConfigurationResult[] | undefined;
6517
+ ThreatFilePath?: string | undefined;
6212
6518
  }
6213
6519
  /**
6520
+ * <p>Information about the process and any required context values for a specific
6521
+ * finding.</p>
6214
6522
  * @public
6215
6523
  */
6216
- export interface GetFilterRequest {
6524
+ export interface RuntimeDetails {
6217
6525
  /**
6218
- * <p>The unique ID of the detector that is associated with this filter.</p>
6219
- * <p>To find the <code>detectorId</code> in the current Region, see the
6220
- * Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
6526
+ * <p>Information about the observed process.</p>
6221
6527
  * @public
6222
6528
  */
6223
- DetectorId: string | undefined;
6529
+ Process?: ProcessDetails | undefined;
6224
6530
  /**
6225
- * <p>The name of the filter you want to get.</p>
6531
+ * <p>Additional information about the suspicious activity.</p>
6226
6532
  * @public
6227
6533
  */
6228
- FilterName: string | undefined;
6534
+ Context?: RuntimeContext | undefined;
6229
6535
  }
6230
6536
  /**
6537
+ * <p>Contains additional information about the generated finding.</p>
6231
6538
  * @public
6232
6539
  */
6233
- export interface GetFilterResponse {
6540
+ export interface Service {
6234
6541
  /**
6235
- * <p>The name of the filter.</p>
6542
+ * <p>Information about the activity that is described in a finding.</p>
6236
6543
  * @public
6237
6544
  */
6238
- Name: string | undefined;
6545
+ Action?: Action | undefined;
6239
6546
  /**
6240
- * <p>The description of the filter.</p>
6547
+ * <p>An evidence object associated with the service.</p>
6241
6548
  * @public
6242
6549
  */
6243
- Description?: string | undefined;
6550
+ Evidence?: Evidence | undefined;
6244
6551
  /**
6245
- * <p>Specifies the action that is to be applied to the findings that match the filter.</p>
6552
+ * <p>Indicates whether this finding is archived.</p>
6246
6553
  * @public
6247
6554
  */
6248
- Action: FilterAction | undefined;
6555
+ Archived?: boolean | undefined;
6249
6556
  /**
6250
- * <p>Specifies the position of the filter in the list of current filters. Also specifies the
6251
- * order in which this filter is applied to the findings.</p>
6557
+ * <p>The total count of the occurrences of this finding type.</p>
6252
6558
  * @public
6253
6559
  */
6254
- Rank?: number | undefined;
6560
+ Count?: number | undefined;
6255
6561
  /**
6256
- * <p>Represents the criteria to be used in the filter for querying findings.</p>
6562
+ * <p>The detector ID for the GuardDuty service.</p>
6257
6563
  * @public
6258
6564
  */
6259
- FindingCriteria: FindingCriteria | undefined;
6565
+ DetectorId?: string | undefined;
6260
6566
  /**
6261
- * <p>The tags of the filter resource.</p>
6567
+ * <p>The first-seen timestamp of the activity that prompted GuardDuty to generate this
6568
+ * finding.</p>
6262
6569
  * @public
6263
6570
  */
6264
- Tags?: Record<string, string> | undefined;
6265
- }
6266
- /**
6267
- * @public
6268
- */
6269
- export interface GetFindingsRequest {
6571
+ EventFirstSeen?: string | undefined;
6270
6572
  /**
6271
- * <p>The ID of the detector that specifies the GuardDuty service whose findings you want to
6272
- * retrieve.</p>
6273
- * <p>To find the <code>detectorId</code> in the current Region, see the
6274
- * Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
6573
+ * <p>The last-seen timestamp of the activity that prompted GuardDuty to generate this
6574
+ * finding.</p>
6275
6575
  * @public
6276
6576
  */
6277
- DetectorId: string | undefined;
6577
+ EventLastSeen?: string | undefined;
6278
6578
  /**
6279
- * <p>The IDs of the findings that you want to retrieve.</p>
6579
+ * <p>The resource role information for this finding.</p>
6280
6580
  * @public
6281
6581
  */
6282
- FindingIds: string[] | undefined;
6582
+ ResourceRole?: string | undefined;
6283
6583
  /**
6284
- * <p>Represents the criteria used for sorting findings.</p>
6584
+ * <p>The name of the Amazon Web Services service (GuardDuty) that generated a finding.</p>
6285
6585
  * @public
6286
6586
  */
6287
- SortCriteria?: SortCriteria | undefined;
6288
- }
6289
- /**
6290
- * @public
6291
- */
6292
- export interface GetFindingsResponse {
6587
+ ServiceName?: string | undefined;
6293
6588
  /**
6294
- * <p>A list of findings.</p>
6589
+ * <p>Feedback that was submitted about the finding.</p>
6295
6590
  * @public
6296
6591
  */
6297
- Findings: Finding[] | undefined;
6298
- }
6299
- /**
6300
- * @public
6301
- * @enum
6302
- */
6303
- export declare const GroupByType: {
6304
- readonly ACCOUNT: "ACCOUNT";
6305
- readonly DATE: "DATE";
6306
- readonly FINDING_TYPE: "FINDING_TYPE";
6307
- readonly RESOURCE: "RESOURCE";
6308
- readonly SEVERITY: "SEVERITY";
6309
- };
6310
- /**
6311
- * @public
6312
- */
6313
- export type GroupByType = (typeof GroupByType)[keyof typeof GroupByType];
6592
+ UserFeedback?: string | undefined;
6593
+ /**
6594
+ * <p>Contains additional information about the generated finding.</p>
6595
+ * @public
6596
+ */
6597
+ AdditionalInfo?: ServiceAdditionalInfo | undefined;
6598
+ /**
6599
+ * <p>The name of the feature that generated a finding.</p>
6600
+ * @public
6601
+ */
6602
+ FeatureName?: string | undefined;
6603
+ /**
6604
+ * <p>Returns details from the malware scan that created a finding.</p>
6605
+ * @public
6606
+ */
6607
+ EbsVolumeScanDetails?: EbsVolumeScanDetails | undefined;
6608
+ /**
6609
+ * <p>Information about the process and any required context values for a specific
6610
+ * finding</p>
6611
+ * @public
6612
+ */
6613
+ RuntimeDetails?: RuntimeDetails | undefined;
6614
+ /**
6615
+ * <p>Contains information about the detected unusual behavior.</p>
6616
+ * @public
6617
+ */
6618
+ Detection?: Detection | undefined;
6619
+ /**
6620
+ * <p>Returns details from the malware scan that generated a GuardDuty finding.</p>
6621
+ * @public
6622
+ */
6623
+ MalwareScanDetails?: MalwareScanDetails | undefined;
6624
+ }
6314
6625
  /**
6626
+ * <p>Contains information about the finding that is generated when abnormal or suspicious
6627
+ * activity is detected.</p>
6315
6628
  * @public
6316
6629
  */
6317
- export interface GetFindingsStatisticsRequest {
6630
+ export interface Finding {
6318
6631
  /**
6319
- * <p>The ID of the detector whose findings statistics you
6320
- * want to retrieve.</p>
6321
- * <p>To find the <code>detectorId</code> in the current Region, see the
6322
- * Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
6632
+ * <p>The ID of the account in which the finding was generated.</p>
6323
6633
  * @public
6324
6634
  */
6325
- DetectorId: string | undefined;
6635
+ AccountId: string | undefined;
6326
6636
  /**
6327
- * @deprecated
6328
- *
6329
- * <p>The types of finding statistics to retrieve.</p>
6637
+ * <p>The ARN of the finding.</p>
6330
6638
  * @public
6331
6639
  */
6332
- FindingStatisticTypes?: FindingStatisticType[] | undefined;
6640
+ Arn: string | undefined;
6333
6641
  /**
6334
- * <p>Represents the criteria that is used for querying findings.</p>
6642
+ * <p>The confidence score for the finding.</p>
6335
6643
  * @public
6336
6644
  */
6337
- FindingCriteria?: FindingCriteria | undefined;
6645
+ Confidence?: number | undefined;
6338
6646
  /**
6339
- * <p>Displays the findings statistics grouped by one of the listed valid values.</p>
6647
+ * <p>The time and date when the finding was created.</p>
6340
6648
  * @public
6341
6649
  */
6342
- GroupBy?: GroupByType | undefined;
6650
+ CreatedAt: string | undefined;
6343
6651
  /**
6344
- * <p>Displays the sorted findings in the requested order. The default
6345
- * value of <code>orderBy</code> is <code>DESC</code>.</p>
6346
- * <p>You can use this parameter only with the <code>groupBy</code> parameter.</p>
6652
+ * <p>The description of the finding.</p>
6347
6653
  * @public
6348
6654
  */
6349
- OrderBy?: OrderBy | undefined;
6655
+ Description?: string | undefined;
6350
6656
  /**
6351
- * <p>The maximum number of results to be returned in the response. The default value is 25.</p>
6352
- * <p>You can use this parameter only with the <code>groupBy</code> parameter.</p>
6657
+ * <p>The ID of the finding.</p>
6353
6658
  * @public
6354
6659
  */
6355
- MaxResults?: number | undefined;
6356
- }
6357
- /**
6358
- * @public
6359
- */
6360
- export interface GetFindingsStatisticsResponse {
6660
+ Id: string | undefined;
6361
6661
  /**
6362
- * <p>The finding statistics object.</p>
6662
+ * <p>The partition associated with the finding.</p>
6363
6663
  * @public
6364
6664
  */
6365
- FindingStatistics: FindingStatistics | undefined;
6665
+ Partition?: string | undefined;
6366
6666
  /**
6367
- * <p>The pagination parameter to be used on the next list operation to retrieve more items.</p>
6368
- * <p>This parameter is currently not supported.</p>
6667
+ * <p>The Region where the finding was generated.</p>
6369
6668
  * @public
6370
6669
  */
6371
- NextToken?: string | undefined;
6372
- }
6373
- /**
6374
- * @public
6375
- */
6376
- export interface GetInvitationsCountRequest {
6377
- }
6378
- /**
6379
- * @public
6380
- */
6381
- export interface GetInvitationsCountResponse {
6670
+ Region: string | undefined;
6382
6671
  /**
6383
- * <p>The number of received invitations.</p>
6672
+ * <p>Contains information about the Amazon Web Services resource associated with the activity that prompted
6673
+ * GuardDuty to generate a finding.</p>
6384
6674
  * @public
6385
6675
  */
6386
- InvitationsCount?: number | undefined;
6387
- }
6388
- /**
6389
- * @public
6390
- */
6391
- export interface GetIPSetRequest {
6676
+ Resource: Resource | undefined;
6392
6677
  /**
6393
- * <p>The unique ID of the detector that is associated with the IPSet.</p>
6394
- * <p>To find the <code>detectorId</code> in the current Region, see the
6395
- * Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
6678
+ * <p>The version of the schema used for the finding.</p>
6396
6679
  * @public
6397
6680
  */
6398
- DetectorId: string | undefined;
6681
+ SchemaVersion: string | undefined;
6399
6682
  /**
6400
- * <p>The unique ID of the IPSet to retrieve.</p>
6683
+ * <p>Contains additional information about the generated finding.</p>
6401
6684
  * @public
6402
6685
  */
6403
- IpSetId: string | undefined;
6404
- }
6405
- /**
6406
- * @public
6407
- * @enum
6408
- */
6409
- export declare const IpSetStatus: {
6410
- readonly ACTIVATING: "ACTIVATING";
6411
- readonly ACTIVE: "ACTIVE";
6412
- readonly DEACTIVATING: "DEACTIVATING";
6413
- readonly DELETED: "DELETED";
6414
- readonly DELETE_PENDING: "DELETE_PENDING";
6415
- readonly ERROR: "ERROR";
6416
- readonly INACTIVE: "INACTIVE";
6417
- };
6418
- /**
6419
- * @public
6420
- */
6421
- export type IpSetStatus = (typeof IpSetStatus)[keyof typeof IpSetStatus];
6422
- /**
6423
- * @public
6424
- */
6425
- export interface GetIPSetResponse {
6686
+ Service?: Service | undefined;
6426
6687
  /**
6427
- * <p>The user-friendly name for the IPSet.</p>
6688
+ * <p>The severity of the finding.</p>
6428
6689
  * @public
6429
6690
  */
6430
- Name: string | undefined;
6691
+ Severity: number | undefined;
6431
6692
  /**
6432
- * <p>The format of the file that contains the IPSet.</p>
6693
+ * <p>The title of the finding.</p>
6433
6694
  * @public
6434
6695
  */
6435
- Format: IpSetFormat | undefined;
6696
+ Title?: string | undefined;
6436
6697
  /**
6437
- * <p>The URI of the file that contains the IPSet.</p>
6698
+ * <p>The type of finding.</p>
6438
6699
  * @public
6439
6700
  */
6440
- Location: string | undefined;
6701
+ Type: string | undefined;
6441
6702
  /**
6442
- * <p>The status of IPSet file that was uploaded.</p>
6703
+ * <p>The time and date when the finding was last updated.</p>
6443
6704
  * @public
6444
6705
  */
6445
- Status: IpSetStatus | undefined;
6706
+ UpdatedAt: string | undefined;
6446
6707
  /**
6447
- * <p>The tags of the IPSet resource.</p>
6708
+ * <p>Amazon Resource Name (ARN) associated with the attack sequence finding.</p>
6448
6709
  * @public
6449
6710
  */
6450
- Tags?: Record<string, string> | undefined;
6711
+ AssociatedAttackSequenceArn?: string | undefined;
6451
6712
  }
6452
6713
  /**
6714
+ * <p>Information about each finding type associated with the
6715
+ * <code>groupedByFindingType</code> statistics.</p>
6453
6716
  * @public
6454
6717
  */
6455
- export interface GetMalwareProtectionPlanRequest {
6718
+ export interface FindingTypeStatistics {
6456
6719
  /**
6457
- * <p>A unique identifier associated with Malware Protection plan resource.</p>
6720
+ * <p>Name of the finding type.</p>
6458
6721
  * @public
6459
6722
  */
6460
- MalwareProtectionPlanId: string | undefined;
6461
- }
6462
- /**
6463
- * @public
6464
- * @enum
6465
- */
6466
- export declare const MalwareProtectionPlanStatus: {
6467
- readonly ACTIVE: "ACTIVE";
6468
- readonly ERROR: "ERROR";
6469
- readonly WARNING: "WARNING";
6470
- };
6471
- /**
6472
- * @public
6473
- */
6474
- export type MalwareProtectionPlanStatus = (typeof MalwareProtectionPlanStatus)[keyof typeof MalwareProtectionPlanStatus];
6475
- /**
6476
- * <p>Information about the issue code and message associated to the status of
6477
- * your Malware Protection plan.</p>
6478
- * @public
6479
- */
6480
- export interface MalwareProtectionPlanStatusReason {
6723
+ FindingType?: string | undefined;
6481
6724
  /**
6482
- * <p>Issue code.</p>
6725
+ * <p>The timestamp at which this finding type was last generated in your environment.</p>
6483
6726
  * @public
6484
6727
  */
6485
- Code?: string | undefined;
6728
+ LastGeneratedAt?: Date | undefined;
6486
6729
  /**
6487
- * <p>Issue message that specifies the reason. For information
6488
- * about potential troubleshooting steps, see
6489
- * <a href="https://docs.aws.amazon.com/guardduty/latest/ug/troubleshoot-s3-malware-protection-status-errors.html">Troubleshooting Malware Protection for S3 status issues</a> in the
6490
- * <i>GuardDuty User Guide</i>.</p>
6730
+ * <p>The total number of findings associated with generated for each distinct finding type.</p>
6491
6731
  * @public
6492
6732
  */
6493
- Message?: string | undefined;
6733
+ TotalFindings?: number | undefined;
6494
6734
  }
6495
6735
  /**
6736
+ * <p>Information about each resource type associated with the
6737
+ * <code>groupedByResource</code> statistics.</p>
6496
6738
  * @public
6497
6739
  */
6498
- export interface GetMalwareProtectionPlanResponse {
6740
+ export interface ResourceStatistics {
6499
6741
  /**
6500
- * <p>Amazon Resource Name (ARN) of the protected resource.</p>
6742
+ * <p>The ID of the Amazon Web Services account.</p>
6501
6743
  * @public
6502
6744
  */
6503
- Arn?: string | undefined;
6745
+ AccountId?: string | undefined;
6504
6746
  /**
6505
- * <p>Amazon Resource Name (ARN) of the IAM role that includes the permissions to scan and
6506
- * add tags to the associated protected resource.</p>
6747
+ * <p>The timestamp at which the statistics for this resource was last generated.</p>
6507
6748
  * @public
6508
6749
  */
6509
- Role?: string | undefined;
6750
+ LastGeneratedAt?: Date | undefined;
6510
6751
  /**
6511
- * <p>Information about the protected resource that is associated with the created
6512
- * Malware Protection plan. Presently, <code>S3Bucket</code> is the only supported
6513
- * protected resource.</p>
6752
+ * <p>ID associated with each resource. The following list provides the mapping of the resource type
6753
+ * and resource ID.</p>
6754
+ * <p class="title">
6755
+ * <b>Mapping of resource and resource ID</b>
6756
+ * </p>
6757
+ * <ul>
6758
+ * <li>
6759
+ * <p>AccessKey - <code>resource.accessKeyDetails.accessKeyId</code>
6760
+ * </p>
6761
+ * </li>
6762
+ * <li>
6763
+ * <p>Container - <code>resource.containerDetails.id</code>
6764
+ * </p>
6765
+ * </li>
6766
+ * <li>
6767
+ * <p>ECSCluster - <code>resource.ecsClusterDetails.name</code>
6768
+ * </p>
6769
+ * </li>
6770
+ * <li>
6771
+ * <p>EKSCluster - <code>resource.eksClusterDetails.name</code>
6772
+ * </p>
6773
+ * </li>
6774
+ * <li>
6775
+ * <p>Instance - <code>resource.instanceDetails.instanceId</code>
6776
+ * </p>
6777
+ * </li>
6778
+ * <li>
6779
+ * <p>KubernetesCluster - <code>resource.kubernetesDetails.kubernetesWorkloadDetails.name</code>
6780
+ * </p>
6781
+ * </li>
6782
+ * <li>
6783
+ * <p>Lambda - <code>resource.lambdaDetails.functionName</code>
6784
+ * </p>
6785
+ * </li>
6786
+ * <li>
6787
+ * <p>RDSDBInstance - <code>resource.rdsDbInstanceDetails.dbInstanceIdentifier</code>
6788
+ * </p>
6789
+ * </li>
6790
+ * <li>
6791
+ * <p>S3Bucket - <code>resource.s3BucketDetails.name</code>
6792
+ * </p>
6793
+ * </li>
6794
+ * <li>
6795
+ * <p>S3Object - <code>resource.s3BucketDetails.name</code>
6796
+ * </p>
6797
+ * </li>
6798
+ * </ul>
6514
6799
  * @public
6515
6800
  */
6516
- ProtectedResource?: CreateProtectedResource | undefined;
6801
+ ResourceId?: string | undefined;
6517
6802
  /**
6518
- * <p>Information about whether the tags will be added to the S3 object after scanning.</p>
6803
+ * <p>The type of resource.</p>
6519
6804
  * @public
6520
6805
  */
6521
- Actions?: MalwareProtectionPlanActions | undefined;
6806
+ ResourceType?: string | undefined;
6522
6807
  /**
6523
- * <p>The timestamp when the Malware Protection plan resource was created.</p>
6808
+ * <p>The total number of findings associated with this resource.</p>
6524
6809
  * @public
6525
6810
  */
6526
- CreatedAt?: Date | undefined;
6811
+ TotalFindings?: number | undefined;
6812
+ }
6813
+ /**
6814
+ * <p>Information about severity level for each finding type.</p>
6815
+ * @public
6816
+ */
6817
+ export interface SeverityStatistics {
6527
6818
  /**
6528
- * <p>Malware Protection plan status.</p>
6819
+ * <p>The timestamp at which a finding type for a specific severity was last generated.</p>
6529
6820
  * @public
6530
6821
  */
6531
- Status?: MalwareProtectionPlanStatus | undefined;
6822
+ LastGeneratedAt?: Date | undefined;
6532
6823
  /**
6533
- * <p>Information about the issue code and message associated to the status of
6534
- * your Malware Protection plan.</p>
6824
+ * <p>The severity level associated with each finding type.</p>
6535
6825
  * @public
6536
6826
  */
6537
- StatusReasons?: MalwareProtectionPlanStatusReason[] | undefined;
6827
+ Severity?: number | undefined;
6538
6828
  /**
6539
- * <p>Tags added to the Malware Protection plan resource.</p>
6829
+ * <p>The total number of findings associated with this severity.</p>
6540
6830
  * @public
6541
6831
  */
6542
- Tags?: Record<string, string> | undefined;
6832
+ TotalFindings?: number | undefined;
6543
6833
  }
6544
6834
  /**
6835
+ * <p>Contains information about finding statistics.</p>
6545
6836
  * @public
6546
6837
  */
6547
- export interface GetMalwareScanSettingsRequest {
6838
+ export interface FindingStatistics {
6548
6839
  /**
6549
- * <p>The unique ID of the detector that is associated with this scan.</p>
6550
- * <p>To find the <code>detectorId</code> in the current Region, see the
6551
- * Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
6840
+ * @deprecated
6841
+ *
6842
+ * <p>Represents a list of map of severity to count statistics for a set of findings.</p>
6552
6843
  * @public
6553
6844
  */
6554
- DetectorId: string | undefined;
6555
- }
6556
- /**
6557
- * @public
6558
- * @enum
6559
- */
6560
- export declare const ScanCriterionKey: {
6561
- readonly EC2_INSTANCE_TAG: "EC2_INSTANCE_TAG";
6562
- };
6563
- /**
6564
- * @public
6565
- */
6566
- export type ScanCriterionKey = (typeof ScanCriterionKey)[keyof typeof ScanCriterionKey];
6567
- /**
6568
- * <p>Represents the <code>key:value</code> pair to be matched against given resource property.</p>
6569
- * @public
6570
- */
6571
- export interface ScanConditionPair {
6845
+ CountBySeverity?: Record<string, number> | undefined;
6572
6846
  /**
6573
- * <p>Represents the <b>key</b> in the map condition.</p>
6847
+ * <p>Represents a list of map of accounts with a findings count associated with each account.</p>
6574
6848
  * @public
6575
6849
  */
6576
- Key: string | undefined;
6850
+ GroupedByAccount?: AccountStatistics[] | undefined;
6577
6851
  /**
6578
- * <p>Represents optional <b>value</b> in the map
6579
- * condition. If not specified, only the <b>key</b> will be
6580
- * matched.</p>
6852
+ * <p>Represents a list of map of dates with a count of total findings generated on each date per severity level.</p>
6581
6853
  * @public
6582
6854
  */
6583
- Value?: string | undefined;
6584
- }
6585
- /**
6586
- * <p>Contains information about the condition.</p>
6587
- * @public
6588
- */
6589
- export interface ScanCondition {
6855
+ GroupedByDate?: DateStatistics[] | undefined;
6590
6856
  /**
6591
- * <p>Represents an <i>mapEqual</i>
6592
- * <b></b> condition to be applied
6593
- * to a single field when triggering for malware scan.</p>
6857
+ * <p>Represents a list of map of finding types with a count of total findings generated for each type. </p>
6858
+ * <p>Based on the <code>orderBy</code>
6859
+ * parameter, this request returns either the most occurring finding types or the least occurring finding types. If the
6860
+ * <code>orderBy</code> parameter is <code>ASC</code>, this will represent the least occurring finding types in
6861
+ * your account; otherwise, this will represent the most occurring finding types. The default
6862
+ * value of <code>orderBy</code> is <code>DESC</code>.</p>
6594
6863
  * @public
6595
6864
  */
6596
- MapEquals: ScanConditionPair[] | undefined;
6597
- }
6598
- /**
6599
- * <p>Contains information about criteria used to filter resources before triggering malware
6600
- * scan.</p>
6601
- * @public
6602
- */
6603
- export interface ScanResourceCriteria {
6865
+ GroupedByFindingType?: FindingTypeStatistics[] | undefined;
6604
6866
  /**
6605
- * <p>Represents condition that when matched will allow a malware scan for a certain
6606
- * resource.</p>
6867
+ * <p>Represents a list of map of top resources with a count of total findings.</p>
6607
6868
  * @public
6608
6869
  */
6609
- Include?: Partial<Record<ScanCriterionKey, ScanCondition>> | undefined;
6870
+ GroupedByResource?: ResourceStatistics[] | undefined;
6610
6871
  /**
6611
- * <p>Represents condition that when matched will prevent a malware scan for a certain
6612
- * resource.</p>
6872
+ * <p>Represents a list of map of total findings for each severity level.</p>
6613
6873
  * @public
6614
6874
  */
6615
- Exclude?: Partial<Record<ScanCriterionKey, ScanCondition>> | undefined;
6875
+ GroupedBySeverity?: SeverityStatistics[] | undefined;
6616
6876
  }
6617
6877
  /**
6618
6878
  * @public
6879
+ * @enum
6619
6880
  */
6620
- export interface GetMalwareScanSettingsResponse {
6621
- /**
6622
- * <p>Represents the criteria to be used in the filter for scanning resources.</p>
6623
- * @public
6624
- */
6625
- ScanResourceCriteria?: ScanResourceCriteria | undefined;
6626
- /**
6627
- * <p>An enum value representing possible snapshot preservation settings.</p>
6628
- * @public
6629
- */
6630
- EbsSnapshotPreservation?: EbsSnapshotPreservation | undefined;
6631
- }
6881
+ export declare const FindingStatisticType: {
6882
+ readonly COUNT_BY_SEVERITY: "COUNT_BY_SEVERITY";
6883
+ };
6884
+ /**
6885
+ * @public
6886
+ */
6887
+ export type FindingStatisticType = (typeof FindingStatisticType)[keyof typeof FindingStatisticType];
6632
6888
  /**
6633
6889
  * @public
6634
6890
  */
6635
- export interface GetMasterAccountRequest {
6891
+ export interface GetAdministratorAccountRequest {
6636
6892
  /**
6637
6893
  * <p>The unique ID of the detector of the GuardDuty member account.</p>
6638
- * <p>To find the <code>detectorId</code> in the current Region, see the
6639
- * Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
6640
6894
  * @public
6641
6895
  */
6642
6896
  DetectorId: string | undefined;
6643
6897
  }
6644
6898
  /**
6645
- * <p>Contains information about the administrator account and invitation.</p>
6646
6899
  * @public
6647
6900
  */
6648
- export interface Master {
6901
+ export interface GetAdministratorAccountResponse {
6649
6902
  /**
6650
- * <p>The ID of the account used as the administrator account.</p>
6903
+ * <p>The administrator account details.</p>
6651
6904
  * @public
6652
6905
  */
6653
- AccountId?: string | undefined;
6906
+ Administrator: Administrator | undefined;
6907
+ }
6908
+ /**
6909
+ * @public
6910
+ */
6911
+ export interface GetCoverageStatisticsRequest {
6654
6912
  /**
6655
- * <p>The value used to validate the administrator account to the member account.</p>
6913
+ * <p>The unique ID of the GuardDuty detector.</p>
6914
+ * <p>To find the <code>detectorId</code> in the current Region, see the
6915
+ * Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
6656
6916
  * @public
6657
6917
  */
6658
- InvitationId?: string | undefined;
6918
+ DetectorId: string | undefined;
6659
6919
  /**
6660
- * <p>The status of the relationship between the administrator and member accounts.</p>
6920
+ * <p>Represents the criteria used to filter the coverage statistics.</p>
6661
6921
  * @public
6662
6922
  */
6663
- RelationshipStatus?: string | undefined;
6923
+ FilterCriteria?: CoverageFilterCriteria | undefined;
6664
6924
  /**
6665
- * <p>The timestamp when the invitation was sent.</p>
6925
+ * <p>Represents the statistics type used to aggregate the coverage details.</p>
6666
6926
  * @public
6667
6927
  */
6668
- InvitedAt?: string | undefined;
6928
+ StatisticsType: CoverageStatisticsType[] | undefined;
6669
6929
  }
6670
6930
  /**
6671
6931
  * @public
6672
6932
  */
6673
- export interface GetMasterAccountResponse {
6933
+ export interface GetCoverageStatisticsResponse {
6674
6934
  /**
6675
- * <p>The administrator account details.</p>
6935
+ * <p>Represents the count aggregated by the <code>statusCode</code> and
6936
+ * <code>resourceType</code>.</p>
6676
6937
  * @public
6677
6938
  */
6678
- Master: Master | undefined;
6939
+ CoverageStatistics?: CoverageStatistics | undefined;
6679
6940
  }
6680
6941
  /**
6681
6942
  * @public
6682
6943
  */
6683
- export interface GetMemberDetectorsRequest {
6944
+ export interface GetDetectorRequest {
6684
6945
  /**
6685
- * <p>The detector ID for the administrator account.</p>
6946
+ * <p>The unique ID of the detector that you want to get.</p>
6686
6947
  * <p>To find the <code>detectorId</code> in the current Region, see the
6687
6948
  * Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
6688
6949
  * @public
6689
6950
  */
6690
6951
  DetectorId: string | undefined;
6691
- /**
6692
- * <p>A list of member account IDs.</p>
6693
- * @public
6694
- */
6695
- AccountIds: string[] | undefined;
6696
- }
6697
- /**
6698
- * <p>Information about the additional configuration for the member account.</p>
6699
- * @public
6700
- */
6701
- export interface MemberAdditionalConfigurationResult {
6702
- /**
6703
- * <p>Indicates the name of the additional configuration that is set for the member
6704
- * account.</p>
6705
- * @public
6706
- */
6707
- Name?: OrgFeatureAdditionalConfiguration | undefined;
6708
- /**
6709
- * <p>Indicates the status of the additional configuration that is set for the member
6710
- * account.</p>
6711
- * @public
6712
- */
6713
- Status?: FeatureStatus | undefined;
6714
- /**
6715
- * <p>The timestamp at which the additional configuration was set for the member account. This
6716
- * is in UTC format.</p>
6717
- * @public
6718
- */
6719
- UpdatedAt?: Date | undefined;
6720
6952
  }
6721
6953
  /**
6722
- * <p>Contains information about the features for the member account.</p>
6723
6954
  * @public
6724
6955
  */
6725
- export interface MemberFeaturesConfigurationResult {
6956
+ export interface GetDetectorResponse {
6726
6957
  /**
6727
- * <p>Indicates the name of the feature that is enabled for the detector.</p>
6958
+ * <p>The timestamp of when the detector was created.</p>
6728
6959
  * @public
6729
6960
  */
6730
- Name?: OrgFeature | undefined;
6961
+ CreatedAt?: string | undefined;
6731
6962
  /**
6732
- * <p>Indicates the status of the feature that is enabled for the detector.</p>
6963
+ * <p>The publishing frequency of the finding.</p>
6733
6964
  * @public
6734
6965
  */
6735
- Status?: FeatureStatus | undefined;
6966
+ FindingPublishingFrequency?: FindingPublishingFrequency | undefined;
6736
6967
  /**
6737
- * <p>The timestamp at which the feature object was updated.</p>
6968
+ * <p>The GuardDuty service role.</p>
6738
6969
  * @public
6739
6970
  */
6740
- UpdatedAt?: Date | undefined;
6971
+ ServiceRole: string | undefined;
6741
6972
  /**
6742
- * <p>Indicates the additional configuration of the feature that is configured for the member
6743
- * account.</p>
6973
+ * <p>The detector status.</p>
6744
6974
  * @public
6745
6975
  */
6746
- AdditionalConfiguration?: MemberAdditionalConfigurationResult[] | undefined;
6747
- }
6748
- /**
6749
- * <p>Contains information on which data sources are enabled for a member account.</p>
6750
- * @public
6751
- */
6752
- export interface MemberDataSourceConfiguration {
6976
+ Status: DetectorStatus | undefined;
6753
6977
  /**
6754
- * <p>The account ID for the member account.</p>
6978
+ * <p>The last-updated timestamp for the detector.</p>
6755
6979
  * @public
6756
6980
  */
6757
- AccountId: string | undefined;
6981
+ UpdatedAt?: string | undefined;
6758
6982
  /**
6759
6983
  * @deprecated
6760
6984
  *
6761
- * <p>Contains information on the status of data sources for the account.</p>
6985
+ * <p>Describes which data sources are enabled for the detector.</p>
6762
6986
  * @public
6763
6987
  */
6764
6988
  DataSources?: DataSourceConfigurationsResult | undefined;
6765
6989
  /**
6766
- * <p>Contains information about the status of the features for the member account.</p>
6767
- * @public
6768
- */
6769
- Features?: MemberFeaturesConfigurationResult[] | undefined;
6770
- }
6771
- /**
6772
- * @public
6773
- */
6774
- export interface GetMemberDetectorsResponse {
6775
- /**
6776
- * <p>An object that describes which data sources are enabled for a member account.</p>
6990
+ * <p>The tags of the detector resource.</p>
6777
6991
  * @public
6778
6992
  */
6779
- MemberDataSourceConfigurations: MemberDataSourceConfiguration[] | undefined;
6993
+ Tags?: Record<string, string> | undefined;
6780
6994
  /**
6781
- * <p>A list of member account IDs that were unable to be processed along with an explanation
6782
- * for why they were not processed.</p>
6995
+ * <p>Describes the features that have been enabled for the detector.</p>
6783
6996
  * @public
6784
6997
  */
6785
- UnprocessedAccounts: UnprocessedAccount[] | undefined;
6998
+ Features?: DetectorFeatureConfigurationResult[] | undefined;
6786
6999
  }
6787
7000
  /**
6788
7001
  * @public
6789
7002
  */
6790
- export interface GetMembersRequest {
7003
+ export interface GetFilterRequest {
6791
7004
  /**
6792
- * <p>The unique ID of the detector of the GuardDuty account whose members you want to
6793
- * retrieve.</p>
7005
+ * <p>The unique ID of the detector that is associated with this filter.</p>
6794
7006
  * <p>To find the <code>detectorId</code> in the current Region, see the
6795
7007
  * Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
6796
7008
  * @public
6797
7009
  */
6798
7010
  DetectorId: string | undefined;
6799
7011
  /**
6800
- * <p>A list of account IDs of the GuardDuty member accounts that you want to describe.</p>
7012
+ * <p>The name of the filter you want to get.</p>
6801
7013
  * @public
6802
7014
  */
6803
- AccountIds: string[] | undefined;
7015
+ FilterName: string | undefined;
6804
7016
  }
6805
7017
  /**
6806
- * <p>Contains information about the member account. </p>
6807
7018
  * @public
6808
7019
  */
6809
- export interface Member {
6810
- /**
6811
- * <p>The ID of the member account.</p>
6812
- * @public
6813
- */
6814
- AccountId: string | undefined;
6815
- /**
6816
- * <p>The detector ID of the member account.</p>
6817
- * @public
6818
- */
6819
- DetectorId?: string | undefined;
7020
+ export interface GetFilterResponse {
6820
7021
  /**
6821
- * <p>The administrator account ID.</p>
7022
+ * <p>The name of the filter.</p>
6822
7023
  * @public
6823
7024
  */
6824
- MasterId: string | undefined;
7025
+ Name: string | undefined;
6825
7026
  /**
6826
- * <p>The email address of the member account.</p>
7027
+ * <p>The description of the filter.</p>
6827
7028
  * @public
6828
7029
  */
6829
- Email: string | undefined;
7030
+ Description?: string | undefined;
6830
7031
  /**
6831
- * <p>The status of the relationship between the member and the administrator.</p>
7032
+ * <p>Specifies the action that is to be applied to the findings that match the filter.</p>
6832
7033
  * @public
6833
7034
  */
6834
- RelationshipStatus: string | undefined;
7035
+ Action: FilterAction | undefined;
6835
7036
  /**
6836
- * <p>The timestamp when the invitation was sent.</p>
7037
+ * <p>Specifies the position of the filter in the list of current filters. Also specifies the
7038
+ * order in which this filter is applied to the findings.</p>
6837
7039
  * @public
6838
7040
  */
6839
- InvitedAt?: string | undefined;
7041
+ Rank?: number | undefined;
6840
7042
  /**
6841
- * <p>The last-updated timestamp of the member.</p>
7043
+ * <p>Represents the criteria to be used in the filter for querying findings.</p>
6842
7044
  * @public
6843
7045
  */
6844
- UpdatedAt: string | undefined;
7046
+ FindingCriteria: FindingCriteria | undefined;
6845
7047
  /**
6846
- * <p>The administrator account ID.</p>
7048
+ * <p>The tags of the filter resource.</p>
6847
7049
  * @public
6848
7050
  */
6849
- AdministratorId?: string | undefined;
7051
+ Tags?: Record<string, string> | undefined;
6850
7052
  }
6851
7053
  /**
6852
7054
  * @public
6853
7055
  */
6854
- export interface GetMembersResponse {
7056
+ export interface GetFindingsRequest {
6855
7057
  /**
6856
- * <p>A list of members.</p>
7058
+ * <p>The ID of the detector that specifies the GuardDuty service whose findings you want to
7059
+ * retrieve.</p>
7060
+ * <p>To find the <code>detectorId</code> in the current Region, see the
7061
+ * Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
6857
7062
  * @public
6858
7063
  */
6859
- Members: Member[] | undefined;
7064
+ DetectorId: string | undefined;
6860
7065
  /**
6861
- * <p>A list of objects that contain the unprocessed account and a result string that explains
6862
- * why it was unprocessed.</p>
7066
+ * <p>The IDs of the findings that you want to retrieve.</p>
6863
7067
  * @public
6864
7068
  */
6865
- UnprocessedAccounts: UnprocessedAccount[] | undefined;
7069
+ FindingIds: string[] | undefined;
7070
+ /**
7071
+ * <p>Represents the criteria used for sorting findings.</p>
7072
+ * @public
7073
+ */
7074
+ SortCriteria?: SortCriteria | undefined;
6866
7075
  }
6867
7076
  /**
6868
- * <p>Information about the coverage
6869
- * statistic for the additional
6870
- * configuration of the feature.</p>
6871
7077
  * @public
6872
7078
  */
6873
- export interface OrganizationFeatureStatisticsAdditionalConfiguration {
6874
- /**
6875
- * <p>Name of the additional configuration within a feature.</p>
6876
- * @public
6877
- */
6878
- Name?: OrgFeatureAdditionalConfiguration | undefined;
7079
+ export interface GetFindingsResponse {
6879
7080
  /**
6880
- * <p>Total number of accounts that have enabled the additional
6881
- * configuration.</p>
7081
+ * <p>A list of findings.</p>
6882
7082
  * @public
6883
7083
  */
6884
- EnabledAccountsCount?: number | undefined;
7084
+ Findings: Finding[] | undefined;
6885
7085
  }
6886
7086
  /**
6887
- * <p>Information about the number of accounts
6888
- * that have enabled a specific feature.</p>
7087
+ * @public
7088
+ * @enum
7089
+ */
7090
+ export declare const GroupByType: {
7091
+ readonly ACCOUNT: "ACCOUNT";
7092
+ readonly DATE: "DATE";
7093
+ readonly FINDING_TYPE: "FINDING_TYPE";
7094
+ readonly RESOURCE: "RESOURCE";
7095
+ readonly SEVERITY: "SEVERITY";
7096
+ };
7097
+ /**
7098
+ * @public
7099
+ */
7100
+ export type GroupByType = (typeof GroupByType)[keyof typeof GroupByType];
7101
+ /**
6889
7102
  * @public
6890
7103
  */
6891
- export interface OrganizationFeatureStatistics {
7104
+ export interface GetFindingsStatisticsRequest {
6892
7105
  /**
6893
- * <p>Name of the feature.</p>
7106
+ * <p>The ID of the detector whose findings statistics you
7107
+ * want to retrieve.</p>
7108
+ * <p>To find the <code>detectorId</code> in the current Region, see the
7109
+ * Settings page in the GuardDuty console, or run the <a href="https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html">ListDetectors</a> API.</p>
6894
7110
  * @public
6895
7111
  */
6896
- Name?: OrgFeature | undefined;
7112
+ DetectorId: string | undefined;
7113
+ /**
7114
+ * @deprecated
7115
+ *
7116
+ * <p>The types of finding statistics to retrieve.</p>
7117
+ * @public
7118
+ */
7119
+ FindingStatisticTypes?: FindingStatisticType[] | undefined;
6897
7120
  /**
6898
- * <p>Total number of accounts that have enabled a specific
6899
- * feature.</p>
7121
+ * <p>Represents the criteria that is used for querying findings.</p>
6900
7122
  * @public
6901
7123
  */
6902
- EnabledAccountsCount?: number | undefined;
7124
+ FindingCriteria?: FindingCriteria | undefined;
6903
7125
  /**
6904
- * <p>Name of the additional configuration.</p>
7126
+ * <p>Displays the findings statistics grouped by one of the listed valid values.</p>
6905
7127
  * @public
6906
7128
  */
6907
- AdditionalConfiguration?: OrganizationFeatureStatisticsAdditionalConfiguration[] | undefined;
6908
- }
6909
- /**
6910
- * <p>Information about the coverage statistics of the
6911
- * features for the entire
6912
- * Amazon Web Services organization.</p>
6913
- * <p>When you create a new Amazon Web Services organization, it might
6914
- * take up to 24 hours to
6915
- * generate the statistics summary for this organization.</p>
6916
- * @public
6917
- */
6918
- export interface OrganizationStatistics {
7129
+ GroupBy?: GroupByType | undefined;
6919
7130
  /**
6920
- * <p>Total number of accounts in your Amazon Web Services organization.</p>
7131
+ * <p>Displays the sorted findings in the requested order. The default
7132
+ * value of <code>orderBy</code> is <code>DESC</code>.</p>
7133
+ * <p>You can use this parameter only with the <code>groupBy</code> parameter.</p>
6921
7134
  * @public
6922
7135
  */
6923
- TotalAccountsCount?: number | undefined;
7136
+ OrderBy?: OrderBy | undefined;
6924
7137
  /**
6925
- * <p>Total number of accounts in your Amazon Web Services organization
6926
- * that are associated with GuardDuty.</p>
7138
+ * <p>The maximum number of results to be returned in the response. The default value is 25.</p>
7139
+ * <p>You can use this parameter only with the <code>groupBy</code> parameter.</p>
6927
7140
  * @public
6928
7141
  */
6929
- MemberAccountsCount?: number | undefined;
7142
+ MaxResults?: number | undefined;
7143
+ }
7144
+ /**
7145
+ * @public
7146
+ */
7147
+ export interface GetFindingsStatisticsResponse {
6930
7148
  /**
6931
- * <p>Total number of active accounts in your Amazon Web Services
6932
- * organization that are associated with GuardDuty.</p>
7149
+ * <p>The finding statistics object.</p>
6933
7150
  * @public
6934
7151
  */
6935
- ActiveAccountsCount?: number | undefined;
7152
+ FindingStatistics: FindingStatistics | undefined;
6936
7153
  /**
6937
- * <p>Total number of accounts that have enabled GuardDuty.</p>
7154
+ * <p>The pagination parameter to be used on the next list operation to retrieve more items.</p>
7155
+ * <p>This parameter is currently not supported.</p>
6938
7156
  * @public
6939
7157
  */
6940
- EnabledAccountsCount?: number | undefined;
7158
+ NextToken?: string | undefined;
7159
+ }
7160
+ /**
7161
+ * @public
7162
+ */
7163
+ export interface GetInvitationsCountRequest {
7164
+ }
7165
+ /**
7166
+ * @public
7167
+ */
7168
+ export interface GetInvitationsCountResponse {
6941
7169
  /**
6942
- * <p>Retrieves the coverage
6943
- * statistics for each feature.</p>
7170
+ * <p>The number of received invitations.</p>
6944
7171
  * @public
6945
7172
  */
6946
- CountByFeature?: OrganizationFeatureStatistics[] | undefined;
7173
+ InvitationsCount?: number | undefined;
6947
7174
  }
6948
7175
  /**
6949
7176
  * @internal
@@ -6996,32 +7223,44 @@ export declare const PrivateIpAddressDetailsFilterSensitiveLog: (obj: PrivateIpA
6996
7223
  /**
6997
7224
  * @internal
6998
7225
  */
6999
- export declare const NetworkInterfaceFilterSensitiveLog: (obj: NetworkInterface) => any;
7226
+ export declare const Ec2NetworkInterfaceFilterSensitiveLog: (obj: Ec2NetworkInterface) => any;
7000
7227
  /**
7001
7228
  * @internal
7002
7229
  */
7003
- export declare const InstanceDetailsFilterSensitiveLog: (obj: InstanceDetails) => any;
7230
+ export declare const ResourceDataFilterSensitiveLog: (obj: ResourceData) => any;
7004
7231
  /**
7005
7232
  * @internal
7006
7233
  */
7007
- export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
7234
+ export declare const ResourceV2FilterSensitiveLog: (obj: ResourceV2) => any;
7008
7235
  /**
7009
7236
  * @internal
7010
7237
  */
7011
- export declare const ServiceFilterSensitiveLog: (obj: Service) => any;
7238
+ export declare const SequenceFilterSensitiveLog: (obj: Sequence) => any;
7012
7239
  /**
7013
7240
  * @internal
7014
7241
  */
7015
- export declare const FindingFilterSensitiveLog: (obj: Finding) => any;
7242
+ export declare const DetectionFilterSensitiveLog: (obj: Detection) => any;
7016
7243
  /**
7017
7244
  * @internal
7018
7245
  */
7019
- export declare const GetFindingsResponseFilterSensitiveLog: (obj: GetFindingsResponse) => any;
7246
+ export declare const NetworkInterfaceFilterSensitiveLog: (obj: NetworkInterface) => any;
7247
+ /**
7248
+ * @internal
7249
+ */
7250
+ export declare const InstanceDetailsFilterSensitiveLog: (obj: InstanceDetails) => any;
7251
+ /**
7252
+ * @internal
7253
+ */
7254
+ export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
7255
+ /**
7256
+ * @internal
7257
+ */
7258
+ export declare const ServiceFilterSensitiveLog: (obj: Service) => any;
7020
7259
  /**
7021
7260
  * @internal
7022
7261
  */
7023
- export declare const MemberFilterSensitiveLog: (obj: Member) => any;
7262
+ export declare const FindingFilterSensitiveLog: (obj: Finding) => any;
7024
7263
  /**
7025
7264
  * @internal
7026
7265
  */
7027
- export declare const GetMembersResponseFilterSensitiveLog: (obj: GetMembersResponse) => any;
7266
+ export declare const GetFindingsResponseFilterSensitiveLog: (obj: GetFindingsResponse) => any;