plugins
Creates, updates, deletes, gets or lists a plugins resource.
Overview
| Name | plugins |
| Type | Resource |
| Id | aws.migrationhuborchestrator.plugins |
Fields
The following fields are returned by SELECT queries:
- list_plugins
| Name | Datatype | Description |
|---|---|---|
hostname | string | The name of the host. |
ip_address | string | The IP address at which the plugin is located. (pattern: <code>(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])</code>) |
plugin_id | string | The ID of the plugin. (pattern: <code>.\S.</code>) |
registered_time | string | The time at which the plugin was registered. |
status | string | The status of the plugin. (HEALTHY, UNHEALTHY) |
version | string | The version of the plugin. (pattern: <code>.*</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_plugins | select | region | maxResults, nextToken | List AWS Migration Hub Orchestrator plugins. |
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) |
maxResults | integer | The maximum number of plugins that can be returned. |
nextToken | string | The pagination token. |
SELECT examples
- list_plugins
List AWS Migration Hub Orchestrator plugins.
SELECT
hostname,
ip_address,
plugin_id,
registered_time,
status,
version
FROM aws.migrationhuborchestrator.plugins
WHERE region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;