Interface CfnDetector.CFNFeatureConfigurationProperty

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

@Stability(Stable) public static interface CfnDetector.CFNFeatureConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Information about the configuration of a feature in your account.

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.*;
 CFNFeatureConfigurationProperty cFNFeatureConfigurationProperty = CFNFeatureConfigurationProperty.builder()
         .name("name")
         .status("status")
         // the properties below are optional
         .additionalConfiguration(List.of(CFNFeatureAdditionalConfigurationProperty.builder()
                 .name("name")
                 .status("status")
                 .build()))
         .build();
 

See Also: