{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-structure/guardduty-scan-condition-pair-structure.json",
"name": "ScanConditionPair",
"description": "Represents key, value pair to be matched against given resource property.",
"type": "object",
"properties": {
"Key": {
"allOf": [
{
"$ref": "#/components/schemas/TagKey"
},
{
"xml": {
"name": "key"
},
"description": "Represents key in the map condition."
}
]
},
"Value": {
"allOf": [
{
"$ref": "#/components/schemas/TagValue"
},
{
"xml": {
"name": "value"
},
"description": "Represents optional value in the map condition. If not specified, only key will be matched."
}
]
}
},
"required": [
"Key"
]
}