Skip to main content

plugins

Creates, updates, deletes, gets or lists a plugins resource.

Overview

Nameplugins
TypeResource
Idaws.migrationhuborchestrator.plugins

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
hostnamestringThe name of the host.
ip_addressstringThe 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_idstringThe ID of the plugin. (pattern: <code>.\S.</code>)
registered_timestringThe time at which the plugin was registered.
statusstringThe status of the plugin. (HEALTHY, UNHEALTHY)
versionstringThe version of the plugin. (pattern: <code>.*</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_pluginsselectregionmaxResults, nextTokenList 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of plugins that can be returned.
nextTokenstringThe pagination token.

SELECT examples

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 }}'
;