aws.greengrassv2.get_core_device
Example SQL Queries
SELECT * FROMaws.greengrassv2.get_core_deviceWHERE"core_device_thing_name" = 'VALUE';Description
Retrieves metadata for a Greengrass core device.
IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core software isn't running on the device, or if device isn't connected to the Amazon Web Services Cloud, then the reported status of that device might not reflect its current status. The status timestamp indicates when the device status was last updated.
Core devices send status updates at the following times:
When the IoT Greengrass Core software starts
When the core device receives a deployment from the Amazon Web Services Cloud
When the status of any component on the core device becomes BROKEN
At a regular interval that you can configure, which defaults to 24 hours
For IoT Greengrass Core v2.7.0, the core device sends status updates upon local deployment and cloud deployment
Table Definition
| Column Name | Column Data Type |
|---|---|
| core_device_thing_name Required Input Column The name of the core device. This is also the name of the IoT thing. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| architecture The computer architecture of the core device. | VARCHAR |
| core_version The version of the IoT Greengrass Core software that the core device runs. This version is equivalent to the version of the Greengrass nucleus component that runs on the core device. For more information, see the Greengrass nucleus component in the IoT Greengrass V2 Developer Guide. | VARCHAR |
| last_status_update_timestamp The time at which the core device's status last updated, expressed in ISO 8601 format. | TIMESTAMP_S |
| platform The operating system platform that the core device runs. | VARCHAR |
| status The status of the core device. The core device status can be:
| VARCHAR |
| tags A list of key-value pairs that contain metadata for the resource. For more information, see Tag your resources in the IoT Greengrass V2 Developer Guide. | MAP(VARCHAR, VARCHAR) |