interface CFNFeatureConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Mixins.CfnDetectorPropsMixin.CFNFeatureConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/mixins#CfnDetectorPropsMixin_CFNFeatureConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.mixins.CfnDetectorPropsMixin.CFNFeatureConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_guardduty.mixins.CfnDetectorPropsMixin.CFNFeatureConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_guardduty » mixins » CfnDetectorPropsMixin » CFNFeatureConfigurationProperty |
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 { mixins as guardduty_mixins } from '@aws-cdk/mixins-preview/aws-guardduty';
const cFNFeatureConfigurationProperty: guardduty_mixins.CfnDetectorPropsMixin.CFNFeatureConfigurationProperty = {
additionalConfiguration: [{
name: 'name',
status: 'status',
}],
name: 'name',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | IResolvable | (IResolvable | CFNFeature)[] | Information about the additional configuration of a feature in your account. |
| name? | string | Name of the feature. |
| status? | string | Status of the feature configuration. |
additionalConfiguration?
Type:
IResolvable | (IResolvable | CFNFeature)[]
(optional)
Information about the additional configuration of a feature in your account.
name?
Type:
string
(optional)
Name of the feature.
For a list of allowed values, see DetectorFeatureConfiguration in the GuardDuty API Reference .
status?
Type:
string
(optional)
Status of the feature configuration.

.NET
Go
Java
Python
TypeScript