Amazon GuardDuty · Schema
DetectorFeatureConfigurationResult
Contains information about a GuardDuty feature.
Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection
Properties
| Name | Type | Description |
|---|---|---|
| Name | object | |
| Status | object | |
| UpdatedAt | object | |
| AdditionalConfiguration | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-detector-feature-configuration-result-schema.json",
"title": "DetectorFeatureConfigurationResult",
"description": "Contains information about a GuardDuty feature.",
"type": "object",
"properties": {
"Name": {
"allOf": [
{
"$ref": "#/components/schemas/DetectorFeatureResult"
},
{
"xml": {
"name": "name"
},
"description": "Indicates the name of the feature that can be enabled for the detector."
}
]
},
"Status": {
"allOf": [
{
"$ref": "#/components/schemas/FeatureStatus"
},
{
"xml": {
"name": "status"
},
"description": "Indicates the status of the feature that is enabled for the detector."
}
]
},
"UpdatedAt": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"xml": {
"name": "updatedAt"
},
"description": "The timestamp at which the feature object was updated."
}
]
},
"AdditionalConfiguration": {
"allOf": [
{
"$ref": "#/components/schemas/DetectorAdditionalConfigurationResults"
},
{
"xml": {
"name": "additionalConfiguration"
},
"description": "Additional configuration for a resource."
}
]
}
}
}