Amazon GuardDuty · Schema
DescribeMalwareScansRequest
DescribeMalwareScansRequest schema from Amazon GuardDuty API
Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection
Properties
| Name | Type | Description |
|---|---|---|
| NextToken | object | |
| MaxResults | object | |
| FilterCriteria | object | |
| SortCriteria | 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-describe-malware-scans-request-schema.json",
"title": "DescribeMalwareScansRequest",
"description": "DescribeMalwareScansRequest schema from Amazon GuardDuty API",
"type": "object",
"properties": {
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"xml": {
"name": "nextToken"
},
"description": "You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the list action. For subsequent calls to the action, fill nextToken in the request with the value of NextToken from the previous response to continue listing data."
}
]
},
"MaxResults": {
"allOf": [
{
"$ref": "#/components/schemas/IntegerValueWithMax"
},
{
"xml": {
"name": "maxResults"
},
"description": "You can use this parameter to indicate the maximum number of items that you want in the response. The default value is 50. The maximum value is 50."
}
]
},
"FilterCriteria": {
"allOf": [
{
"$ref": "#/components/schemas/FilterCriteria"
},
{
"xml": {
"name": "filterCriteria"
},
"description": "Represents the criteria to be used in the filter for describing scan entries."
}
]
},
"SortCriteria": {
"allOf": [
{
"$ref": "#/components/schemas/SortCriteria"
},
{
"xml": {
"name": "sortCriteria"
},
"description": "Represents the criteria used for sorting scan entries. The <a href=\"https://docs.aws.amazon.com/guardduty/latest/APIReference/API_SortCriteria.html#guardduty-Type-SortCriteria-attributeName\"> <code>attributeName</code> </a> is required and it must be <code>scanStartTime</code>."
}
]
}
}
}