Skip to main content

nodes

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

Overview

Namenodes
TypeResource
Idaws.ssm.nodes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
capture_timestring (date-time)The UTC timestamp for when the managed node data was last captured.
idstringThe ID of the managed node. (pattern: <code>(^i-(\w{8}|\w{17})$)|(^mi-\w{17}$)</code>)
node_typeobjectInformation about the type of node.
ownerobjectInformation about the ownership of the managed node.
regionstringThe Amazon Web Services Region that a managed node was created in or assigned to.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_nodesselectregionTakes in filters and returns a list of managed nodes matching the filter criteria.

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)

SELECT examples

Takes in filters and returns a list of managed nodes matching the filter criteria.

SELECT
capture_time,
id,
node_type,
owner,
region
FROM aws.ssm.nodes
WHERE region = '{{ region }}' -- required
;