Class: Aws::GreengrassV2::Types::CoreDevice

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb

Overview

Contains information about a Greengrass core device, which is an IoT thing that runs the IoT Greengrass Core software.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#core_device_thing_nameString

The name of the core device. This is also the name of the IoT thing.

Returns:

  • (String)


714
715
716
717
718
719
720
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 714

class CoreDevice < Struct.new(
  :core_device_thing_name,
  :status,
  :last_status_update_timestamp)
  SENSITIVE = []
  include Aws::Structure
end

#last_status_update_timestampTime

The time at which the core device's status last updated, expressed in ISO 8601 format.

Returns:

  • (Time)


714
715
716
717
718
719
720
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 714

class CoreDevice < Struct.new(
  :core_device_thing_name,
  :status,
  :last_status_update_timestamp)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

The status of the core device. Core devices can have the following statuses:

  • HEALTHY – The IoT Greengrass Core software and all components run on the core device without issue.

  • UNHEALTHY – The IoT Greengrass Core software or a component is in a failed state on the core device.

Returns:

  • (String)


714
715
716
717
718
719
720
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 714

class CoreDevice < Struct.new(
  :core_device_thing_name,
  :status,
  :last_status_update_timestamp)
  SENSITIVE = []
  include Aws::Structure
end