Interface CfnDetector.FeatureConfigurationsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDetector.FeatureConfigurationsProperty.Jsii$Proxy
Enclosing class:
CfnDetector

@Stability(Stable) public static interface CfnDetector.FeatureConfigurationsProperty extends software.amazon.jsii.JsiiSerializable
Describes the configuration for a feature.

Although the Required field associated with the following properties specifies No , if you provide information for Name , you will need to provide the information for Status too. For information about the available feature configurations, see DetectorFeatureConfiguration .

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.*;
 FeatureConfigurationsProperty featureConfigurationsProperty = FeatureConfigurationsProperty.builder()
         .additionalConfiguration(List.of(FeatureAdditionalConfigurationProperty.builder()
                 .name("name")
                 .status("status")
                 .build()))
         .name("name")
         .status("status")
         .build();