aws-cdk-lib.aws_guardduty.CfnDetector.CFNDataSourceConfigurationsProperty

interface CFNDataSourceConfigurationsProperty

LanguageType name
.NETAmazon.CDK.AWS.GuardDuty.CfnDetector.CFNDataSourceConfigurationsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsguardduty#CfnDetector_CFNDataSourceConfigurationsProperty
Javasoftware.amazon.awscdk.services.guardduty.CfnDetector.CFNDataSourceConfigurationsProperty
Pythonaws_cdk.aws_guardduty.CfnDetector.CFNDataSourceConfigurationsProperty
TypeScript aws-cdk-lib » aws_guardduty » CfnDetector » CFNDataSourceConfigurationsProperty

Describes whether S3 data event logs, Kubernetes audit logs, or Malware Protection will be enabled as a data source when the detector is created.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_guardduty as guardduty } from 'aws-cdk-lib';
const cFNDataSourceConfigurationsProperty: guardduty.CfnDetector.CFNDataSourceConfigurationsProperty = {
  kubernetes: {
    auditLogs: {
      enable: false,
    },
  },
  malwareProtection: {
    scanEc2InstanceWithFindings: {
      ebsVolumes: false,
    },
  },
  s3Logs: {
    enable: false,
  },
};

Properties

NameTypeDescription
kubernetes?IResolvable | CFNKubernetesConfigurationPropertyDescribes which Kubernetes data sources are enabled for a detector.
malwareProtection?IResolvable | CFNMalwareProtectionConfigurationPropertyDescribes whether Malware Protection will be enabled as a data source.
s3Logs?IResolvable | CFNS3LogsConfigurationPropertyDescribes whether S3 data event logs are enabled as a data source.

kubernetes?

Type: IResolvable | CFNKubernetesConfigurationProperty (optional)

Describes which Kubernetes data sources are enabled for a detector.


malwareProtection?

Type: IResolvable | CFNMalwareProtectionConfigurationProperty (optional)

Describes whether Malware Protection will be enabled as a data source.


s3Logs?

Type: IResolvable | CFNS3LogsConfigurationProperty (optional)

Describes whether S3 data event logs are enabled as a data source.