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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDetector.CFNFeatureConfigurationProperty
static final class
An implementation forCfnDetector.CFNFeatureConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
Name of the feature.For a list of allowed values, see DetectorFeatureConfiguration in the GuardDuty API Reference .
- See Also:
-
getStatus
Status of the feature configuration.- See Also:
-
getAdditionalConfiguration
Information about the additional configuration of a feature in your account.- See Also:
-
builder
-