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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDetector.FeatureConfigurationsProperty
static final class
An implementation forCfnDetector.FeatureConfigurationsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdditionalConfiguration
Additional configuration of the feature. -
getName
Name of the feature. -
getStatus
Status of the feature. -
builder
-