discovery_summaries
Creates, updates, deletes, gets or lists a discovery_summaries resource.
Overview
| Name | discovery_summaries |
| Type | Resource |
| Id | aws.discovery.discovery_summaries |
Fields
The following fields are returned by SELECT queries:
- get_discovery_summary
| Name | Datatype | Description |
|---|---|---|
agent_summary | object | Details about discovered agents, including agent status and health. |
agentless_collector_summary | object | Details about Agentless Collector collectors, including status. |
applications | integer (int64) | The number of applications discovered. |
connector_summary | object | Details about discovered connectors, including connector status and health. |
me_collector_summary | object | Details about Migration Evaluator collectors, including collector status and health. |
servers | integer (int64) | The number of servers discovered. |
servers_mapped_to_applications | integer (int64) | The number of servers mapped to applications. |
servers_mappedto_tags | integer (int64) | The number of servers mapped to tags. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_discovery_summary | select | region | Retrieves a short summary of discovered assets. This API operation takes no request parameters and is called as is at the command prompt as shown in the example. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_discovery_summary
Retrieves a short summary of discovered assets. This API operation takes no request parameters and is called as is at the command prompt as shown in the example.
SELECT
agent_summary,
agentless_collector_summary,
applications,
connector_summary,
me_collector_summary,
servers,
servers_mapped_to_applications,
servers_mappedto_tags
FROM aws.discovery.discovery_summaries
WHERE region = '{{ region }}' -- required
;