@aws-sdk/client-guardduty 3.686.0 → 3.691.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.
@@ -9,8 +9,8 @@ export interface AcceptAdministratorInvitationResponse {}
9
9
  export declare class BadRequestException extends __BaseException {
10
10
  readonly name: "BadRequestException";
11
11
  readonly $fault: "client";
12
- Message?: string;
13
- Type?: string;
12
+ Message?: string | undefined;
13
+ Type?: string | undefined;
14
14
  constructor(
15
15
  opts: __ExceptionOptionType<BadRequestException, __BaseException>
16
16
  );
@@ -18,8 +18,8 @@ export declare class BadRequestException extends __BaseException {
18
18
  export declare class InternalServerErrorException extends __BaseException {
19
19
  readonly name: "InternalServerErrorException";
20
20
  readonly $fault: "server";
21
- Message?: string;
22
- Type?: string;
21
+ Message?: string | undefined;
22
+ Type?: string | undefined;
23
23
  constructor(
24
24
  opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
25
25
  );
@@ -31,44 +31,44 @@ export interface AcceptInvitationRequest {
31
31
  }
32
32
  export interface AcceptInvitationResponse {}
33
33
  export interface AccessControlList {
34
- AllowsPublicReadAccess?: boolean;
35
- AllowsPublicWriteAccess?: boolean;
34
+ AllowsPublicReadAccess?: boolean | undefined;
35
+ AllowsPublicWriteAccess?: boolean | undefined;
36
36
  }
37
37
  export declare class AccessDeniedException extends __BaseException {
38
38
  readonly name: "AccessDeniedException";
39
39
  readonly $fault: "client";
40
- Message?: string;
41
- Type?: string;
40
+ Message?: string | undefined;
41
+ Type?: string | undefined;
42
42
  constructor(
43
43
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
44
44
  );
45
45
  }
46
46
  export interface AccessKeyDetails {
47
- AccessKeyId?: string;
48
- PrincipalId?: string;
49
- UserName?: string;
50
- UserType?: string;
47
+ AccessKeyId?: string | undefined;
48
+ PrincipalId?: string | undefined;
49
+ UserName?: string | undefined;
50
+ UserType?: string | undefined;
51
51
  }
52
52
  export interface AccountDetail {
53
53
  AccountId: string | undefined;
54
54
  Email: string | undefined;
55
55
  }
56
56
  export interface DataSourceFreeTrial {
57
- FreeTrialDaysRemaining?: number;
57
+ FreeTrialDaysRemaining?: number | undefined;
58
58
  }
59
59
  export interface KubernetesDataSourceFreeTrial {
60
- AuditLogs?: DataSourceFreeTrial;
60
+ AuditLogs?: DataSourceFreeTrial | undefined;
61
61
  }
62
62
  export interface MalwareProtectionDataSourceFreeTrial {
63
- ScanEc2InstanceWithFindings?: DataSourceFreeTrial;
63
+ ScanEc2InstanceWithFindings?: DataSourceFreeTrial | undefined;
64
64
  }
65
65
  export interface DataSourcesFreeTrial {
66
- CloudTrail?: DataSourceFreeTrial;
67
- DnsLogs?: DataSourceFreeTrial;
68
- FlowLogs?: DataSourceFreeTrial;
69
- S3Logs?: DataSourceFreeTrial;
70
- Kubernetes?: KubernetesDataSourceFreeTrial;
71
- MalwareProtection?: MalwareProtectionDataSourceFreeTrial;
66
+ CloudTrail?: DataSourceFreeTrial | undefined;
67
+ DnsLogs?: DataSourceFreeTrial | undefined;
68
+ FlowLogs?: DataSourceFreeTrial | undefined;
69
+ S3Logs?: DataSourceFreeTrial | undefined;
70
+ Kubernetes?: KubernetesDataSourceFreeTrial | undefined;
71
+ MalwareProtection?: MalwareProtectionDataSourceFreeTrial | undefined;
72
72
  }
73
73
  export declare const FreeTrialFeatureResult: {
74
74
  readonly CLOUD_TRAIL: "CLOUD_TRAIL";
@@ -86,164 +86,166 @@ export declare const FreeTrialFeatureResult: {
86
86
  export type FreeTrialFeatureResult =
87
87
  (typeof FreeTrialFeatureResult)[keyof typeof FreeTrialFeatureResult];
88
88
  export interface FreeTrialFeatureConfigurationResult {
89
- Name?: FreeTrialFeatureResult;
90
- FreeTrialDaysRemaining?: number;
89
+ Name?: FreeTrialFeatureResult | undefined;
90
+ FreeTrialDaysRemaining?: number | undefined;
91
91
  }
92
92
  export interface AccountFreeTrialInfo {
93
- AccountId?: string;
94
- DataSources?: DataSourcesFreeTrial;
95
- Features?: FreeTrialFeatureConfigurationResult[];
93
+ AccountId?: string | undefined;
94
+ DataSources?: DataSourcesFreeTrial | undefined;
95
+ Features?: FreeTrialFeatureConfigurationResult[] | undefined;
96
96
  }
97
97
  export interface BlockPublicAccess {
98
- IgnorePublicAcls?: boolean;
99
- RestrictPublicBuckets?: boolean;
100
- BlockPublicAcls?: boolean;
101
- BlockPublicPolicy?: boolean;
98
+ IgnorePublicAcls?: boolean | undefined;
99
+ RestrictPublicBuckets?: boolean | undefined;
100
+ BlockPublicAcls?: boolean | undefined;
101
+ BlockPublicPolicy?: boolean | undefined;
102
102
  }
103
103
  export interface AccountLevelPermissions {
104
- BlockPublicAccess?: BlockPublicAccess;
104
+ BlockPublicAccess?: BlockPublicAccess | undefined;
105
105
  }
106
106
  export interface AccountStatistics {
107
- AccountId?: string;
108
- LastGeneratedAt?: Date;
109
- TotalFindings?: number;
107
+ AccountId?: string | undefined;
108
+ LastGeneratedAt?: Date | undefined;
109
+ TotalFindings?: number | undefined;
110
110
  }
111
111
  export interface DomainDetails {
112
- Domain?: string;
112
+ Domain?: string | undefined;
113
113
  }
114
114
  export interface RemoteAccountDetails {
115
- AccountId?: string;
116
- Affiliated?: boolean;
115
+ AccountId?: string | undefined;
116
+ Affiliated?: boolean | undefined;
117
117
  }
118
118
  export interface City {
119
- CityName?: string;
119
+ CityName?: string | undefined;
120
120
  }
121
121
  export interface Country {
122
- CountryCode?: string;
123
- CountryName?: string;
122
+ CountryCode?: string | undefined;
123
+ CountryName?: string | undefined;
124
124
  }
125
125
  export interface GeoLocation {
126
- Lat?: number;
127
- Lon?: number;
126
+ Lat?: number | undefined;
127
+ Lon?: number | undefined;
128
128
  }
129
129
  export interface Organization {
130
- Asn?: string;
131
- AsnOrg?: string;
132
- Isp?: string;
133
- Org?: string;
130
+ Asn?: string | undefined;
131
+ AsnOrg?: string | undefined;
132
+ Isp?: string | undefined;
133
+ Org?: string | undefined;
134
134
  }
135
135
  export interface RemoteIpDetails {
136
- City?: City;
137
- Country?: Country;
138
- GeoLocation?: GeoLocation;
139
- IpAddressV4?: string;
140
- IpAddressV6?: string;
141
- Organization?: Organization;
136
+ City?: City | undefined;
137
+ Country?: Country | undefined;
138
+ GeoLocation?: GeoLocation | undefined;
139
+ IpAddressV4?: string | undefined;
140
+ IpAddressV6?: string | undefined;
141
+ Organization?: Organization | undefined;
142
142
  }
143
143
  export interface AwsApiCallAction {
144
- Api?: string;
145
- CallerType?: string;
146
- DomainDetails?: DomainDetails;
147
- ErrorCode?: string;
148
- UserAgent?: string;
149
- RemoteIpDetails?: RemoteIpDetails;
150
- ServiceName?: string;
151
- RemoteAccountDetails?: RemoteAccountDetails;
152
- AffectedResources?: Record<string, string>;
144
+ Api?: string | undefined;
145
+ CallerType?: string | undefined;
146
+ DomainDetails?: DomainDetails | undefined;
147
+ ErrorCode?: string | undefined;
148
+ UserAgent?: string | undefined;
149
+ RemoteIpDetails?: RemoteIpDetails | undefined;
150
+ ServiceName?: string | undefined;
151
+ RemoteAccountDetails?: RemoteAccountDetails | undefined;
152
+ AffectedResources?: Record<string, string> | undefined;
153
153
  }
154
154
  export interface DnsRequestAction {
155
- Domain?: string;
156
- Protocol?: string;
157
- Blocked?: boolean;
158
- DomainWithSuffix?: string;
155
+ Domain?: string | undefined;
156
+ Protocol?: string | undefined;
157
+ Blocked?: boolean | undefined;
158
+ DomainWithSuffix?: string | undefined;
159
159
  }
160
160
  export interface KubernetesApiCallAction {
161
- RequestUri?: string;
162
- Verb?: string;
163
- SourceIps?: string[];
164
- UserAgent?: string;
165
- RemoteIpDetails?: RemoteIpDetails;
166
- StatusCode?: number;
167
- Parameters?: string;
168
- Resource?: string;
169
- Subresource?: string;
170
- Namespace?: string;
171
- ResourceName?: string;
161
+ RequestUri?: string | undefined;
162
+ Verb?: string | undefined;
163
+ SourceIps?: string[] | undefined;
164
+ UserAgent?: string | undefined;
165
+ RemoteIpDetails?: RemoteIpDetails | undefined;
166
+ StatusCode?: number | undefined;
167
+ Parameters?: string | undefined;
168
+ Resource?: string | undefined;
169
+ Subresource?: string | undefined;
170
+ Namespace?: string | undefined;
171
+ ResourceName?: string | undefined;
172
172
  }
173
173
  export interface KubernetesPermissionCheckedDetails {
174
- Verb?: string;
175
- Resource?: string;
176
- Namespace?: string;
177
- Allowed?: boolean;
174
+ Verb?: string | undefined;
175
+ Resource?: string | undefined;
176
+ Namespace?: string | undefined;
177
+ Allowed?: boolean | undefined;
178
178
  }
179
179
  export interface KubernetesRoleBindingDetails {
180
- Kind?: string;
181
- Name?: string;
182
- Uid?: string;
183
- RoleRefName?: string;
184
- RoleRefKind?: string;
180
+ Kind?: string | undefined;
181
+ Name?: string | undefined;
182
+ Uid?: string | undefined;
183
+ RoleRefName?: string | undefined;
184
+ RoleRefKind?: string | undefined;
185
185
  }
186
186
  export interface KubernetesRoleDetails {
187
- Kind?: string;
188
- Name?: string;
189
- Uid?: string;
187
+ Kind?: string | undefined;
188
+ Name?: string | undefined;
189
+ Uid?: string | undefined;
190
190
  }
191
191
  export interface LocalIpDetails {
192
- IpAddressV4?: string;
193
- IpAddressV6?: string;
192
+ IpAddressV4?: string | undefined;
193
+ IpAddressV6?: string | undefined;
194
194
  }
195
195
  export interface LocalPortDetails {
196
- Port?: number;
197
- PortName?: string;
196
+ Port?: number | undefined;
197
+ PortName?: string | undefined;
198
198
  }
199
199
  export interface RemotePortDetails {
200
- Port?: number;
201
- PortName?: string;
200
+ Port?: number | undefined;
201
+ PortName?: string | undefined;
202
202
  }
203
203
  export interface NetworkConnectionAction {
204
- Blocked?: boolean;
205
- ConnectionDirection?: string;
206
- LocalPortDetails?: LocalPortDetails;
207
- Protocol?: string;
208
- LocalIpDetails?: LocalIpDetails;
209
- LocalNetworkInterface?: string;
210
- RemoteIpDetails?: RemoteIpDetails;
211
- RemotePortDetails?: RemotePortDetails;
204
+ Blocked?: boolean | undefined;
205
+ ConnectionDirection?: string | undefined;
206
+ LocalPortDetails?: LocalPortDetails | undefined;
207
+ Protocol?: string | undefined;
208
+ LocalIpDetails?: LocalIpDetails | undefined;
209
+ LocalNetworkInterface?: string | undefined;
210
+ RemoteIpDetails?: RemoteIpDetails | undefined;
211
+ RemotePortDetails?: RemotePortDetails | undefined;
212
212
  }
213
213
  export interface PortProbeDetail {
214
- LocalPortDetails?: LocalPortDetails;
215
- LocalIpDetails?: LocalIpDetails;
216
- RemoteIpDetails?: RemoteIpDetails;
214
+ LocalPortDetails?: LocalPortDetails | undefined;
215
+ LocalIpDetails?: LocalIpDetails | undefined;
216
+ RemoteIpDetails?: RemoteIpDetails | undefined;
217
217
  }
218
218
  export interface PortProbeAction {
219
- Blocked?: boolean;
220
- PortProbeDetails?: PortProbeDetail[];
219
+ Blocked?: boolean | undefined;
220
+ PortProbeDetails?: PortProbeDetail[] | undefined;
221
221
  }
222
222
  export interface LoginAttribute {
223
- User?: string;
224
- Application?: string;
225
- FailedLoginAttempts?: number;
226
- SuccessfulLoginAttempts?: number;
223
+ User?: string | undefined;
224
+ Application?: string | undefined;
225
+ FailedLoginAttempts?: number | undefined;
226
+ SuccessfulLoginAttempts?: number | undefined;
227
227
  }
228
228
  export interface RdsLoginAttemptAction {
229
- RemoteIpDetails?: RemoteIpDetails;
230
- LoginAttributes?: LoginAttribute[];
229
+ RemoteIpDetails?: RemoteIpDetails | undefined;
230
+ LoginAttributes?: LoginAttribute[] | undefined;
231
231
  }
232
232
  export interface Action {
233
- ActionType?: string;
234
- AwsApiCallAction?: AwsApiCallAction;
235
- DnsRequestAction?: DnsRequestAction;
236
- NetworkConnectionAction?: NetworkConnectionAction;
237
- PortProbeAction?: PortProbeAction;
238
- KubernetesApiCallAction?: KubernetesApiCallAction;
239
- RdsLoginAttemptAction?: RdsLoginAttemptAction;
240
- KubernetesPermissionCheckedDetails?: KubernetesPermissionCheckedDetails;
241
- KubernetesRoleBindingDetails?: KubernetesRoleBindingDetails;
242
- KubernetesRoleDetails?: KubernetesRoleDetails;
233
+ ActionType?: string | undefined;
234
+ AwsApiCallAction?: AwsApiCallAction | undefined;
235
+ DnsRequestAction?: DnsRequestAction | undefined;
236
+ NetworkConnectionAction?: NetworkConnectionAction | undefined;
237
+ PortProbeAction?: PortProbeAction | undefined;
238
+ KubernetesApiCallAction?: KubernetesApiCallAction | undefined;
239
+ RdsLoginAttemptAction?: RdsLoginAttemptAction | undefined;
240
+ KubernetesPermissionCheckedDetails?:
241
+ | KubernetesPermissionCheckedDetails
242
+ | undefined;
243
+ KubernetesRoleBindingDetails?: KubernetesRoleBindingDetails | undefined;
244
+ KubernetesRoleDetails?: KubernetesRoleDetails | undefined;
243
245
  }
244
246
  export interface AddonDetails {
245
- AddonVersion?: string;
246
- AddonStatus?: string;
247
+ AddonVersion?: string | undefined;
248
+ AddonStatus?: string | undefined;
247
249
  }
248
250
  export declare const AdminStatus: {
249
251
  readonly DISABLE_IN_PROGRESS: "DISABLE_IN_PROGRESS";
@@ -251,20 +253,20 @@ export declare const AdminStatus: {
251
253
  };
252
254
  export type AdminStatus = (typeof AdminStatus)[keyof typeof AdminStatus];
253
255
  export interface AdminAccount {
254
- AdminAccountId?: string;
255
- AdminStatus?: AdminStatus;
256
+ AdminAccountId?: string | undefined;
257
+ AdminStatus?: AdminStatus | undefined;
256
258
  }
257
259
  export interface Administrator {
258
- AccountId?: string;
259
- InvitationId?: string;
260
- RelationshipStatus?: string;
261
- InvitedAt?: string;
260
+ AccountId?: string | undefined;
261
+ InvitationId?: string | undefined;
262
+ RelationshipStatus?: string | undefined;
263
+ InvitedAt?: string | undefined;
262
264
  }
263
265
  export interface AgentDetails {
264
- Version?: string;
266
+ Version?: string | undefined;
265
267
  }
266
268
  export interface Observations {
267
- Text?: string[];
269
+ Text?: string[] | undefined;
268
270
  }
269
271
  export declare const ProfileSubtype: {
270
272
  readonly FREQUENT: "FREQUENT";
@@ -279,16 +281,16 @@ export declare const ProfileType: {
279
281
  };
280
282
  export type ProfileType = (typeof ProfileType)[keyof typeof ProfileType];
281
283
  export interface AnomalyObject {
282
- ProfileType?: ProfileType;
283
- ProfileSubtype?: ProfileSubtype;
284
- Observations?: Observations;
284
+ ProfileType?: ProfileType | undefined;
285
+ ProfileSubtype?: ProfileSubtype | undefined;
286
+ Observations?: Observations | undefined;
285
287
  }
286
288
  export interface AnomalyUnusual {
287
- Behavior?: Record<string, Record<string, AnomalyObject>>;
289
+ Behavior?: Record<string, Record<string, AnomalyObject>> | undefined;
288
290
  }
289
291
  export interface Anomaly {
290
- Profiles?: Record<string, Record<string, AnomalyObject[]>>;
291
- Unusual?: AnomalyUnusual;
292
+ Profiles?: Record<string, Record<string, AnomalyObject[]>> | undefined;
293
+ Unusual?: AnomalyUnusual | undefined;
292
294
  }
293
295
  export interface ArchiveFindingsRequest {
294
296
  DetectorId: string | undefined;
@@ -303,13 +305,13 @@ export declare const AutoEnableMembers: {
303
305
  export type AutoEnableMembers =
304
306
  (typeof AutoEnableMembers)[keyof typeof AutoEnableMembers];
305
307
  export interface BucketPolicy {
306
- AllowsPublicReadAccess?: boolean;
307
- AllowsPublicWriteAccess?: boolean;
308
+ AllowsPublicReadAccess?: boolean | undefined;
309
+ AllowsPublicWriteAccess?: boolean | undefined;
308
310
  }
309
311
  export interface BucketLevelPermissions {
310
- AccessControlList?: AccessControlList;
311
- BucketPolicy?: BucketPolicy;
312
- BlockPublicAccess?: BlockPublicAccess;
312
+ AccessControlList?: AccessControlList | undefined;
313
+ BucketPolicy?: BucketPolicy | undefined;
314
+ BlockPublicAccess?: BlockPublicAccess | undefined;
313
315
  }
314
316
  export declare const DataSourceStatus: {
315
317
  readonly DISABLED: "DISABLED";
@@ -321,46 +323,46 @@ export interface CloudTrailConfigurationResult {
321
323
  Status: DataSourceStatus | undefined;
322
324
  }
323
325
  export interface Condition {
324
- Eq?: string[];
325
- Neq?: string[];
326
- Gt?: number;
327
- Gte?: number;
328
- Lt?: number;
329
- Lte?: number;
330
- Equals?: string[];
331
- NotEquals?: string[];
332
- GreaterThan?: number;
333
- GreaterThanOrEqual?: number;
334
- LessThan?: number;
335
- LessThanOrEqual?: number;
326
+ Eq?: string[] | undefined;
327
+ Neq?: string[] | undefined;
328
+ Gt?: number | undefined;
329
+ Gte?: number | undefined;
330
+ Lt?: number | undefined;
331
+ Lte?: number | undefined;
332
+ Equals?: string[] | undefined;
333
+ NotEquals?: string[] | undefined;
334
+ GreaterThan?: number | undefined;
335
+ GreaterThanOrEqual?: number | undefined;
336
+ LessThan?: number | undefined;
337
+ LessThanOrEqual?: number | undefined;
336
338
  }
337
339
  export declare class ConflictException extends __BaseException {
338
340
  readonly name: "ConflictException";
339
341
  readonly $fault: "client";
340
- Message?: string;
341
- Type?: string;
342
+ Message?: string | undefined;
343
+ Type?: string | undefined;
342
344
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
343
345
  }
344
346
  export interface SecurityContext {
345
- Privileged?: boolean;
346
- AllowPrivilegeEscalation?: boolean;
347
+ Privileged?: boolean | undefined;
348
+ AllowPrivilegeEscalation?: boolean | undefined;
347
349
  }
348
350
  export interface VolumeMount {
349
- Name?: string;
350
- MountPath?: string;
351
+ Name?: string | undefined;
352
+ MountPath?: string | undefined;
351
353
  }
352
354
  export interface Container {
353
- ContainerRuntime?: string;
354
- Id?: string;
355
- Name?: string;
356
- Image?: string;
357
- ImagePrefix?: string;
358
- VolumeMounts?: VolumeMount[];
359
- SecurityContext?: SecurityContext;
355
+ ContainerRuntime?: string | undefined;
356
+ Id?: string | undefined;
357
+ Name?: string | undefined;
358
+ Image?: string | undefined;
359
+ ImagePrefix?: string | undefined;
360
+ VolumeMounts?: VolumeMount[] | undefined;
361
+ SecurityContext?: SecurityContext | undefined;
360
362
  }
361
363
  export interface ContainerInstanceDetails {
362
- CoveredContainerInstances?: number;
363
- CompatibleContainerInstances?: number;
364
+ CoveredContainerInstances?: number | undefined;
365
+ CompatibleContainerInstances?: number | undefined;
364
366
  }
365
367
  export declare const CoverageStatus: {
366
368
  readonly HEALTHY: "HEALTHY";
@@ -382,31 +384,31 @@ export declare const ManagementType: {
382
384
  export type ManagementType =
383
385
  (typeof ManagementType)[keyof typeof ManagementType];
384
386
  export interface CoverageEc2InstanceDetails {
385
- InstanceId?: string;
386
- InstanceType?: string;
387
- ClusterArn?: string;
388
- AgentDetails?: AgentDetails;
389
- ManagementType?: ManagementType;
387
+ InstanceId?: string | undefined;
388
+ InstanceType?: string | undefined;
389
+ ClusterArn?: string | undefined;
390
+ AgentDetails?: AgentDetails | undefined;
391
+ ManagementType?: ManagementType | undefined;
390
392
  }
391
393
  export interface FargateDetails {
392
- Issues?: string[];
393
- ManagementType?: ManagementType;
394
+ Issues?: string[] | undefined;
395
+ ManagementType?: ManagementType | undefined;
394
396
  }
395
397
  export interface CoverageEcsClusterDetails {
396
- ClusterName?: string;
397
- FargateDetails?: FargateDetails;
398
- ContainerInstanceDetails?: ContainerInstanceDetails;
398
+ ClusterName?: string | undefined;
399
+ FargateDetails?: FargateDetails | undefined;
400
+ ContainerInstanceDetails?: ContainerInstanceDetails | undefined;
399
401
  }
400
402
  export interface CoverageEksClusterDetails {
401
- ClusterName?: string;
402
- CoveredNodes?: number;
403
- CompatibleNodes?: number;
404
- AddonDetails?: AddonDetails;
405
- ManagementType?: ManagementType;
403
+ ClusterName?: string | undefined;
404
+ CoveredNodes?: number | undefined;
405
+ CompatibleNodes?: number | undefined;
406
+ AddonDetails?: AddonDetails | undefined;
407
+ ManagementType?: ManagementType | undefined;
406
408
  }
407
409
  export interface CoverageFilterCondition {
408
- Equals?: string[];
409
- NotEquals?: string[];
410
+ Equals?: string[] | undefined;
411
+ NotEquals?: string[] | undefined;
410
412
  }
411
413
  export declare const CoverageFilterCriterionKey: {
412
414
  readonly ACCOUNT_ID: "ACCOUNT_ID";
@@ -424,26 +426,26 @@ export declare const CoverageFilterCriterionKey: {
424
426
  export type CoverageFilterCriterionKey =
425
427
  (typeof CoverageFilterCriterionKey)[keyof typeof CoverageFilterCriterionKey];
426
428
  export interface CoverageFilterCriterion {
427
- CriterionKey?: CoverageFilterCriterionKey;
428
- FilterCondition?: CoverageFilterCondition;
429
+ CriterionKey?: CoverageFilterCriterionKey | undefined;
430
+ FilterCondition?: CoverageFilterCondition | undefined;
429
431
  }
430
432
  export interface CoverageFilterCriteria {
431
- FilterCriterion?: CoverageFilterCriterion[];
433
+ FilterCriterion?: CoverageFilterCriterion[] | undefined;
432
434
  }
433
435
  export interface CoverageResourceDetails {
434
- EksClusterDetails?: CoverageEksClusterDetails;
435
- ResourceType?: ResourceType;
436
- EcsClusterDetails?: CoverageEcsClusterDetails;
437
- Ec2InstanceDetails?: CoverageEc2InstanceDetails;
436
+ EksClusterDetails?: CoverageEksClusterDetails | undefined;
437
+ ResourceType?: ResourceType | undefined;
438
+ EcsClusterDetails?: CoverageEcsClusterDetails | undefined;
439
+ Ec2InstanceDetails?: CoverageEc2InstanceDetails | undefined;
438
440
  }
439
441
  export interface CoverageResource {
440
- ResourceId?: string;
441
- DetectorId?: string;
442
- AccountId?: string;
443
- ResourceDetails?: CoverageResourceDetails;
444
- CoverageStatus?: CoverageStatus;
445
- Issue?: string;
446
- UpdatedAt?: Date;
442
+ ResourceId?: string | undefined;
443
+ DetectorId?: string | undefined;
444
+ AccountId?: string | undefined;
445
+ ResourceDetails?: CoverageResourceDetails | undefined;
446
+ CoverageStatus?: CoverageStatus | undefined;
447
+ Issue?: string | undefined;
448
+ UpdatedAt?: Date | undefined;
447
449
  }
448
450
  export declare const CoverageSortKey: {
449
451
  readonly ACCOUNT_ID: "ACCOUNT_ID";
@@ -464,12 +466,12 @@ export declare const OrderBy: {
464
466
  };
465
467
  export type OrderBy = (typeof OrderBy)[keyof typeof OrderBy];
466
468
  export interface CoverageSortCriteria {
467
- AttributeName?: CoverageSortKey;
468
- OrderBy?: OrderBy;
469
+ AttributeName?: CoverageSortKey | undefined;
470
+ OrderBy?: OrderBy | undefined;
469
471
  }
470
472
  export interface CoverageStatistics {
471
- CountByResourceType?: Partial<Record<ResourceType, number>>;
472
- CountByCoverageStatus?: Partial<Record<CoverageStatus, number>>;
473
+ CountByResourceType?: Partial<Record<ResourceType, number>> | undefined;
474
+ CountByCoverageStatus?: Partial<Record<CoverageStatus, number>> | undefined;
473
475
  }
474
476
  export declare const CoverageStatisticsType: {
475
477
  readonly COUNT_BY_COVERAGE_STATUS: "COUNT_BY_COVERAGE_STATUS";
@@ -484,18 +486,18 @@ export interface KubernetesConfiguration {
484
486
  AuditLogs: KubernetesAuditLogsConfiguration | undefined;
485
487
  }
486
488
  export interface ScanEc2InstanceWithFindings {
487
- EbsVolumes?: boolean;
489
+ EbsVolumes?: boolean | undefined;
488
490
  }
489
491
  export interface MalwareProtectionConfiguration {
490
- ScanEc2InstanceWithFindings?: ScanEc2InstanceWithFindings;
492
+ ScanEc2InstanceWithFindings?: ScanEc2InstanceWithFindings | undefined;
491
493
  }
492
494
  export interface S3LogsConfiguration {
493
495
  Enable: boolean | undefined;
494
496
  }
495
497
  export interface DataSourceConfigurations {
496
- S3Logs?: S3LogsConfiguration;
497
- Kubernetes?: KubernetesConfiguration;
498
- MalwareProtection?: MalwareProtectionConfiguration;
498
+ S3Logs?: S3LogsConfiguration | undefined;
499
+ Kubernetes?: KubernetesConfiguration | undefined;
500
+ MalwareProtection?: MalwareProtectionConfiguration | undefined;
499
501
  }
500
502
  export declare const FeatureAdditionalConfiguration: {
501
503
  readonly EC2_AGENT_MANAGEMENT: "EC2_AGENT_MANAGEMENT";
@@ -510,8 +512,8 @@ export declare const FeatureStatus: {
510
512
  };
511
513
  export type FeatureStatus = (typeof FeatureStatus)[keyof typeof FeatureStatus];
512
514
  export interface DetectorAdditionalConfiguration {
513
- Name?: FeatureAdditionalConfiguration;
514
- Status?: FeatureStatus;
515
+ Name?: FeatureAdditionalConfiguration | undefined;
516
+ Status?: FeatureStatus | undefined;
515
517
  }
516
518
  export declare const DetectorFeature: {
517
519
  readonly EBS_MALWARE_PROTECTION: "EBS_MALWARE_PROTECTION";
@@ -525,9 +527,9 @@ export declare const DetectorFeature: {
525
527
  export type DetectorFeature =
526
528
  (typeof DetectorFeature)[keyof typeof DetectorFeature];
527
529
  export interface DetectorFeatureConfiguration {
528
- Name?: DetectorFeature;
529
- Status?: FeatureStatus;
530
- AdditionalConfiguration?: DetectorAdditionalConfiguration[];
530
+ Name?: DetectorFeature | undefined;
531
+ Status?: FeatureStatus | undefined;
532
+ AdditionalConfiguration?: DetectorAdditionalConfiguration[] | undefined;
531
533
  }
532
534
  export declare const FindingPublishingFrequency: {
533
535
  readonly FIFTEEN_MINUTES: "FIFTEEN_MINUTES";
@@ -538,29 +540,29 @@ export type FindingPublishingFrequency =
538
540
  (typeof FindingPublishingFrequency)[keyof typeof FindingPublishingFrequency];
539
541
  export interface CreateDetectorRequest {
540
542
  Enable: boolean | undefined;
541
- ClientToken?: string;
542
- FindingPublishingFrequency?: FindingPublishingFrequency;
543
- DataSources?: DataSourceConfigurations;
544
- Tags?: Record<string, string>;
545
- Features?: DetectorFeatureConfiguration[];
543
+ ClientToken?: string | undefined;
544
+ FindingPublishingFrequency?: FindingPublishingFrequency | undefined;
545
+ DataSources?: DataSourceConfigurations | undefined;
546
+ Tags?: Record<string, string> | undefined;
547
+ Features?: DetectorFeatureConfiguration[] | undefined;
546
548
  }
547
549
  export interface EbsVolumesResult {
548
- Status?: DataSourceStatus;
549
- Reason?: string;
550
+ Status?: DataSourceStatus | undefined;
551
+ Reason?: string | undefined;
550
552
  }
551
553
  export interface ScanEc2InstanceWithFindingsResult {
552
- EbsVolumes?: EbsVolumesResult;
554
+ EbsVolumes?: EbsVolumesResult | undefined;
553
555
  }
554
556
  export interface MalwareProtectionConfigurationResult {
555
- ScanEc2InstanceWithFindings?: ScanEc2InstanceWithFindingsResult;
556
- ServiceRole?: string;
557
+ ScanEc2InstanceWithFindings?: ScanEc2InstanceWithFindingsResult | undefined;
558
+ ServiceRole?: string | undefined;
557
559
  }
558
560
  export interface UnprocessedDataSourcesResult {
559
- MalwareProtection?: MalwareProtectionConfigurationResult;
561
+ MalwareProtection?: MalwareProtectionConfigurationResult | undefined;
560
562
  }
561
563
  export interface CreateDetectorResponse {
562
- DetectorId?: string;
563
- UnprocessedDataSources?: UnprocessedDataSourcesResult;
564
+ DetectorId?: string | undefined;
565
+ UnprocessedDataSources?: UnprocessedDataSourcesResult | undefined;
564
566
  }
565
567
  export declare const FilterAction: {
566
568
  readonly ARCHIVE: "ARCHIVE";
@@ -568,17 +570,17 @@ export declare const FilterAction: {
568
570
  };
569
571
  export type FilterAction = (typeof FilterAction)[keyof typeof FilterAction];
570
572
  export interface FindingCriteria {
571
- Criterion?: Record<string, Condition>;
573
+ Criterion?: Record<string, Condition> | undefined;
572
574
  }
573
575
  export interface CreateFilterRequest {
574
576
  DetectorId: string | undefined;
575
577
  Name: string | undefined;
576
- Description?: string;
577
- Action?: FilterAction;
578
- Rank?: number;
578
+ Description?: string | undefined;
579
+ Action?: FilterAction | undefined;
580
+ Rank?: number | undefined;
579
581
  FindingCriteria: FindingCriteria | undefined;
580
- ClientToken?: string;
581
- Tags?: Record<string, string>;
582
+ ClientToken?: string | undefined;
583
+ Tags?: Record<string, string> | undefined;
582
584
  }
583
585
  export interface CreateFilterResponse {
584
586
  Name: string | undefined;
@@ -598,8 +600,8 @@ export interface CreateIPSetRequest {
598
600
  Format: IpSetFormat | undefined;
599
601
  Location: string | undefined;
600
602
  Activate: boolean | undefined;
601
- ClientToken?: string;
602
- Tags?: Record<string, string>;
603
+ ClientToken?: string | undefined;
604
+ Tags?: Record<string, string> | undefined;
603
605
  }
604
606
  export interface CreateIPSetResponse {
605
607
  IpSetId: string | undefined;
@@ -611,27 +613,27 @@ export declare const MalwareProtectionPlanTaggingActionStatus: {
611
613
  export type MalwareProtectionPlanTaggingActionStatus =
612
614
  (typeof MalwareProtectionPlanTaggingActionStatus)[keyof typeof MalwareProtectionPlanTaggingActionStatus];
613
615
  export interface MalwareProtectionPlanTaggingAction {
614
- Status?: MalwareProtectionPlanTaggingActionStatus;
616
+ Status?: MalwareProtectionPlanTaggingActionStatus | undefined;
615
617
  }
616
618
  export interface MalwareProtectionPlanActions {
617
- Tagging?: MalwareProtectionPlanTaggingAction;
619
+ Tagging?: MalwareProtectionPlanTaggingAction | undefined;
618
620
  }
619
621
  export interface CreateS3BucketResource {
620
- BucketName?: string;
621
- ObjectPrefixes?: string[];
622
+ BucketName?: string | undefined;
623
+ ObjectPrefixes?: string[] | undefined;
622
624
  }
623
625
  export interface CreateProtectedResource {
624
- S3Bucket?: CreateS3BucketResource;
626
+ S3Bucket?: CreateS3BucketResource | undefined;
625
627
  }
626
628
  export interface CreateMalwareProtectionPlanRequest {
627
- ClientToken?: string;
629
+ ClientToken?: string | undefined;
628
630
  Role: string | undefined;
629
631
  ProtectedResource: CreateProtectedResource | undefined;
630
- Actions?: MalwareProtectionPlanActions;
631
- Tags?: Record<string, string>;
632
+ Actions?: MalwareProtectionPlanActions | undefined;
633
+ Tags?: Record<string, string> | undefined;
632
634
  }
633
635
  export interface CreateMalwareProtectionPlanResponse {
634
- MalwareProtectionPlanId?: string;
636
+ MalwareProtectionPlanId?: string | undefined;
635
637
  }
636
638
  export interface CreateMembersRequest {
637
639
  DetectorId: string | undefined;
@@ -645,8 +647,8 @@ export interface CreateMembersResponse {
645
647
  UnprocessedAccounts: UnprocessedAccount[] | undefined;
646
648
  }
647
649
  export interface DestinationProperties {
648
- DestinationArn?: string;
649
- KmsKeyArn?: string;
650
+ DestinationArn?: string | undefined;
651
+ KmsKeyArn?: string | undefined;
650
652
  }
651
653
  export declare const DestinationType: {
652
654
  readonly S3: "S3";
@@ -657,14 +659,14 @@ export interface CreatePublishingDestinationRequest {
657
659
  DetectorId: string | undefined;
658
660
  DestinationType: DestinationType | undefined;
659
661
  DestinationProperties: DestinationProperties | undefined;
660
- ClientToken?: string;
662
+ ClientToken?: string | undefined;
661
663
  }
662
664
  export interface CreatePublishingDestinationResponse {
663
665
  DestinationId: string | undefined;
664
666
  }
665
667
  export interface CreateSampleFindingsRequest {
666
668
  DetectorId: string | undefined;
667
- FindingTypes?: string[];
669
+ FindingTypes?: string[] | undefined;
668
670
  }
669
671
  export interface CreateSampleFindingsResponse {}
670
672
  export declare const ThreatIntelSetFormat: {
@@ -683,8 +685,8 @@ export interface CreateThreatIntelSetRequest {
683
685
  Format: ThreatIntelSetFormat | undefined;
684
686
  Location: string | undefined;
685
687
  Activate: boolean | undefined;
686
- ClientToken?: string;
687
- Tags?: Record<string, string>;
688
+ ClientToken?: string | undefined;
689
+ Tags?: Record<string, string> | undefined;
688
690
  }
689
691
  export interface CreateThreatIntelSetResponse {
690
692
  ThreatIntelSetId: string | undefined;
@@ -728,14 +730,14 @@ export interface DataSourceConfigurationsResult {
728
730
  DNSLogs: DNSLogsConfigurationResult | undefined;
729
731
  FlowLogs: FlowLogsConfigurationResult | undefined;
730
732
  S3Logs: S3LogsConfigurationResult | undefined;
731
- Kubernetes?: KubernetesConfigurationResult;
732
- MalwareProtection?: MalwareProtectionConfigurationResult;
733
+ Kubernetes?: KubernetesConfigurationResult | undefined;
734
+ MalwareProtection?: MalwareProtectionConfigurationResult | undefined;
733
735
  }
734
736
  export interface DateStatistics {
735
- Date?: Date;
736
- LastGeneratedAt?: Date;
737
- Severity?: number;
738
- TotalFindings?: number;
737
+ Date?: Date | undefined;
738
+ LastGeneratedAt?: Date | undefined;
739
+ Severity?: number | undefined;
740
+ TotalFindings?: number | undefined;
739
741
  }
740
742
  export interface DeclineInvitationsRequest {
741
743
  AccountIds: string[] | undefined;
@@ -744,8 +746,8 @@ export interface DeclineInvitationsResponse {
744
746
  UnprocessedAccounts: UnprocessedAccount[] | undefined;
745
747
  }
746
748
  export interface DefaultServerSideEncryption {
747
- EncryptionType?: string;
748
- KmsMasterKeyArn?: string;
749
+ EncryptionType?: string | undefined;
750
+ KmsMasterKeyArn?: string | undefined;
749
751
  }
750
752
  export interface DeleteDetectorRequest {
751
753
  DetectorId: string | undefined;
@@ -773,8 +775,8 @@ export interface DeleteMalwareProtectionPlanRequest {
773
775
  export declare class ResourceNotFoundException extends __BaseException {
774
776
  readonly name: "ResourceNotFoundException";
775
777
  readonly $fault: "client";
776
- Message?: string;
777
- Type?: string;
778
+ Message?: string | undefined;
779
+ Type?: string | undefined;
778
780
  constructor(
779
781
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
780
782
  );
@@ -797,39 +799,39 @@ export interface DeleteThreatIntelSetRequest {
797
799
  }
798
800
  export interface DeleteThreatIntelSetResponse {}
799
801
  export interface FilterCondition {
800
- EqualsValue?: string;
801
- GreaterThan?: number;
802
- LessThan?: number;
802
+ EqualsValue?: string | undefined;
803
+ GreaterThan?: number | undefined;
804
+ LessThan?: number | undefined;
803
805
  }
804
806
  export interface FilterCriterion {
805
- CriterionKey?: CriterionKey;
806
- FilterCondition?: FilterCondition;
807
+ CriterionKey?: CriterionKey | undefined;
808
+ FilterCondition?: FilterCondition | undefined;
807
809
  }
808
810
  export interface FilterCriteria {
809
- FilterCriterion?: FilterCriterion[];
811
+ FilterCriterion?: FilterCriterion[] | undefined;
810
812
  }
811
813
  export interface SortCriteria {
812
- AttributeName?: string;
813
- OrderBy?: OrderBy;
814
+ AttributeName?: string | undefined;
815
+ OrderBy?: OrderBy | undefined;
814
816
  }
815
817
  export interface DescribeMalwareScansRequest {
816
818
  DetectorId: string | undefined;
817
- NextToken?: string;
818
- MaxResults?: number;
819
- FilterCriteria?: FilterCriteria;
820
- SortCriteria?: SortCriteria;
819
+ NextToken?: string | undefined;
820
+ MaxResults?: number | undefined;
821
+ FilterCriteria?: FilterCriteria | undefined;
822
+ SortCriteria?: SortCriteria | undefined;
821
823
  }
822
824
  export interface VolumeDetail {
823
- VolumeArn?: string;
824
- VolumeType?: string;
825
- DeviceName?: string;
826
- VolumeSizeInGB?: number;
827
- EncryptionType?: string;
828
- SnapshotArn?: string;
829
- KmsKeyArn?: string;
825
+ VolumeArn?: string | undefined;
826
+ VolumeType?: string | undefined;
827
+ DeviceName?: string | undefined;
828
+ VolumeSizeInGB?: number | undefined;
829
+ EncryptionType?: string | undefined;
830
+ SnapshotArn?: string | undefined;
831
+ KmsKeyArn?: string | undefined;
830
832
  }
831
833
  export interface ResourceDetails {
832
- InstanceArn?: string;
834
+ InstanceArn?: string | undefined;
833
835
  }
834
836
  export declare const ScanResult: {
835
837
  readonly CLEAN: "CLEAN";
@@ -837,7 +839,7 @@ export declare const ScanResult: {
837
839
  };
838
840
  export type ScanResult = (typeof ScanResult)[keyof typeof ScanResult];
839
841
  export interface ScanResultDetails {
840
- ScanResult?: ScanResult;
842
+ ScanResult?: ScanResult | undefined;
841
843
  }
842
844
  export declare const ScanStatus: {
843
845
  readonly COMPLETED: "COMPLETED";
@@ -852,34 +854,34 @@ export declare const ScanType: {
852
854
  };
853
855
  export type ScanType = (typeof ScanType)[keyof typeof ScanType];
854
856
  export interface TriggerDetails {
855
- GuardDutyFindingId?: string;
856
- Description?: string;
857
+ GuardDutyFindingId?: string | undefined;
858
+ Description?: string | undefined;
857
859
  }
858
860
  export interface Scan {
859
- DetectorId?: string;
860
- AdminDetectorId?: string;
861
- ScanId?: string;
862
- ScanStatus?: ScanStatus;
863
- FailureReason?: string;
864
- ScanStartTime?: Date;
865
- ScanEndTime?: Date;
866
- TriggerDetails?: TriggerDetails;
867
- ResourceDetails?: ResourceDetails;
868
- ScanResultDetails?: ScanResultDetails;
869
- AccountId?: string;
870
- TotalBytes?: number;
871
- FileCount?: number;
872
- AttachedVolumes?: VolumeDetail[];
873
- ScanType?: ScanType;
861
+ DetectorId?: string | undefined;
862
+ AdminDetectorId?: string | undefined;
863
+ ScanId?: string | undefined;
864
+ ScanStatus?: ScanStatus | undefined;
865
+ FailureReason?: string | undefined;
866
+ ScanStartTime?: Date | undefined;
867
+ ScanEndTime?: Date | undefined;
868
+ TriggerDetails?: TriggerDetails | undefined;
869
+ ResourceDetails?: ResourceDetails | undefined;
870
+ ScanResultDetails?: ScanResultDetails | undefined;
871
+ AccountId?: string | undefined;
872
+ TotalBytes?: number | undefined;
873
+ FileCount?: number | undefined;
874
+ AttachedVolumes?: VolumeDetail[] | undefined;
875
+ ScanType?: ScanType | undefined;
874
876
  }
875
877
  export interface DescribeMalwareScansResponse {
876
878
  Scans: Scan[] | undefined;
877
- NextToken?: string;
879
+ NextToken?: string | undefined;
878
880
  }
879
881
  export interface DescribeOrganizationConfigurationRequest {
880
882
  DetectorId: string | undefined;
881
- MaxResults?: number;
882
- NextToken?: string;
883
+ MaxResults?: number | undefined;
884
+ NextToken?: string | undefined;
883
885
  }
884
886
  export interface OrganizationKubernetesAuditLogsConfigurationResult {
885
887
  AutoEnable: boolean | undefined;
@@ -888,21 +890,25 @@ export interface OrganizationKubernetesConfigurationResult {
888
890
  AuditLogs: OrganizationKubernetesAuditLogsConfigurationResult | undefined;
889
891
  }
890
892
  export interface OrganizationEbsVolumesResult {
891
- AutoEnable?: boolean;
893
+ AutoEnable?: boolean | undefined;
892
894
  }
893
895
  export interface OrganizationScanEc2InstanceWithFindingsResult {
894
- EbsVolumes?: OrganizationEbsVolumesResult;
896
+ EbsVolumes?: OrganizationEbsVolumesResult | undefined;
895
897
  }
896
898
  export interface OrganizationMalwareProtectionConfigurationResult {
897
- ScanEc2InstanceWithFindings?: OrganizationScanEc2InstanceWithFindingsResult;
899
+ ScanEc2InstanceWithFindings?:
900
+ | OrganizationScanEc2InstanceWithFindingsResult
901
+ | undefined;
898
902
  }
899
903
  export interface OrganizationS3LogsConfigurationResult {
900
904
  AutoEnable: boolean | undefined;
901
905
  }
902
906
  export interface OrganizationDataSourceConfigurationsResult {
903
907
  S3Logs: OrganizationS3LogsConfigurationResult | undefined;
904
- Kubernetes?: OrganizationKubernetesConfigurationResult;
905
- MalwareProtection?: OrganizationMalwareProtectionConfigurationResult;
908
+ Kubernetes?: OrganizationKubernetesConfigurationResult | undefined;
909
+ MalwareProtection?:
910
+ | OrganizationMalwareProtectionConfigurationResult
911
+ | undefined;
906
912
  }
907
913
  export declare const OrgFeatureStatus: {
908
914
  readonly ALL: "ALL";
@@ -919,8 +925,8 @@ export declare const OrgFeatureAdditionalConfiguration: {
919
925
  export type OrgFeatureAdditionalConfiguration =
920
926
  (typeof OrgFeatureAdditionalConfiguration)[keyof typeof OrgFeatureAdditionalConfiguration];
921
927
  export interface OrganizationAdditionalConfigurationResult {
922
- Name?: OrgFeatureAdditionalConfiguration;
923
- AutoEnable?: OrgFeatureStatus;
928
+ Name?: OrgFeatureAdditionalConfiguration | undefined;
929
+ AutoEnable?: OrgFeatureStatus | undefined;
924
930
  }
925
931
  export declare const OrgFeature: {
926
932
  readonly EBS_MALWARE_PROTECTION: "EBS_MALWARE_PROTECTION";
@@ -933,17 +939,19 @@ export declare const OrgFeature: {
933
939
  };
934
940
  export type OrgFeature = (typeof OrgFeature)[keyof typeof OrgFeature];
935
941
  export interface OrganizationFeatureConfigurationResult {
936
- Name?: OrgFeature;
937
- AutoEnable?: OrgFeatureStatus;
938
- AdditionalConfiguration?: OrganizationAdditionalConfigurationResult[];
942
+ Name?: OrgFeature | undefined;
943
+ AutoEnable?: OrgFeatureStatus | undefined;
944
+ AdditionalConfiguration?:
945
+ | OrganizationAdditionalConfigurationResult[]
946
+ | undefined;
939
947
  }
940
948
  export interface DescribeOrganizationConfigurationResponse {
941
- AutoEnable?: boolean;
949
+ AutoEnable?: boolean | undefined;
942
950
  MemberAccountLimitReached: boolean | undefined;
943
- DataSources?: OrganizationDataSourceConfigurationsResult;
944
- Features?: OrganizationFeatureConfigurationResult[];
945
- NextToken?: string;
946
- AutoEnableOrganizationMembers?: AutoEnableMembers;
951
+ DataSources?: OrganizationDataSourceConfigurationsResult | undefined;
952
+ Features?: OrganizationFeatureConfigurationResult[] | undefined;
953
+ NextToken?: string | undefined;
954
+ AutoEnableOrganizationMembers?: AutoEnableMembers | undefined;
947
955
  }
948
956
  export interface DescribePublishingDestinationRequest {
949
957
  DetectorId: string | undefined;
@@ -970,12 +978,12 @@ export interface Destination {
970
978
  Status: PublishingStatus | undefined;
971
979
  }
972
980
  export interface Detection {
973
- Anomaly?: Anomaly;
981
+ Anomaly?: Anomaly | undefined;
974
982
  }
975
983
  export interface DetectorAdditionalConfigurationResult {
976
- Name?: FeatureAdditionalConfiguration;
977
- Status?: FeatureStatus;
978
- UpdatedAt?: Date;
984
+ Name?: FeatureAdditionalConfiguration | undefined;
985
+ Status?: FeatureStatus | undefined;
986
+ UpdatedAt?: Date | undefined;
979
987
  }
980
988
  export declare const DetectorFeatureResult: {
981
989
  readonly CLOUD_TRAIL: "CLOUD_TRAIL";
@@ -992,10 +1000,10 @@ export declare const DetectorFeatureResult: {
992
1000
  export type DetectorFeatureResult =
993
1001
  (typeof DetectorFeatureResult)[keyof typeof DetectorFeatureResult];
994
1002
  export interface DetectorFeatureConfigurationResult {
995
- Name?: DetectorFeatureResult;
996
- Status?: FeatureStatus;
997
- UpdatedAt?: Date;
998
- AdditionalConfiguration?: DetectorAdditionalConfigurationResult[];
1003
+ Name?: DetectorFeatureResult | undefined;
1004
+ Status?: FeatureStatus | undefined;
1005
+ UpdatedAt?: Date | undefined;
1006
+ AdditionalConfiguration?: DetectorAdditionalConfigurationResult[] | undefined;
999
1007
  }
1000
1008
  export declare const DetectorStatus: {
1001
1009
  readonly DISABLED: "DISABLED";
@@ -1029,108 +1037,108 @@ export declare const EbsSnapshotPreservation: {
1029
1037
  export type EbsSnapshotPreservation =
1030
1038
  (typeof EbsSnapshotPreservation)[keyof typeof EbsSnapshotPreservation];
1031
1039
  export interface EbsVolumeDetails {
1032
- ScannedVolumeDetails?: VolumeDetail[];
1033
- SkippedVolumeDetails?: VolumeDetail[];
1040
+ ScannedVolumeDetails?: VolumeDetail[] | undefined;
1041
+ SkippedVolumeDetails?: VolumeDetail[] | undefined;
1034
1042
  }
1035
1043
  export interface HighestSeverityThreatDetails {
1036
- Severity?: string;
1037
- ThreatName?: string;
1038
- Count?: number;
1044
+ Severity?: string | undefined;
1045
+ ThreatName?: string | undefined;
1046
+ Count?: number | undefined;
1039
1047
  }
1040
1048
  export interface ScannedItemCount {
1041
- TotalGb?: number;
1042
- Files?: number;
1043
- Volumes?: number;
1049
+ TotalGb?: number | undefined;
1050
+ Files?: number | undefined;
1051
+ Volumes?: number | undefined;
1044
1052
  }
1045
1053
  export interface ScanFilePath {
1046
- FilePath?: string;
1047
- VolumeArn?: string;
1048
- Hash?: string;
1049
- FileName?: string;
1054
+ FilePath?: string | undefined;
1055
+ VolumeArn?: string | undefined;
1056
+ Hash?: string | undefined;
1057
+ FileName?: string | undefined;
1050
1058
  }
1051
1059
  export interface ScanThreatName {
1052
- Name?: string;
1053
- Severity?: string;
1054
- ItemCount?: number;
1055
- FilePaths?: ScanFilePath[];
1060
+ Name?: string | undefined;
1061
+ Severity?: string | undefined;
1062
+ ItemCount?: number | undefined;
1063
+ FilePaths?: ScanFilePath[] | undefined;
1056
1064
  }
1057
1065
  export interface ThreatDetectedByName {
1058
- ItemCount?: number;
1059
- UniqueThreatNameCount?: number;
1060
- Shortened?: boolean;
1061
- ThreatNames?: ScanThreatName[];
1066
+ ItemCount?: number | undefined;
1067
+ UniqueThreatNameCount?: number | undefined;
1068
+ Shortened?: boolean | undefined;
1069
+ ThreatNames?: ScanThreatName[] | undefined;
1062
1070
  }
1063
1071
  export interface ThreatsDetectedItemCount {
1064
- Files?: number;
1072
+ Files?: number | undefined;
1065
1073
  }
1066
1074
  export interface ScanDetections {
1067
- ScannedItemCount?: ScannedItemCount;
1068
- ThreatsDetectedItemCount?: ThreatsDetectedItemCount;
1069
- HighestSeverityThreatDetails?: HighestSeverityThreatDetails;
1070
- ThreatDetectedByName?: ThreatDetectedByName;
1075
+ ScannedItemCount?: ScannedItemCount | undefined;
1076
+ ThreatsDetectedItemCount?: ThreatsDetectedItemCount | undefined;
1077
+ HighestSeverityThreatDetails?: HighestSeverityThreatDetails | undefined;
1078
+ ThreatDetectedByName?: ThreatDetectedByName | undefined;
1071
1079
  }
1072
1080
  export interface EbsVolumeScanDetails {
1073
- ScanId?: string;
1074
- ScanStartedAt?: Date;
1075
- ScanCompletedAt?: Date;
1076
- TriggerFindingId?: string;
1077
- Sources?: string[];
1078
- ScanDetections?: ScanDetections;
1079
- ScanType?: ScanType;
1081
+ ScanId?: string | undefined;
1082
+ ScanStartedAt?: Date | undefined;
1083
+ ScanCompletedAt?: Date | undefined;
1084
+ TriggerFindingId?: string | undefined;
1085
+ Sources?: string[] | undefined;
1086
+ ScanDetections?: ScanDetections | undefined;
1087
+ ScanType?: ScanType | undefined;
1080
1088
  }
1081
1089
  export interface Tag {
1082
- Key?: string;
1083
- Value?: string;
1090
+ Key?: string | undefined;
1091
+ Value?: string | undefined;
1084
1092
  }
1085
1093
  export interface HostPath {
1086
- Path?: string;
1094
+ Path?: string | undefined;
1087
1095
  }
1088
1096
  export interface Volume {
1089
- Name?: string;
1090
- HostPath?: HostPath;
1097
+ Name?: string | undefined;
1098
+ HostPath?: HostPath | undefined;
1091
1099
  }
1092
1100
  export interface EcsTaskDetails {
1093
- Arn?: string;
1094
- DefinitionArn?: string;
1095
- Version?: string;
1096
- TaskCreatedAt?: Date;
1097
- StartedAt?: Date;
1098
- StartedBy?: string;
1099
- Tags?: Tag[];
1100
- Volumes?: Volume[];
1101
- Containers?: Container[];
1102
- Group?: string;
1103
- LaunchType?: string;
1101
+ Arn?: string | undefined;
1102
+ DefinitionArn?: string | undefined;
1103
+ Version?: string | undefined;
1104
+ TaskCreatedAt?: Date | undefined;
1105
+ StartedAt?: Date | undefined;
1106
+ StartedBy?: string | undefined;
1107
+ Tags?: Tag[] | undefined;
1108
+ Volumes?: Volume[] | undefined;
1109
+ Containers?: Container[] | undefined;
1110
+ Group?: string | undefined;
1111
+ LaunchType?: string | undefined;
1104
1112
  }
1105
1113
  export interface EcsClusterDetails {
1106
- Name?: string;
1107
- Arn?: string;
1108
- Status?: string;
1109
- ActiveServicesCount?: number;
1110
- RegisteredContainerInstancesCount?: number;
1111
- RunningTasksCount?: number;
1112
- Tags?: Tag[];
1113
- TaskDetails?: EcsTaskDetails;
1114
+ Name?: string | undefined;
1115
+ Arn?: string | undefined;
1116
+ Status?: string | undefined;
1117
+ ActiveServicesCount?: number | undefined;
1118
+ RegisteredContainerInstancesCount?: number | undefined;
1119
+ RunningTasksCount?: number | undefined;
1120
+ Tags?: Tag[] | undefined;
1121
+ TaskDetails?: EcsTaskDetails | undefined;
1114
1122
  }
1115
1123
  export interface EksClusterDetails {
1116
- Name?: string;
1117
- Arn?: string;
1118
- VpcId?: string;
1119
- Status?: string;
1120
- Tags?: Tag[];
1121
- CreatedAt?: Date;
1124
+ Name?: string | undefined;
1125
+ Arn?: string | undefined;
1126
+ VpcId?: string | undefined;
1127
+ Status?: string | undefined;
1128
+ Tags?: Tag[] | undefined;
1129
+ CreatedAt?: Date | undefined;
1122
1130
  }
1123
1131
  export interface EnableOrganizationAdminAccountRequest {
1124
1132
  AdminAccountId: string | undefined;
1125
1133
  }
1126
1134
  export interface EnableOrganizationAdminAccountResponse {}
1127
1135
  export interface ThreatIntelligenceDetail {
1128
- ThreatListName?: string;
1129
- ThreatNames?: string[];
1130
- ThreatFileSha256?: string;
1136
+ ThreatListName?: string | undefined;
1137
+ ThreatNames?: string[] | undefined;
1138
+ ThreatFileSha256?: string | undefined;
1131
1139
  }
1132
1140
  export interface Evidence {
1133
- ThreatIntelligenceDetails?: ThreatIntelligenceDetail[];
1141
+ ThreatIntelligenceDetails?: ThreatIntelligenceDetail[] | undefined;
1134
1142
  }
1135
1143
  export declare const Feedback: {
1136
1144
  readonly NOT_USEFUL: "NOT_USEFUL";
@@ -1138,291 +1146,291 @@ export declare const Feedback: {
1138
1146
  };
1139
1147
  export type Feedback = (typeof Feedback)[keyof typeof Feedback];
1140
1148
  export interface IamInstanceProfile {
1141
- Arn?: string;
1142
- Id?: string;
1149
+ Arn?: string | undefined;
1150
+ Id?: string | undefined;
1143
1151
  }
1144
1152
  export interface PrivateIpAddressDetails {
1145
- PrivateDnsName?: string;
1146
- PrivateIpAddress?: string;
1153
+ PrivateDnsName?: string | undefined;
1154
+ PrivateIpAddress?: string | undefined;
1147
1155
  }
1148
1156
  export interface SecurityGroup {
1149
- GroupId?: string;
1150
- GroupName?: string;
1157
+ GroupId?: string | undefined;
1158
+ GroupName?: string | undefined;
1151
1159
  }
1152
1160
  export interface NetworkInterface {
1153
- Ipv6Addresses?: string[];
1154
- NetworkInterfaceId?: string;
1155
- PrivateDnsName?: string;
1156
- PrivateIpAddress?: string;
1157
- PrivateIpAddresses?: PrivateIpAddressDetails[];
1158
- PublicDnsName?: string;
1159
- PublicIp?: string;
1160
- SecurityGroups?: SecurityGroup[];
1161
- SubnetId?: string;
1162
- VpcId?: string;
1161
+ Ipv6Addresses?: string[] | undefined;
1162
+ NetworkInterfaceId?: string | undefined;
1163
+ PrivateDnsName?: string | undefined;
1164
+ PrivateIpAddress?: string | undefined;
1165
+ PrivateIpAddresses?: PrivateIpAddressDetails[] | undefined;
1166
+ PublicDnsName?: string | undefined;
1167
+ PublicIp?: string | undefined;
1168
+ SecurityGroups?: SecurityGroup[] | undefined;
1169
+ SubnetId?: string | undefined;
1170
+ VpcId?: string | undefined;
1163
1171
  }
1164
1172
  export interface ProductCode {
1165
- Code?: string;
1166
- ProductType?: string;
1173
+ Code?: string | undefined;
1174
+ ProductType?: string | undefined;
1167
1175
  }
1168
1176
  export interface InstanceDetails {
1169
- AvailabilityZone?: string;
1170
- IamInstanceProfile?: IamInstanceProfile;
1171
- ImageDescription?: string;
1172
- ImageId?: string;
1173
- InstanceId?: string;
1174
- InstanceState?: string;
1175
- InstanceType?: string;
1176
- OutpostArn?: string;
1177
- LaunchTime?: string;
1178
- NetworkInterfaces?: NetworkInterface[];
1179
- Platform?: string;
1180
- ProductCodes?: ProductCode[];
1181
- Tags?: Tag[];
1177
+ AvailabilityZone?: string | undefined;
1178
+ IamInstanceProfile?: IamInstanceProfile | undefined;
1179
+ ImageDescription?: string | undefined;
1180
+ ImageId?: string | undefined;
1181
+ InstanceId?: string | undefined;
1182
+ InstanceState?: string | undefined;
1183
+ InstanceType?: string | undefined;
1184
+ OutpostArn?: string | undefined;
1185
+ LaunchTime?: string | undefined;
1186
+ NetworkInterfaces?: NetworkInterface[] | undefined;
1187
+ Platform?: string | undefined;
1188
+ ProductCodes?: ProductCode[] | undefined;
1189
+ Tags?: Tag[] | undefined;
1182
1190
  }
1183
1191
  export interface ImpersonatedUser {
1184
- Username?: string;
1185
- Groups?: string[];
1192
+ Username?: string | undefined;
1193
+ Groups?: string[] | undefined;
1186
1194
  }
1187
1195
  export interface KubernetesUserDetails {
1188
- Username?: string;
1189
- Uid?: string;
1190
- Groups?: string[];
1191
- SessionName?: string[];
1192
- ImpersonatedUser?: ImpersonatedUser;
1196
+ Username?: string | undefined;
1197
+ Uid?: string | undefined;
1198
+ Groups?: string[] | undefined;
1199
+ SessionName?: string[] | undefined;
1200
+ ImpersonatedUser?: ImpersonatedUser | undefined;
1193
1201
  }
1194
1202
  export interface KubernetesWorkloadDetails {
1195
- Name?: string;
1196
- Type?: string;
1197
- Uid?: string;
1198
- Namespace?: string;
1199
- HostNetwork?: boolean;
1200
- Containers?: Container[];
1201
- Volumes?: Volume[];
1202
- ServiceAccountName?: string;
1203
- HostIPC?: boolean;
1204
- HostPID?: boolean;
1203
+ Name?: string | undefined;
1204
+ Type?: string | undefined;
1205
+ Uid?: string | undefined;
1206
+ Namespace?: string | undefined;
1207
+ HostNetwork?: boolean | undefined;
1208
+ Containers?: Container[] | undefined;
1209
+ Volumes?: Volume[] | undefined;
1210
+ ServiceAccountName?: string | undefined;
1211
+ HostIPC?: boolean | undefined;
1212
+ HostPID?: boolean | undefined;
1205
1213
  }
1206
1214
  export interface KubernetesDetails {
1207
- KubernetesUserDetails?: KubernetesUserDetails;
1208
- KubernetesWorkloadDetails?: KubernetesWorkloadDetails;
1215
+ KubernetesUserDetails?: KubernetesUserDetails | undefined;
1216
+ KubernetesWorkloadDetails?: KubernetesWorkloadDetails | undefined;
1209
1217
  }
1210
1218
  export interface VpcConfig {
1211
- SubnetIds?: string[];
1212
- VpcId?: string;
1213
- SecurityGroups?: SecurityGroup[];
1219
+ SubnetIds?: string[] | undefined;
1220
+ VpcId?: string | undefined;
1221
+ SecurityGroups?: SecurityGroup[] | undefined;
1214
1222
  }
1215
1223
  export interface LambdaDetails {
1216
- FunctionArn?: string;
1217
- FunctionName?: string;
1218
- Description?: string;
1219
- LastModifiedAt?: Date;
1220
- RevisionId?: string;
1221
- FunctionVersion?: string;
1222
- Role?: string;
1223
- VpcConfig?: VpcConfig;
1224
- Tags?: Tag[];
1224
+ FunctionArn?: string | undefined;
1225
+ FunctionName?: string | undefined;
1226
+ Description?: string | undefined;
1227
+ LastModifiedAt?: Date | undefined;
1228
+ RevisionId?: string | undefined;
1229
+ FunctionVersion?: string | undefined;
1230
+ Role?: string | undefined;
1231
+ VpcConfig?: VpcConfig | undefined;
1232
+ Tags?: Tag[] | undefined;
1225
1233
  }
1226
1234
  export interface RdsDbInstanceDetails {
1227
- DbInstanceIdentifier?: string;
1228
- Engine?: string;
1229
- EngineVersion?: string;
1230
- DbClusterIdentifier?: string;
1231
- DbInstanceArn?: string;
1232
- Tags?: Tag[];
1235
+ DbInstanceIdentifier?: string | undefined;
1236
+ Engine?: string | undefined;
1237
+ EngineVersion?: string | undefined;
1238
+ DbClusterIdentifier?: string | undefined;
1239
+ DbInstanceArn?: string | undefined;
1240
+ Tags?: Tag[] | undefined;
1233
1241
  }
1234
1242
  export interface RdsDbUserDetails {
1235
- User?: string;
1236
- Application?: string;
1237
- Database?: string;
1238
- Ssl?: string;
1239
- AuthMethod?: string;
1243
+ User?: string | undefined;
1244
+ Application?: string | undefined;
1245
+ Database?: string | undefined;
1246
+ Ssl?: string | undefined;
1247
+ AuthMethod?: string | undefined;
1240
1248
  }
1241
1249
  export interface RdsLimitlessDbDetails {
1242
- DbShardGroupIdentifier?: string;
1243
- DbShardGroupResourceId?: string;
1244
- DbShardGroupArn?: string;
1245
- Engine?: string;
1246
- EngineVersion?: string;
1247
- DbClusterIdentifier?: string;
1248
- Tags?: Tag[];
1250
+ DbShardGroupIdentifier?: string | undefined;
1251
+ DbShardGroupResourceId?: string | undefined;
1252
+ DbShardGroupArn?: string | undefined;
1253
+ Engine?: string | undefined;
1254
+ EngineVersion?: string | undefined;
1255
+ DbClusterIdentifier?: string | undefined;
1256
+ Tags?: Tag[] | undefined;
1249
1257
  }
1250
1258
  export interface Owner {
1251
- Id?: string;
1259
+ Id?: string | undefined;
1252
1260
  }
1253
1261
  export interface PermissionConfiguration {
1254
- BucketLevelPermissions?: BucketLevelPermissions;
1255
- AccountLevelPermissions?: AccountLevelPermissions;
1262
+ BucketLevelPermissions?: BucketLevelPermissions | undefined;
1263
+ AccountLevelPermissions?: AccountLevelPermissions | undefined;
1256
1264
  }
1257
1265
  export interface PublicAccess {
1258
- PermissionConfiguration?: PermissionConfiguration;
1259
- EffectivePermission?: string;
1266
+ PermissionConfiguration?: PermissionConfiguration | undefined;
1267
+ EffectivePermission?: string | undefined;
1260
1268
  }
1261
1269
  export interface S3ObjectDetail {
1262
- ObjectArn?: string;
1263
- Key?: string;
1264
- ETag?: string;
1265
- Hash?: string;
1266
- VersionId?: string;
1270
+ ObjectArn?: string | undefined;
1271
+ Key?: string | undefined;
1272
+ ETag?: string | undefined;
1273
+ Hash?: string | undefined;
1274
+ VersionId?: string | undefined;
1267
1275
  }
1268
1276
  export interface S3BucketDetail {
1269
- Arn?: string;
1270
- Name?: string;
1271
- Type?: string;
1272
- CreatedAt?: Date;
1273
- Owner?: Owner;
1274
- Tags?: Tag[];
1275
- DefaultServerSideEncryption?: DefaultServerSideEncryption;
1276
- PublicAccess?: PublicAccess;
1277
- S3ObjectDetails?: S3ObjectDetail[];
1277
+ Arn?: string | undefined;
1278
+ Name?: string | undefined;
1279
+ Type?: string | undefined;
1280
+ CreatedAt?: Date | undefined;
1281
+ Owner?: Owner | undefined;
1282
+ Tags?: Tag[] | undefined;
1283
+ DefaultServerSideEncryption?: DefaultServerSideEncryption | undefined;
1284
+ PublicAccess?: PublicAccess | undefined;
1285
+ S3ObjectDetails?: S3ObjectDetail[] | undefined;
1278
1286
  }
1279
1287
  export interface Resource {
1280
- AccessKeyDetails?: AccessKeyDetails;
1281
- S3BucketDetails?: S3BucketDetail[];
1282
- InstanceDetails?: InstanceDetails;
1283
- EksClusterDetails?: EksClusterDetails;
1284
- KubernetesDetails?: KubernetesDetails;
1285
- ResourceType?: string;
1286
- EbsVolumeDetails?: EbsVolumeDetails;
1287
- EcsClusterDetails?: EcsClusterDetails;
1288
- ContainerDetails?: Container;
1289
- RdsDbInstanceDetails?: RdsDbInstanceDetails;
1290
- RdsLimitlessDbDetails?: RdsLimitlessDbDetails;
1291
- RdsDbUserDetails?: RdsDbUserDetails;
1292
- LambdaDetails?: LambdaDetails;
1288
+ AccessKeyDetails?: AccessKeyDetails | undefined;
1289
+ S3BucketDetails?: S3BucketDetail[] | undefined;
1290
+ InstanceDetails?: InstanceDetails | undefined;
1291
+ EksClusterDetails?: EksClusterDetails | undefined;
1292
+ KubernetesDetails?: KubernetesDetails | undefined;
1293
+ ResourceType?: string | undefined;
1294
+ EbsVolumeDetails?: EbsVolumeDetails | undefined;
1295
+ EcsClusterDetails?: EcsClusterDetails | undefined;
1296
+ ContainerDetails?: Container | undefined;
1297
+ RdsDbInstanceDetails?: RdsDbInstanceDetails | undefined;
1298
+ RdsLimitlessDbDetails?: RdsLimitlessDbDetails | undefined;
1299
+ RdsDbUserDetails?: RdsDbUserDetails | undefined;
1300
+ LambdaDetails?: LambdaDetails | undefined;
1293
1301
  }
1294
1302
  export interface ServiceAdditionalInfo {
1295
- Value?: string;
1296
- Type?: string;
1303
+ Value?: string | undefined;
1304
+ Type?: string | undefined;
1297
1305
  }
1298
1306
  export interface ItemPath {
1299
- NestedItemPath?: string;
1300
- Hash?: string;
1307
+ NestedItemPath?: string | undefined;
1308
+ Hash?: string | undefined;
1301
1309
  }
1302
1310
  export interface Threat {
1303
- Name?: string;
1304
- Source?: string;
1305
- ItemPaths?: ItemPath[];
1311
+ Name?: string | undefined;
1312
+ Source?: string | undefined;
1313
+ ItemPaths?: ItemPath[] | undefined;
1306
1314
  }
1307
1315
  export interface MalwareScanDetails {
1308
- Threats?: Threat[];
1316
+ Threats?: Threat[] | undefined;
1309
1317
  }
1310
1318
  export interface LineageObject {
1311
- StartTime?: Date;
1312
- NamespacePid?: number;
1313
- UserId?: number;
1314
- Name?: string;
1315
- Pid?: number;
1316
- Uuid?: string;
1317
- ExecutablePath?: string;
1318
- Euid?: number;
1319
- ParentUuid?: string;
1319
+ StartTime?: Date | undefined;
1320
+ NamespacePid?: number | undefined;
1321
+ UserId?: number | undefined;
1322
+ Name?: string | undefined;
1323
+ Pid?: number | undefined;
1324
+ Uuid?: string | undefined;
1325
+ ExecutablePath?: string | undefined;
1326
+ Euid?: number | undefined;
1327
+ ParentUuid?: string | undefined;
1320
1328
  }
1321
1329
  export interface ProcessDetails {
1322
- Name?: string;
1323
- ExecutablePath?: string;
1324
- ExecutableSha256?: string;
1325
- NamespacePid?: number;
1326
- Pwd?: string;
1327
- Pid?: number;
1328
- StartTime?: Date;
1329
- Uuid?: string;
1330
- ParentUuid?: string;
1331
- User?: string;
1332
- UserId?: number;
1333
- Euid?: number;
1334
- Lineage?: LineageObject[];
1330
+ Name?: string | undefined;
1331
+ ExecutablePath?: string | undefined;
1332
+ ExecutableSha256?: string | undefined;
1333
+ NamespacePid?: number | undefined;
1334
+ Pwd?: string | undefined;
1335
+ Pid?: number | undefined;
1336
+ StartTime?: Date | undefined;
1337
+ Uuid?: string | undefined;
1338
+ ParentUuid?: string | undefined;
1339
+ User?: string | undefined;
1340
+ UserId?: number | undefined;
1341
+ Euid?: number | undefined;
1342
+ Lineage?: LineageObject[] | undefined;
1335
1343
  }
1336
1344
  export interface RuntimeContext {
1337
- ModifyingProcess?: ProcessDetails;
1338
- ModifiedAt?: Date;
1339
- ScriptPath?: string;
1340
- LibraryPath?: string;
1341
- LdPreloadValue?: string;
1342
- SocketPath?: string;
1343
- RuncBinaryPath?: string;
1344
- ReleaseAgentPath?: string;
1345
- MountSource?: string;
1346
- MountTarget?: string;
1347
- FileSystemType?: string;
1348
- Flags?: string[];
1349
- ModuleName?: string;
1350
- ModuleFilePath?: string;
1351
- ModuleSha256?: string;
1352
- ShellHistoryFilePath?: string;
1353
- TargetProcess?: ProcessDetails;
1354
- AddressFamily?: string;
1355
- IanaProtocolNumber?: number;
1356
- MemoryRegions?: string[];
1357
- ToolName?: string;
1358
- ToolCategory?: string;
1359
- ServiceName?: string;
1360
- CommandLineExample?: string;
1361
- ThreatFilePath?: string;
1345
+ ModifyingProcess?: ProcessDetails | undefined;
1346
+ ModifiedAt?: Date | undefined;
1347
+ ScriptPath?: string | undefined;
1348
+ LibraryPath?: string | undefined;
1349
+ LdPreloadValue?: string | undefined;
1350
+ SocketPath?: string | undefined;
1351
+ RuncBinaryPath?: string | undefined;
1352
+ ReleaseAgentPath?: string | undefined;
1353
+ MountSource?: string | undefined;
1354
+ MountTarget?: string | undefined;
1355
+ FileSystemType?: string | undefined;
1356
+ Flags?: string[] | undefined;
1357
+ ModuleName?: string | undefined;
1358
+ ModuleFilePath?: string | undefined;
1359
+ ModuleSha256?: string | undefined;
1360
+ ShellHistoryFilePath?: string | undefined;
1361
+ TargetProcess?: ProcessDetails | undefined;
1362
+ AddressFamily?: string | undefined;
1363
+ IanaProtocolNumber?: number | undefined;
1364
+ MemoryRegions?: string[] | undefined;
1365
+ ToolName?: string | undefined;
1366
+ ToolCategory?: string | undefined;
1367
+ ServiceName?: string | undefined;
1368
+ CommandLineExample?: string | undefined;
1369
+ ThreatFilePath?: string | undefined;
1362
1370
  }
1363
1371
  export interface RuntimeDetails {
1364
- Process?: ProcessDetails;
1365
- Context?: RuntimeContext;
1372
+ Process?: ProcessDetails | undefined;
1373
+ Context?: RuntimeContext | undefined;
1366
1374
  }
1367
1375
  export interface Service {
1368
- Action?: Action;
1369
- Evidence?: Evidence;
1370
- Archived?: boolean;
1371
- Count?: number;
1372
- DetectorId?: string;
1373
- EventFirstSeen?: string;
1374
- EventLastSeen?: string;
1375
- ResourceRole?: string;
1376
- ServiceName?: string;
1377
- UserFeedback?: string;
1378
- AdditionalInfo?: ServiceAdditionalInfo;
1379
- FeatureName?: string;
1380
- EbsVolumeScanDetails?: EbsVolumeScanDetails;
1381
- RuntimeDetails?: RuntimeDetails;
1382
- Detection?: Detection;
1383
- MalwareScanDetails?: MalwareScanDetails;
1376
+ Action?: Action | undefined;
1377
+ Evidence?: Evidence | undefined;
1378
+ Archived?: boolean | undefined;
1379
+ Count?: number | undefined;
1380
+ DetectorId?: string | undefined;
1381
+ EventFirstSeen?: string | undefined;
1382
+ EventLastSeen?: string | undefined;
1383
+ ResourceRole?: string | undefined;
1384
+ ServiceName?: string | undefined;
1385
+ UserFeedback?: string | undefined;
1386
+ AdditionalInfo?: ServiceAdditionalInfo | undefined;
1387
+ FeatureName?: string | undefined;
1388
+ EbsVolumeScanDetails?: EbsVolumeScanDetails | undefined;
1389
+ RuntimeDetails?: RuntimeDetails | undefined;
1390
+ Detection?: Detection | undefined;
1391
+ MalwareScanDetails?: MalwareScanDetails | undefined;
1384
1392
  }
1385
1393
  export interface Finding {
1386
1394
  AccountId: string | undefined;
1387
1395
  Arn: string | undefined;
1388
- Confidence?: number;
1396
+ Confidence?: number | undefined;
1389
1397
  CreatedAt: string | undefined;
1390
- Description?: string;
1398
+ Description?: string | undefined;
1391
1399
  Id: string | undefined;
1392
- Partition?: string;
1400
+ Partition?: string | undefined;
1393
1401
  Region: string | undefined;
1394
1402
  Resource: Resource | undefined;
1395
1403
  SchemaVersion: string | undefined;
1396
- Service?: Service;
1404
+ Service?: Service | undefined;
1397
1405
  Severity: number | undefined;
1398
- Title?: string;
1406
+ Title?: string | undefined;
1399
1407
  Type: string | undefined;
1400
1408
  UpdatedAt: string | undefined;
1401
1409
  }
1402
1410
  export interface FindingTypeStatistics {
1403
- FindingType?: string;
1404
- LastGeneratedAt?: Date;
1405
- TotalFindings?: number;
1411
+ FindingType?: string | undefined;
1412
+ LastGeneratedAt?: Date | undefined;
1413
+ TotalFindings?: number | undefined;
1406
1414
  }
1407
1415
  export interface ResourceStatistics {
1408
- AccountId?: string;
1409
- LastGeneratedAt?: Date;
1410
- ResourceId?: string;
1411
- ResourceType?: string;
1412
- TotalFindings?: number;
1416
+ AccountId?: string | undefined;
1417
+ LastGeneratedAt?: Date | undefined;
1418
+ ResourceId?: string | undefined;
1419
+ ResourceType?: string | undefined;
1420
+ TotalFindings?: number | undefined;
1413
1421
  }
1414
1422
  export interface SeverityStatistics {
1415
- LastGeneratedAt?: Date;
1416
- Severity?: number;
1417
- TotalFindings?: number;
1423
+ LastGeneratedAt?: Date | undefined;
1424
+ Severity?: number | undefined;
1425
+ TotalFindings?: number | undefined;
1418
1426
  }
1419
1427
  export interface FindingStatistics {
1420
- CountBySeverity?: Record<string, number>;
1421
- GroupedByAccount?: AccountStatistics[];
1422
- GroupedByDate?: DateStatistics[];
1423
- GroupedByFindingType?: FindingTypeStatistics[];
1424
- GroupedByResource?: ResourceStatistics[];
1425
- GroupedBySeverity?: SeverityStatistics[];
1428
+ CountBySeverity?: Record<string, number> | undefined;
1429
+ GroupedByAccount?: AccountStatistics[] | undefined;
1430
+ GroupedByDate?: DateStatistics[] | undefined;
1431
+ GroupedByFindingType?: FindingTypeStatistics[] | undefined;
1432
+ GroupedByResource?: ResourceStatistics[] | undefined;
1433
+ GroupedBySeverity?: SeverityStatistics[] | undefined;
1426
1434
  }
1427
1435
  export declare const FindingStatisticType: {
1428
1436
  readonly COUNT_BY_SEVERITY: "COUNT_BY_SEVERITY";
@@ -1437,24 +1445,24 @@ export interface GetAdministratorAccountResponse {
1437
1445
  }
1438
1446
  export interface GetCoverageStatisticsRequest {
1439
1447
  DetectorId: string | undefined;
1440
- FilterCriteria?: CoverageFilterCriteria;
1448
+ FilterCriteria?: CoverageFilterCriteria | undefined;
1441
1449
  StatisticsType: CoverageStatisticsType[] | undefined;
1442
1450
  }
1443
1451
  export interface GetCoverageStatisticsResponse {
1444
- CoverageStatistics?: CoverageStatistics;
1452
+ CoverageStatistics?: CoverageStatistics | undefined;
1445
1453
  }
1446
1454
  export interface GetDetectorRequest {
1447
1455
  DetectorId: string | undefined;
1448
1456
  }
1449
1457
  export interface GetDetectorResponse {
1450
- CreatedAt?: string;
1451
- FindingPublishingFrequency?: FindingPublishingFrequency;
1458
+ CreatedAt?: string | undefined;
1459
+ FindingPublishingFrequency?: FindingPublishingFrequency | undefined;
1452
1460
  ServiceRole: string | undefined;
1453
1461
  Status: DetectorStatus | undefined;
1454
- UpdatedAt?: string;
1455
- DataSources?: DataSourceConfigurationsResult;
1456
- Tags?: Record<string, string>;
1457
- Features?: DetectorFeatureConfigurationResult[];
1462
+ UpdatedAt?: string | undefined;
1463
+ DataSources?: DataSourceConfigurationsResult | undefined;
1464
+ Tags?: Record<string, string> | undefined;
1465
+ Features?: DetectorFeatureConfigurationResult[] | undefined;
1458
1466
  }
1459
1467
  export interface GetFilterRequest {
1460
1468
  DetectorId: string | undefined;
@@ -1462,16 +1470,16 @@ export interface GetFilterRequest {
1462
1470
  }
1463
1471
  export interface GetFilterResponse {
1464
1472
  Name: string | undefined;
1465
- Description?: string;
1473
+ Description?: string | undefined;
1466
1474
  Action: FilterAction | undefined;
1467
- Rank?: number;
1475
+ Rank?: number | undefined;
1468
1476
  FindingCriteria: FindingCriteria | undefined;
1469
- Tags?: Record<string, string>;
1477
+ Tags?: Record<string, string> | undefined;
1470
1478
  }
1471
1479
  export interface GetFindingsRequest {
1472
1480
  DetectorId: string | undefined;
1473
1481
  FindingIds: string[] | undefined;
1474
- SortCriteria?: SortCriteria;
1482
+ SortCriteria?: SortCriteria | undefined;
1475
1483
  }
1476
1484
  export interface GetFindingsResponse {
1477
1485
  Findings: Finding[] | undefined;
@@ -1486,19 +1494,19 @@ export declare const GroupByType: {
1486
1494
  export type GroupByType = (typeof GroupByType)[keyof typeof GroupByType];
1487
1495
  export interface GetFindingsStatisticsRequest {
1488
1496
  DetectorId: string | undefined;
1489
- FindingStatisticTypes?: FindingStatisticType[];
1490
- FindingCriteria?: FindingCriteria;
1491
- GroupBy?: GroupByType;
1492
- OrderBy?: OrderBy;
1493
- MaxResults?: number;
1497
+ FindingStatisticTypes?: FindingStatisticType[] | undefined;
1498
+ FindingCriteria?: FindingCriteria | undefined;
1499
+ GroupBy?: GroupByType | undefined;
1500
+ OrderBy?: OrderBy | undefined;
1501
+ MaxResults?: number | undefined;
1494
1502
  }
1495
1503
  export interface GetFindingsStatisticsResponse {
1496
1504
  FindingStatistics: FindingStatistics | undefined;
1497
- NextToken?: string;
1505
+ NextToken?: string | undefined;
1498
1506
  }
1499
1507
  export interface GetInvitationsCountRequest {}
1500
1508
  export interface GetInvitationsCountResponse {
1501
- InvitationsCount?: number;
1509
+ InvitationsCount?: number | undefined;
1502
1510
  }
1503
1511
  export interface GetIPSetRequest {
1504
1512
  DetectorId: string | undefined;
@@ -1519,7 +1527,7 @@ export interface GetIPSetResponse {
1519
1527
  Format: IpSetFormat | undefined;
1520
1528
  Location: string | undefined;
1521
1529
  Status: IpSetStatus | undefined;
1522
- Tags?: Record<string, string>;
1530
+ Tags?: Record<string, string> | undefined;
1523
1531
  }
1524
1532
  export interface GetMalwareProtectionPlanRequest {
1525
1533
  MalwareProtectionPlanId: string | undefined;
@@ -1532,18 +1540,18 @@ export declare const MalwareProtectionPlanStatus: {
1532
1540
  export type MalwareProtectionPlanStatus =
1533
1541
  (typeof MalwareProtectionPlanStatus)[keyof typeof MalwareProtectionPlanStatus];
1534
1542
  export interface MalwareProtectionPlanStatusReason {
1535
- Code?: string;
1536
- Message?: string;
1543
+ Code?: string | undefined;
1544
+ Message?: string | undefined;
1537
1545
  }
1538
1546
  export interface GetMalwareProtectionPlanResponse {
1539
- Arn?: string;
1540
- Role?: string;
1541
- ProtectedResource?: CreateProtectedResource;
1542
- Actions?: MalwareProtectionPlanActions;
1543
- CreatedAt?: Date;
1544
- Status?: MalwareProtectionPlanStatus;
1545
- StatusReasons?: MalwareProtectionPlanStatusReason[];
1546
- Tags?: Record<string, string>;
1547
+ Arn?: string | undefined;
1548
+ Role?: string | undefined;
1549
+ ProtectedResource?: CreateProtectedResource | undefined;
1550
+ Actions?: MalwareProtectionPlanActions | undefined;
1551
+ CreatedAt?: Date | undefined;
1552
+ Status?: MalwareProtectionPlanStatus | undefined;
1553
+ StatusReasons?: MalwareProtectionPlanStatusReason[] | undefined;
1554
+ Tags?: Record<string, string> | undefined;
1547
1555
  }
1548
1556
  export interface GetMalwareScanSettingsRequest {
1549
1557
  DetectorId: string | undefined;
@@ -1555,27 +1563,27 @@ export type ScanCriterionKey =
1555
1563
  (typeof ScanCriterionKey)[keyof typeof ScanCriterionKey];
1556
1564
  export interface ScanConditionPair {
1557
1565
  Key: string | undefined;
1558
- Value?: string;
1566
+ Value?: string | undefined;
1559
1567
  }
1560
1568
  export interface ScanCondition {
1561
1569
  MapEquals: ScanConditionPair[] | undefined;
1562
1570
  }
1563
1571
  export interface ScanResourceCriteria {
1564
- Include?: Partial<Record<ScanCriterionKey, ScanCondition>>;
1565
- Exclude?: Partial<Record<ScanCriterionKey, ScanCondition>>;
1572
+ Include?: Partial<Record<ScanCriterionKey, ScanCondition>> | undefined;
1573
+ Exclude?: Partial<Record<ScanCriterionKey, ScanCondition>> | undefined;
1566
1574
  }
1567
1575
  export interface GetMalwareScanSettingsResponse {
1568
- ScanResourceCriteria?: ScanResourceCriteria;
1569
- EbsSnapshotPreservation?: EbsSnapshotPreservation;
1576
+ ScanResourceCriteria?: ScanResourceCriteria | undefined;
1577
+ EbsSnapshotPreservation?: EbsSnapshotPreservation | undefined;
1570
1578
  }
1571
1579
  export interface GetMasterAccountRequest {
1572
1580
  DetectorId: string | undefined;
1573
1581
  }
1574
1582
  export interface Master {
1575
- AccountId?: string;
1576
- InvitationId?: string;
1577
- RelationshipStatus?: string;
1578
- InvitedAt?: string;
1583
+ AccountId?: string | undefined;
1584
+ InvitationId?: string | undefined;
1585
+ RelationshipStatus?: string | undefined;
1586
+ InvitedAt?: string | undefined;
1579
1587
  }
1580
1588
  export interface GetMasterAccountResponse {
1581
1589
  Master: Master | undefined;
@@ -1585,20 +1593,20 @@ export interface GetMemberDetectorsRequest {
1585
1593
  AccountIds: string[] | undefined;
1586
1594
  }
1587
1595
  export interface MemberAdditionalConfigurationResult {
1588
- Name?: OrgFeatureAdditionalConfiguration;
1589
- Status?: FeatureStatus;
1590
- UpdatedAt?: Date;
1596
+ Name?: OrgFeatureAdditionalConfiguration | undefined;
1597
+ Status?: FeatureStatus | undefined;
1598
+ UpdatedAt?: Date | undefined;
1591
1599
  }
1592
1600
  export interface MemberFeaturesConfigurationResult {
1593
- Name?: OrgFeature;
1594
- Status?: FeatureStatus;
1595
- UpdatedAt?: Date;
1596
- AdditionalConfiguration?: MemberAdditionalConfigurationResult[];
1601
+ Name?: OrgFeature | undefined;
1602
+ Status?: FeatureStatus | undefined;
1603
+ UpdatedAt?: Date | undefined;
1604
+ AdditionalConfiguration?: MemberAdditionalConfigurationResult[] | undefined;
1597
1605
  }
1598
1606
  export interface MemberDataSourceConfiguration {
1599
1607
  AccountId: string | undefined;
1600
- DataSources?: DataSourceConfigurationsResult;
1601
- Features?: MemberFeaturesConfigurationResult[];
1608
+ DataSources?: DataSourceConfigurationsResult | undefined;
1609
+ Features?: MemberFeaturesConfigurationResult[] | undefined;
1602
1610
  }
1603
1611
  export interface GetMemberDetectorsResponse {
1604
1612
  MemberDataSourceConfigurations: MemberDataSourceConfiguration[] | undefined;
@@ -1610,33 +1618,35 @@ export interface GetMembersRequest {
1610
1618
  }
1611
1619
  export interface Member {
1612
1620
  AccountId: string | undefined;
1613
- DetectorId?: string;
1621
+ DetectorId?: string | undefined;
1614
1622
  MasterId: string | undefined;
1615
1623
  Email: string | undefined;
1616
1624
  RelationshipStatus: string | undefined;
1617
- InvitedAt?: string;
1625
+ InvitedAt?: string | undefined;
1618
1626
  UpdatedAt: string | undefined;
1619
- AdministratorId?: string;
1627
+ AdministratorId?: string | undefined;
1620
1628
  }
1621
1629
  export interface GetMembersResponse {
1622
1630
  Members: Member[] | undefined;
1623
1631
  UnprocessedAccounts: UnprocessedAccount[] | undefined;
1624
1632
  }
1625
1633
  export interface OrganizationFeatureStatisticsAdditionalConfiguration {
1626
- Name?: OrgFeatureAdditionalConfiguration;
1627
- EnabledAccountsCount?: number;
1634
+ Name?: OrgFeatureAdditionalConfiguration | undefined;
1635
+ EnabledAccountsCount?: number | undefined;
1628
1636
  }
1629
1637
  export interface OrganizationFeatureStatistics {
1630
- Name?: OrgFeature;
1631
- EnabledAccountsCount?: number;
1632
- AdditionalConfiguration?: OrganizationFeatureStatisticsAdditionalConfiguration[];
1638
+ Name?: OrgFeature | undefined;
1639
+ EnabledAccountsCount?: number | undefined;
1640
+ AdditionalConfiguration?:
1641
+ | OrganizationFeatureStatisticsAdditionalConfiguration[]
1642
+ | undefined;
1633
1643
  }
1634
1644
  export interface OrganizationStatistics {
1635
- TotalAccountsCount?: number;
1636
- MemberAccountsCount?: number;
1637
- ActiveAccountsCount?: number;
1638
- EnabledAccountsCount?: number;
1639
- CountByFeature?: OrganizationFeatureStatistics[];
1645
+ TotalAccountsCount?: number | undefined;
1646
+ MemberAccountsCount?: number | undefined;
1647
+ ActiveAccountsCount?: number | undefined;
1648
+ EnabledAccountsCount?: number | undefined;
1649
+ CountByFeature?: OrganizationFeatureStatistics[] | undefined;
1640
1650
  }
1641
1651
  export declare const AccountDetailFilterSensitiveLog: (
1642
1652
  obj: AccountDetail