Amazon Resource Explorer · Schema
SearchRequest
SearchRequest schema from openapi
DiscoveryInventoryOperationsResource Management
Properties
| Name | Type | Description |
|---|---|---|
| QueryString | string | A string that includes keywords and filters to search for resources. |
| MaxResults | integer | The maximum number of results to include in the response. |
| NextToken | string | The token for the next page of results. |
| ViewArn | string | The ARN of the view to search. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-resource-explorer/refs/heads/main/json-schema/amazon-resource-explorer-openapi-search-request-schema.json",
"title": "SearchRequest",
"description": "SearchRequest schema from openapi",
"type": "object",
"properties": {
"QueryString": {
"type": "string",
"description": "A string that includes keywords and filters to search for resources."
},
"MaxResults": {
"type": "integer",
"description": "The maximum number of results to include in the response."
},
"NextToken": {
"type": "string",
"description": "The token for the next page of results."
},
"ViewArn": {
"type": "string",
"description": "The ARN of the view to search."
}
},
"required": [
"QueryString"
]
}