Interface CfnDetector.CFNDataSourceConfigurationsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDetector.CFNDataSourceConfigurationsProperty.Jsii$Proxy
- Enclosing class:
- CfnDetector
@Stability(Stable)
public static interface CfnDetector.CFNDataSourceConfigurationsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.guardduty.*;
CFNDataSourceConfigurationsProperty cFNDataSourceConfigurationsProperty = CFNDataSourceConfigurationsProperty.builder()
.kubernetes(CFNKubernetesConfigurationProperty.builder()
.auditLogs(CFNKubernetesAuditLogsConfigurationProperty.builder()
.enable(false)
.build())
.build())
.malwareProtection(CFNMalwareProtectionConfigurationProperty.builder()
.scanEc2InstanceWithFindings(CFNScanEc2InstanceWithFindingsConfigurationProperty.builder()
.ebsVolumes(false)
.build())
.build())
.s3Logs(CFNS3LogsConfigurationProperty.builder()
.enable(false)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDetector.CFNDataSourceConfigurationsPropertystatic final classAn implementation forCfnDetector.CFNDataSourceConfigurationsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKubernetes
Describes which Kubernetes data sources are enabled for a detector. -
getMalwareProtection
Describes whether Malware Protection will be enabled as a data source. -
getS3Logs
Describes whether S3 data event logs are enabled as a data source. -
builder
-