@aws-sdk/client-guardduty 3.47.2 → 3.51.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.
@@ -173,7 +173,7 @@ export declare namespace AccountLevelPermissions {
173
173
  */
174
174
  export interface DomainDetails {
175
175
  /**
176
- * <p>The domain information for the AWS API call.</p>
176
+ * <p>The domain information for the Amazon Web Services API call.</p>
177
177
  */
178
178
  Domain?: string;
179
179
  }
@@ -183,6 +183,25 @@ export declare namespace DomainDetails {
183
183
  */
184
184
  const filterSensitiveLog: (obj: DomainDetails) => any;
185
185
  }
186
+ /**
187
+ * <p>Contains details about the remote Amazon Web Services account that made the API call.</p>
188
+ */
189
+ export interface RemoteAccountDetails {
190
+ /**
191
+ * <p>The Amazon Web Services account ID of the remote API caller.</p>
192
+ */
193
+ AccountId?: string;
194
+ /**
195
+ * <p>Details on whether the Amazon Web Services account of the remote API caller is related to your GuardDuty environment. If this value is <code>True</code> the API caller is affiliated to your account in some way. If it is <code>False</code> the API caller is from outside your environment.</p>
196
+ */
197
+ Affiliated?: boolean;
198
+ }
199
+ export declare namespace RemoteAccountDetails {
200
+ /**
201
+ * @internal
202
+ */
203
+ const filterSensitiveLog: (obj: RemoteAccountDetails) => any;
204
+ }
186
205
  /**
187
206
  * <p>Contains information about the city associated with the IP address.</p>
188
207
  */
@@ -300,29 +319,34 @@ export declare namespace RemoteIpDetails {
300
319
  */
301
320
  export interface AwsApiCallAction {
302
321
  /**
303
- * <p>The AWS API name.</p>
322
+ * <p>The Amazon Web Services API name.</p>
304
323
  */
305
324
  Api?: string;
306
325
  /**
307
- * <p>The AWS API caller type.</p>
326
+ * <p>The Amazon Web Services API caller type.</p>
308
327
  */
309
328
  CallerType?: string;
310
329
  /**
311
- * <p>The domain information for the AWS API call.</p>
330
+ * <p>The domain information for the Amazon Web Services API call.</p>
312
331
  */
313
332
  DomainDetails?: DomainDetails;
314
333
  /**
315
- * <p>The error code of the failed AWS API action.</p>
334
+ * <p>The error code of the failed Amazon Web Services API action.</p>
316
335
  */
317
336
  ErrorCode?: string;
337
+ UserAgent?: string;
318
338
  /**
319
- * <p>The remote IP information of the connection that initiated the AWS API call.</p>
339
+ * <p>The remote IP information of the connection that initiated the Amazon Web Services API call.</p>
320
340
  */
321
341
  RemoteIpDetails?: RemoteIpDetails;
322
342
  /**
323
- * <p>The AWS service name whose API was invoked.</p>
343
+ * <p>The Amazon Web Services service name whose API was invoked.</p>
324
344
  */
325
345
  ServiceName?: string;
346
+ /**
347
+ * <p>The details of the Amazon Web Services account that made the API call. This field appears if the call was made from outside your account.</p>
348
+ */
349
+ RemoteAccountDetails?: RemoteAccountDetails;
326
350
  }
327
351
  export declare namespace AwsApiCallAction {
328
352
  /**
@@ -345,6 +369,45 @@ export declare namespace DnsRequestAction {
345
369
  */
346
370
  const filterSensitiveLog: (obj: DnsRequestAction) => any;
347
371
  }
372
+ /**
373
+ * <p>Information about the Kubernetes API call action described in this finding.</p>
374
+ */
375
+ export interface KubernetesApiCallAction {
376
+ /**
377
+ * <p>The Kubernetes API request URI.</p>
378
+ */
379
+ RequestUri?: string;
380
+ /**
381
+ * <p>The Kubernetes API request HTTP verb.</p>
382
+ */
383
+ Verb?: string;
384
+ /**
385
+ * <p>The IP of the Kubernetes API caller and the IPs of any proxies or load balancers between the caller and the API endpoint.</p>
386
+ */
387
+ SourceIps?: string[];
388
+ /**
389
+ * <p>The user agent of the caller of the Kubernetes API.</p>
390
+ */
391
+ UserAgent?: string;
392
+ /**
393
+ * <p>Contains information about the remote IP address of the connection.</p>
394
+ */
395
+ RemoteIpDetails?: RemoteIpDetails;
396
+ /**
397
+ * <p>The resulting HTTP response code of the Kubernetes API call action.</p>
398
+ */
399
+ StatusCode?: number;
400
+ /**
401
+ * <p>Parameters related to the Kubernetes API call action.</p>
402
+ */
403
+ Parameters?: string;
404
+ }
405
+ export declare namespace KubernetesApiCallAction {
406
+ /**
407
+ * @internal
408
+ */
409
+ const filterSensitiveLog: (obj: KubernetesApiCallAction) => any;
410
+ }
348
411
  /**
349
412
  * <p>Contains information about the local IP address of the connection.</p>
350
413
  */
@@ -503,6 +566,10 @@ export interface Action {
503
566
  * <p>Information about the PORT_PROBE action described in this finding.</p>
504
567
  */
505
568
  PortProbeAction?: PortProbeAction;
569
+ /**
570
+ * <p>Information about the Kubernetes API call action described in this finding.</p>
571
+ */
572
+ KubernetesApiCallAction?: KubernetesApiCallAction;
506
573
  }
507
574
  export declare namespace Action {
508
575
  /**
@@ -520,7 +587,7 @@ export declare enum AdminStatus {
520
587
  */
521
588
  export interface AdminAccount {
522
589
  /**
523
- * <p>The AWS account ID for the account.</p>
590
+ * <p>The Amazon Web Services account ID for the account.</p>
524
591
  */
525
592
  AdminAccountId?: string;
526
593
  /**
@@ -708,6 +775,109 @@ export declare namespace Condition {
708
775
  */
709
776
  const filterSensitiveLog: (obj: Condition) => any;
710
777
  }
778
+ /**
779
+ * <p>Container security context.</p>
780
+ */
781
+ export interface SecurityContext {
782
+ /**
783
+ * <p>Whether the container is privileged.</p>
784
+ */
785
+ Privileged?: boolean;
786
+ }
787
+ export declare namespace SecurityContext {
788
+ /**
789
+ * @internal
790
+ */
791
+ const filterSensitiveLog: (obj: SecurityContext) => any;
792
+ }
793
+ /**
794
+ * <p>Container volume mount.</p>
795
+ */
796
+ export interface VolumeMount {
797
+ /**
798
+ * <p>Volume mount name.</p>
799
+ */
800
+ Name?: string;
801
+ /**
802
+ * <p>Volume mount path.</p>
803
+ */
804
+ MountPath?: string;
805
+ }
806
+ export declare namespace VolumeMount {
807
+ /**
808
+ * @internal
809
+ */
810
+ const filterSensitiveLog: (obj: VolumeMount) => any;
811
+ }
812
+ /**
813
+ * <p>Details of a container.</p>
814
+ */
815
+ export interface Container {
816
+ /**
817
+ * <p>The container runtime (such as, Docker or containerd) used to run the container.</p>
818
+ */
819
+ ContainerRuntime?: string;
820
+ /**
821
+ * <p>Container ID.</p>
822
+ */
823
+ Id?: string;
824
+ /**
825
+ * <p>Container name.</p>
826
+ */
827
+ Name?: string;
828
+ /**
829
+ * <p>Container image.</p>
830
+ */
831
+ Image?: string;
832
+ /**
833
+ * <p>Part of the image name before the last slash. For example, imagePrefix for public.ecr.aws/amazonlinux/amazonlinux:latest would be public.ecr.aws/amazonlinux. If the image name is relative and does not have a slash, this field is empty.</p>
834
+ */
835
+ ImagePrefix?: string;
836
+ /**
837
+ * <p>Container volume mounts.</p>
838
+ */
839
+ VolumeMounts?: VolumeMount[];
840
+ /**
841
+ * <p>Container security context.</p>
842
+ */
843
+ SecurityContext?: SecurityContext;
844
+ }
845
+ export declare namespace Container {
846
+ /**
847
+ * @internal
848
+ */
849
+ const filterSensitiveLog: (obj: Container) => any;
850
+ }
851
+ /**
852
+ * <p>Describes whether Kubernetes audit logs are enabled as a data source.</p>
853
+ */
854
+ export interface KubernetesAuditLogsConfiguration {
855
+ /**
856
+ * <p>The status of Kubernetes audit logs as a data source.</p>
857
+ */
858
+ Enable: boolean | undefined;
859
+ }
860
+ export declare namespace KubernetesAuditLogsConfiguration {
861
+ /**
862
+ * @internal
863
+ */
864
+ const filterSensitiveLog: (obj: KubernetesAuditLogsConfiguration) => any;
865
+ }
866
+ /**
867
+ * <p>Describes whether any Kubernetes data sources are enabled.</p>
868
+ */
869
+ export interface KubernetesConfiguration {
870
+ /**
871
+ * <p>The status of Kubernetes audit logs as a data source.</p>
872
+ */
873
+ AuditLogs: KubernetesAuditLogsConfiguration | undefined;
874
+ }
875
+ export declare namespace KubernetesConfiguration {
876
+ /**
877
+ * @internal
878
+ */
879
+ const filterSensitiveLog: (obj: KubernetesConfiguration) => any;
880
+ }
711
881
  /**
712
882
  * <p>Describes whether S3 data event logs will be enabled as a data source.</p>
713
883
  */
@@ -731,6 +901,10 @@ export interface DataSourceConfigurations {
731
901
  * <p>Describes whether S3 data event logs are enabled as a data source.</p>
732
902
  */
733
903
  S3Logs?: S3LogsConfiguration;
904
+ /**
905
+ * <p>Describes whether any Kubernetes logs are enabled as data sources.</p>
906
+ */
907
+ Kubernetes?: KubernetesConfiguration;
734
908
  }
735
909
  export declare namespace DataSourceConfigurations {
736
910
  /**
@@ -973,6 +1147,21 @@ export interface CreateFilterRequest {
973
1147
  * <p>service.additionalInfo.threatListName</p>
974
1148
  * </li>
975
1149
  * <li>
1150
+ * <p>resource.s3BucketDetails.publicAccess.effectivePermissions</p>
1151
+ * </li>
1152
+ * <li>
1153
+ * <p>resource.s3BucketDetails.name</p>
1154
+ * </li>
1155
+ * <li>
1156
+ * <p>resource.s3BucketDetails.tags.key</p>
1157
+ * </li>
1158
+ * <li>
1159
+ * <p>resource.s3BucketDetails.tags.value</p>
1160
+ * </li>
1161
+ * <li>
1162
+ * <p>resource.s3BucketDetails.type</p>
1163
+ * </li>
1164
+ * <li>
976
1165
  * <p>service.archived</p>
977
1166
  * <p>When this attribute is set to TRUE, only archived findings are listed. When it's set
978
1167
  * to FALSE, only unarchived findings are listed. When this attribute is not set, all
@@ -1048,8 +1237,7 @@ export interface CreateIPSetRequest {
1048
1237
  */
1049
1238
  Format: IpSetFormat | string | undefined;
1050
1239
  /**
1051
- * <p>The URI of the file that contains the IPSet. For example:
1052
- * https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key.</p>
1240
+ * <p>The URI of the file that contains the IPSet. </p>
1053
1241
  */
1054
1242
  Location: string | undefined;
1055
1243
  /**
@@ -1109,7 +1297,7 @@ export declare namespace CreateMembersRequest {
1109
1297
  */
1110
1298
  export interface UnprocessedAccount {
1111
1299
  /**
1112
- * <p>The AWS account ID.</p>
1300
+ * <p>The Amazon Web Services account ID.</p>
1113
1301
  */
1114
1302
  AccountId: string | undefined;
1115
1303
  /**
@@ -1143,6 +1331,9 @@ export declare namespace CreateMembersResponse {
1143
1331
  export interface DestinationProperties {
1144
1332
  /**
1145
1333
  * <p>The ARN of the resource to publish to.</p>
1334
+ * <p>To specify an S3 bucket folder use the following format:
1335
+ * <code>arn:aws:s3:::DOC-EXAMPLE-BUCKET/myFolder/</code>
1336
+ * </p>
1146
1337
  */
1147
1338
  DestinationArn?: string;
1148
1339
  /**
@@ -1245,8 +1436,7 @@ export interface CreateThreatIntelSetRequest {
1245
1436
  */
1246
1437
  Format: ThreatIntelSetFormat | string | undefined;
1247
1438
  /**
1248
- * <p>The URI of the file that contains the ThreatIntelSet. For example:
1249
- * https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key.</p>
1439
+ * <p>The URI of the file that contains the ThreatIntelSet. </p>
1250
1440
  */
1251
1441
  Location: string | undefined;
1252
1442
  /**
@@ -1287,6 +1477,7 @@ export declare enum DataSource {
1287
1477
  CLOUD_TRAIL = "CLOUD_TRAIL",
1288
1478
  DNS_LOGS = "DNS_LOGS",
1289
1479
  FLOW_LOGS = "FLOW_LOGS",
1480
+ KUBERNETES_AUDIT_LOGS = "KUBERNETES_AUDIT_LOGS",
1290
1481
  S3_LOGS = "S3_LOGS"
1291
1482
  }
1292
1483
  /**
@@ -1319,6 +1510,36 @@ export declare namespace FlowLogsConfigurationResult {
1319
1510
  */
1320
1511
  const filterSensitiveLog: (obj: FlowLogsConfigurationResult) => any;
1321
1512
  }
1513
+ /**
1514
+ * <p>Describes whether Kubernetes audit logs are enabled as a data source.</p>
1515
+ */
1516
+ export interface KubernetesAuditLogsConfigurationResult {
1517
+ /**
1518
+ * <p>A value that describes whether Kubernetes audit logs are enabled as a data source.</p>
1519
+ */
1520
+ Status: DataSourceStatus | string | undefined;
1521
+ }
1522
+ export declare namespace KubernetesAuditLogsConfigurationResult {
1523
+ /**
1524
+ * @internal
1525
+ */
1526
+ const filterSensitiveLog: (obj: KubernetesAuditLogsConfigurationResult) => any;
1527
+ }
1528
+ /**
1529
+ * <p>Describes whether any Kubernetes logs will be enabled as a data source.</p>
1530
+ */
1531
+ export interface KubernetesConfigurationResult {
1532
+ /**
1533
+ * <p>Describes whether Kubernetes audit logs are enabled as a data source.</p>
1534
+ */
1535
+ AuditLogs: KubernetesAuditLogsConfigurationResult | undefined;
1536
+ }
1537
+ export declare namespace KubernetesConfigurationResult {
1538
+ /**
1539
+ * @internal
1540
+ */
1541
+ const filterSensitiveLog: (obj: KubernetesConfigurationResult) => any;
1542
+ }
1322
1543
  /**
1323
1544
  * <p>Describes whether S3 data event logs will be enabled as a data source.</p>
1324
1545
  */
@@ -1357,6 +1578,10 @@ export interface DataSourceConfigurationsResult {
1357
1578
  * source.</p>
1358
1579
  */
1359
1580
  S3Logs: S3LogsConfigurationResult | undefined;
1581
+ /**
1582
+ * <p>An object that contains information on the status of all Kubernetes data sources.</p>
1583
+ */
1584
+ Kubernetes?: KubernetesConfigurationResult;
1360
1585
  }
1361
1586
  export declare namespace DataSourceConfigurationsResult {
1362
1587
  /**
@@ -1366,7 +1591,7 @@ export declare namespace DataSourceConfigurationsResult {
1366
1591
  }
1367
1592
  export interface DeclineInvitationsRequest {
1368
1593
  /**
1369
- * <p>A list of account IDs of the AWS accounts that sent invitations to the current member
1594
+ * <p>A list of account IDs of the Amazon Web Services accounts that sent invitations to the current member
1370
1595
  * account that you want to decline invitations from.</p>
1371
1596
  */
1372
1597
  AccountIds: string[] | undefined;
@@ -1458,7 +1683,7 @@ export declare namespace DeleteFilterResponse {
1458
1683
  }
1459
1684
  export interface DeleteInvitationsRequest {
1460
1685
  /**
1461
- * <p>A list of account IDs of the AWS accounts that sent invitations to the current member
1686
+ * <p>A list of account IDs of the Amazon Web Services accounts that sent invitations to the current member
1462
1687
  * account that you want to delete invitations from.</p>
1463
1688
  */
1464
1689
  AccountIds: string[] | undefined;
@@ -1596,6 +1821,36 @@ export declare namespace DescribeOrganizationConfigurationRequest {
1596
1821
  */
1597
1822
  const filterSensitiveLog: (obj: DescribeOrganizationConfigurationRequest) => any;
1598
1823
  }
1824
+ /**
1825
+ * <p>The current configuration of Kubernetes audit logs as a data source for the organization.</p>
1826
+ */
1827
+ export interface OrganizationKubernetesAuditLogsConfigurationResult {
1828
+ /**
1829
+ * <p>Whether Kubernetes audit logs data source should be auto-enabled for new members joining the organization.</p>
1830
+ */
1831
+ AutoEnable: boolean | undefined;
1832
+ }
1833
+ export declare namespace OrganizationKubernetesAuditLogsConfigurationResult {
1834
+ /**
1835
+ * @internal
1836
+ */
1837
+ const filterSensitiveLog: (obj: OrganizationKubernetesAuditLogsConfigurationResult) => any;
1838
+ }
1839
+ /**
1840
+ * <p>The current configuration of all Kubernetes data sources for the organization.</p>
1841
+ */
1842
+ export interface OrganizationKubernetesConfigurationResult {
1843
+ /**
1844
+ * <p>The current configuration of Kubernetes audit logs as a data source for the organization.</p>
1845
+ */
1846
+ AuditLogs: OrganizationKubernetesAuditLogsConfigurationResult | undefined;
1847
+ }
1848
+ export declare namespace OrganizationKubernetesConfigurationResult {
1849
+ /**
1850
+ * @internal
1851
+ */
1852
+ const filterSensitiveLog: (obj: OrganizationKubernetesConfigurationResult) => any;
1853
+ }
1599
1854
  /**
1600
1855
  * <p>The current configuration of S3 data event logs as a data source for the
1601
1856
  * organization.</p>
@@ -1622,6 +1877,10 @@ export interface OrganizationDataSourceConfigurationsResult {
1622
1877
  * <p>Describes whether S3 data event logs are enabled as a data source.</p>
1623
1878
  */
1624
1879
  S3Logs: OrganizationS3LogsConfigurationResult | undefined;
1880
+ /**
1881
+ * <p>Describes the configuration of Kubernetes data sources.</p>
1882
+ */
1883
+ Kubernetes?: OrganizationKubernetesConfigurationResult;
1625
1884
  }
1626
1885
  export declare namespace OrganizationDataSourceConfigurationsResult {
1627
1886
  /**
@@ -1737,7 +1996,7 @@ export declare enum DetectorStatus {
1737
1996
  }
1738
1997
  export interface DisableOrganizationAdminAccountRequest {
1739
1998
  /**
1740
- * <p>The AWS Account ID for the organizations account to be disabled as a GuardDuty delegated
1999
+ * <p>The Amazon Web Services Account ID for the organizations account to be disabled as a GuardDuty delegated
1741
2000
  * administrator.</p>
1742
2001
  */
1743
2002
  AdminAccountId: string | undefined;
@@ -1807,9 +2066,63 @@ export declare namespace DisassociateMembersResponse {
1807
2066
  */
1808
2067
  const filterSensitiveLog: (obj: DisassociateMembersResponse) => any;
1809
2068
  }
2069
+ /**
2070
+ * <p>Contains information about a tag associated with the EC2 instance.</p>
2071
+ */
2072
+ export interface Tag {
2073
+ /**
2074
+ * <p>The EC2 instance tag key.</p>
2075
+ */
2076
+ Key?: string;
2077
+ /**
2078
+ * <p>The EC2 instance tag value.</p>
2079
+ */
2080
+ Value?: string;
2081
+ }
2082
+ export declare namespace Tag {
2083
+ /**
2084
+ * @internal
2085
+ */
2086
+ const filterSensitiveLog: (obj: Tag) => any;
2087
+ }
2088
+ /**
2089
+ * <p>Details about the EKS cluster involved in a Kubernetes finding.</p>
2090
+ */
2091
+ export interface EksClusterDetails {
2092
+ /**
2093
+ * <p>EKS cluster name.</p>
2094
+ */
2095
+ Name?: string;
2096
+ /**
2097
+ * <p>EKS cluster ARN.</p>
2098
+ */
2099
+ Arn?: string;
2100
+ /**
2101
+ * <p>The VPC ID to which the EKS cluster is attached.</p>
2102
+ */
2103
+ VpcId?: string;
2104
+ /**
2105
+ * <p>The EKS cluster status.</p>
2106
+ */
2107
+ Status?: string;
2108
+ /**
2109
+ * <p>The EKS cluster tags.</p>
2110
+ */
2111
+ Tags?: Tag[];
2112
+ /**
2113
+ * <p>The timestamp when the EKS cluster was created.</p>
2114
+ */
2115
+ CreatedAt?: Date;
2116
+ }
2117
+ export declare namespace EksClusterDetails {
2118
+ /**
2119
+ * @internal
2120
+ */
2121
+ const filterSensitiveLog: (obj: EksClusterDetails) => any;
2122
+ }
1810
2123
  export interface EnableOrganizationAdminAccountRequest {
1811
2124
  /**
1812
- * <p>The AWS Account ID for the organization account to be enabled as a GuardDuty delegated
2125
+ * <p>The Amazon Web Services Account ID for the organization account to be enabled as a GuardDuty delegated
1813
2126
  * administrator.</p>
1814
2127
  */
1815
2128
  AdminAccountId: string | undefined;
@@ -1995,25 +2308,6 @@ export declare namespace ProductCode {
1995
2308
  */
1996
2309
  const filterSensitiveLog: (obj: ProductCode) => any;
1997
2310
  }
1998
- /**
1999
- * <p>Contains information about a tag associated with the EC2 instance.</p>
2000
- */
2001
- export interface Tag {
2002
- /**
2003
- * <p>The EC2 instance tag key.</p>
2004
- */
2005
- Key?: string;
2006
- /**
2007
- * <p>The EC2 instance tag value.</p>
2008
- */
2009
- Value?: string;
2010
- }
2011
- export declare namespace Tag {
2012
- /**
2013
- * @internal
2014
- */
2015
- const filterSensitiveLog: (obj: Tag) => any;
2016
- }
2017
2311
  /**
2018
2312
  * <p>Contains information about the details of an instance.</p>
2019
2313
  */
@@ -2047,7 +2341,7 @@ export interface InstanceDetails {
2047
2341
  */
2048
2342
  InstanceType?: string;
2049
2343
  /**
2050
- * <p>The Amazon Resource Name (ARN) of the AWS Outpost. Only applicable to AWS Outposts
2344
+ * <p>The Amazon Resource Name (ARN) of the Amazon Web Services Outpost. Only applicable to Amazon Web Services Outposts
2051
2345
  * instances.</p>
2052
2346
  */
2053
2347
  OutpostArn?: string;
@@ -2078,6 +2372,121 @@ export declare namespace InstanceDetails {
2078
2372
  */
2079
2373
  const filterSensitiveLog: (obj: InstanceDetails) => any;
2080
2374
  }
2375
+ /**
2376
+ * <p>Details about the Kubernetes user involved in a Kubernetes finding.</p>
2377
+ */
2378
+ export interface KubernetesUserDetails {
2379
+ /**
2380
+ * <p>The username of the user who called the Kubernetes API.</p>
2381
+ */
2382
+ Username?: string;
2383
+ /**
2384
+ * <p>The user ID of the user who called the Kubernetes API.</p>
2385
+ */
2386
+ Uid?: string;
2387
+ /**
2388
+ * <p>The groups that include the user who called the Kubernetes API.</p>
2389
+ */
2390
+ Groups?: string[];
2391
+ }
2392
+ export declare namespace KubernetesUserDetails {
2393
+ /**
2394
+ * @internal
2395
+ */
2396
+ const filterSensitiveLog: (obj: KubernetesUserDetails) => any;
2397
+ }
2398
+ /**
2399
+ * <p>Represents a pre-existing file or directory on the host machine that the volume maps to.</p>
2400
+ */
2401
+ export interface HostPath {
2402
+ /**
2403
+ * <p>Path of the file or directory on the host that the volume maps to.</p>
2404
+ */
2405
+ Path?: string;
2406
+ }
2407
+ export declare namespace HostPath {
2408
+ /**
2409
+ * @internal
2410
+ */
2411
+ const filterSensitiveLog: (obj: HostPath) => any;
2412
+ }
2413
+ /**
2414
+ * <p>Volume used by the Kubernetes workload.</p>
2415
+ */
2416
+ export interface Volume {
2417
+ /**
2418
+ * <p>Volume name.</p>
2419
+ */
2420
+ Name?: string;
2421
+ /**
2422
+ * <p>Represents a pre-existing file or directory on the host machine that the volume maps to.</p>
2423
+ */
2424
+ HostPath?: HostPath;
2425
+ }
2426
+ export declare namespace Volume {
2427
+ /**
2428
+ * @internal
2429
+ */
2430
+ const filterSensitiveLog: (obj: Volume) => any;
2431
+ }
2432
+ /**
2433
+ * <p>Details about the Kubernetes workload involved in a Kubernetes finding.</p>
2434
+ */
2435
+ export interface KubernetesWorkloadDetails {
2436
+ /**
2437
+ * <p>Kubernetes workload name.</p>
2438
+ */
2439
+ Name?: string;
2440
+ /**
2441
+ * <p>Kubernetes workload type (e.g. Pod, Deployment, etc.).</p>
2442
+ */
2443
+ Type?: string;
2444
+ /**
2445
+ * <p>Kubernetes workload ID.</p>
2446
+ */
2447
+ Uid?: string;
2448
+ /**
2449
+ * <p>Kubernetes namespace that the workload is part of.</p>
2450
+ */
2451
+ Namespace?: string;
2452
+ /**
2453
+ * <p>Whether the hostNetwork flag is enabled for the pods included in the workload.</p>
2454
+ */
2455
+ HostNetwork?: boolean;
2456
+ /**
2457
+ * <p>Containers running as part of the Kubernetes workload.</p>
2458
+ */
2459
+ Containers?: Container[];
2460
+ /**
2461
+ * <p>Volumes used by the Kubernetes workload.</p>
2462
+ */
2463
+ Volumes?: Volume[];
2464
+ }
2465
+ export declare namespace KubernetesWorkloadDetails {
2466
+ /**
2467
+ * @internal
2468
+ */
2469
+ const filterSensitiveLog: (obj: KubernetesWorkloadDetails) => any;
2470
+ }
2471
+ /**
2472
+ * <p>Details about Kubernetes resources such as a Kubernetes user or workload resource involved in a Kubernetes finding.</p>
2473
+ */
2474
+ export interface KubernetesDetails {
2475
+ /**
2476
+ * <p>Details about the Kubernetes user involved in a Kubernetes finding.</p>
2477
+ */
2478
+ KubernetesUserDetails?: KubernetesUserDetails;
2479
+ /**
2480
+ * <p>Details about the Kubernetes workload involved in a Kubernetes finding.</p>
2481
+ */
2482
+ KubernetesWorkloadDetails?: KubernetesWorkloadDetails;
2483
+ }
2484
+ export declare namespace KubernetesDetails {
2485
+ /**
2486
+ * @internal
2487
+ */
2488
+ const filterSensitiveLog: (obj: KubernetesDetails) => any;
2489
+ }
2081
2490
  /**
2082
2491
  * <p>Contains information on the owner of the bucket.</p>
2083
2492
  */
@@ -2179,7 +2588,7 @@ export declare namespace S3BucketDetail {
2179
2588
  const filterSensitiveLog: (obj: S3BucketDetail) => any;
2180
2589
  }
2181
2590
  /**
2182
- * <p>Contains information about the AWS resource associated with the activity that prompted
2591
+ * <p>Contains information about the Amazon Web Services resource associated with the activity that prompted
2183
2592
  * GuardDuty to generate a finding.</p>
2184
2593
  */
2185
2594
  export interface Resource {
@@ -2198,7 +2607,15 @@ export interface Resource {
2198
2607
  */
2199
2608
  InstanceDetails?: InstanceDetails;
2200
2609
  /**
2201
- * <p>The type of AWS resource.</p>
2610
+ * <p>Details about the EKS cluster involved in a Kubernetes finding.</p>
2611
+ */
2612
+ EksClusterDetails?: EksClusterDetails;
2613
+ /**
2614
+ * <p>Details about the Kubernetes user and workload involved in a Kubernetes finding.</p>
2615
+ */
2616
+ KubernetesDetails?: KubernetesDetails;
2617
+ /**
2618
+ * <p>The type of Amazon Web Services resource.</p>
2202
2619
  */
2203
2620
  ResourceType?: string;
2204
2621
  }
@@ -2247,7 +2664,7 @@ export interface Service {
2247
2664
  */
2248
2665
  ResourceRole?: string;
2249
2666
  /**
2250
- * <p>The name of the AWS service (GuardDuty) that generated a finding.</p>
2667
+ * <p>The name of the Amazon Web Services service (GuardDuty) that generated a finding.</p>
2251
2668
  */
2252
2669
  ServiceName?: string;
2253
2670
  /**
@@ -2299,7 +2716,7 @@ export interface Finding {
2299
2716
  */
2300
2717
  Region: string | undefined;
2301
2718
  /**
2302
- * <p>Contains information about the AWS resource associated with the activity that prompted
2719
+ * <p>Contains information about the Amazon Web Services resource associated with the activity that prompted
2303
2720
  * GuardDuty to generate a finding.</p>
2304
2721
  */
2305
2722
  Resource: Resource | undefined;
@@ -2599,8 +3016,7 @@ export interface GetIPSetResponse {
2599
3016
  */
2600
3017
  Format: IpSetFormat | string | undefined;
2601
3018
  /**
2602
- * <p>The URI of the file that contains the IPSet. For example:
2603
- * https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key.</p>
3019
+ * <p>The URI of the file that contains the IPSet.</p>
2604
3020
  */
2605
3021
  Location: string | undefined;
2606
3022
  /**
@@ -2832,8 +3248,7 @@ export interface GetThreatIntelSetResponse {
2832
3248
  */
2833
3249
  Format: ThreatIntelSetFormat | string | undefined;
2834
3250
  /**
2835
- * <p>The URI of the file that contains the ThreatIntelSet. For example:
2836
- * https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key.</p>
3251
+ * <p>The URI of the file that contains the ThreatIntelSet. </p>
2837
3252
  */
2838
3253
  Location: string | undefined;
2839
3254
  /**
@@ -2978,11 +3393,11 @@ export declare namespace UsageDataSourceResult {
2978
3393
  const filterSensitiveLog: (obj: UsageDataSourceResult) => any;
2979
3394
  }
2980
3395
  /**
2981
- * <p>Contains information on the sum of usage based on an AWS resource.</p>
3396
+ * <p>Contains information on the sum of usage based on an Amazon Web Services resource.</p>
2982
3397
  */
2983
3398
  export interface UsageResourceResult {
2984
3399
  /**
2985
- * <p>The AWS resource that generated usage.</p>
3400
+ * <p>The Amazon Web Services resource that generated usage.</p>
2986
3401
  */
2987
3402
  Resource?: string;
2988
3403
  /**
@@ -3282,9 +3697,6 @@ export interface ListFindingsRequest {
3282
3697
  * <p>service.action.networkConnectionAction.protocol</p>
3283
3698
  * </li>
3284
3699
  * <li>
3285
- * <p>service.action.networkConnectionAction.remoteIpDetails.city.cityName</p>
3286
- * </li>
3287
- * <li>
3288
3700
  * <p>service.action.networkConnectionAction.remoteIpDetails.country.countryName</p>
3289
3701
  * </li>
3290
3702
  * <li>
@@ -3922,8 +4334,7 @@ export interface UpdateIPSetRequest {
3922
4334
  */
3923
4335
  Name?: string;
3924
4336
  /**
3925
- * <p>The updated URI of the file that contains the IPSet. For example:
3926
- * https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key.</p>
4337
+ * <p>The updated URI of the file that contains the IPSet. </p>
3927
4338
  */
3928
4339
  Location?: string;
3929
4340
  /**
@@ -3978,6 +4389,37 @@ export declare namespace UpdateMemberDetectorsResponse {
3978
4389
  */
3979
4390
  const filterSensitiveLog: (obj: UpdateMemberDetectorsResponse) => any;
3980
4391
  }
4392
+ /**
4393
+ * <p>Organization-wide Kubernetes audit logs configuration.</p>
4394
+ */
4395
+ export interface OrganizationKubernetesAuditLogsConfiguration {
4396
+ /**
4397
+ * <p>A value that contains information on whether Kubernetes audit logs should be enabled
4398
+ * automatically as a data source for the organization.</p>
4399
+ */
4400
+ AutoEnable: boolean | undefined;
4401
+ }
4402
+ export declare namespace OrganizationKubernetesAuditLogsConfiguration {
4403
+ /**
4404
+ * @internal
4405
+ */
4406
+ const filterSensitiveLog: (obj: OrganizationKubernetesAuditLogsConfiguration) => any;
4407
+ }
4408
+ /**
4409
+ * <p>Organization-wide Kubernetes data sources configurations.</p>
4410
+ */
4411
+ export interface OrganizationKubernetesConfiguration {
4412
+ /**
4413
+ * <p>Whether Kubernetes audit logs data source should be auto-enabled for new members joining the organization.</p>
4414
+ */
4415
+ AuditLogs: OrganizationKubernetesAuditLogsConfiguration | undefined;
4416
+ }
4417
+ export declare namespace OrganizationKubernetesConfiguration {
4418
+ /**
4419
+ * @internal
4420
+ */
4421
+ const filterSensitiveLog: (obj: OrganizationKubernetesConfiguration) => any;
4422
+ }
3981
4423
  /**
3982
4424
  * <p>Describes whether S3 data event logs will be automatically enabled for new members of the
3983
4425
  * organization.</p>
@@ -4005,6 +4447,10 @@ export interface OrganizationDataSourceConfigurations {
4005
4447
  * organization.</p>
4006
4448
  */
4007
4449
  S3Logs?: OrganizationS3LogsConfiguration;
4450
+ /**
4451
+ * <p>Describes the configuration of Kubernetes data sources for new members of the organization.</p>
4452
+ */
4453
+ Kubernetes?: OrganizationKubernetesConfiguration;
4008
4454
  }
4009
4455
  export declare namespace OrganizationDataSourceConfigurations {
4010
4456
  /**