@Stability(value=Stable)
public static interface CfnDetector.CFNDataSourceConfigurationsProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDetector.CFNDataSourceConfigurationsProperty.Builder
A builder for
CfnDetector.CFNDataSourceConfigurationsProperty |
static class |
CfnDetector.CFNDataSourceConfigurationsProperty.Jsii$Proxy
An implementation for
CfnDetector.CFNDataSourceConfigurationsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDetector.CFNDataSourceConfigurationsProperty.Builder |
builder() |
default Object |
getKubernetes()
Describes which Kuberentes data sources are enabled for a detector.
|
default Object |
getMalwareProtection()
`CfnDetector.CFNDataSourceConfigurationsProperty.MalwareProtection`.
|
default Object |
getS3Logs()
Describes whether S3 data event logs are enabled as a data source.
|
@Stability(value=Stable) @Nullable default Object getKubernetes()
@Stability(value=Stable) @Nullable default Object getMalwareProtection()
@Stability(value=Stable) @Nullable default Object getS3Logs()
@Stability(value=Stable) static CfnDetector.CFNDataSourceConfigurationsProperty.Builder builder()
Copyright © 2022. All rights reserved.