Class: Aws::Greengrass::Types::Device

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-greengrass/types.rb

Overview

Information about a device.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_arnString

The ARN of the certificate associated with the device.

Returns:

  • (String)


1537
1538
1539
1540
1541
1542
1543
1544
# File 'lib/aws-sdk-greengrass/types.rb', line 1537

class Device < Struct.new(
  :certificate_arn,
  :id,
  :sync_shadow,
  :thing_arn)
  SENSITIVE = []
  include Aws::Structure
end

#idString

A descriptive or arbitrary ID for the device. This value must be unique within the device definition version. Max length is 128 characters with pattern ”[a-zA-Z0-9:_-]+”.

Returns:

  • (String)


1537
1538
1539
1540
1541
1542
1543
1544
# File 'lib/aws-sdk-greengrass/types.rb', line 1537

class Device < Struct.new(
  :certificate_arn,
  :id,
  :sync_shadow,
  :thing_arn)
  SENSITIVE = []
  include Aws::Structure
end

#sync_shadowBoolean

If true, the device’s local shadow will be automatically synced with the cloud.

Returns:

  • (Boolean)


1537
1538
1539
1540
1541
1542
1543
1544
# File 'lib/aws-sdk-greengrass/types.rb', line 1537

class Device < Struct.new(
  :certificate_arn,
  :id,
  :sync_shadow,
  :thing_arn)
  SENSITIVE = []
  include Aws::Structure
end

#thing_arnString

The thing ARN of the device.

Returns:

  • (String)


1537
1538
1539
1540
1541
1542
1543
1544
# File 'lib/aws-sdk-greengrass/types.rb', line 1537

class Device < Struct.new(
  :certificate_arn,
  :id,
  :sync_shadow,
  :thing_arn)
  SENSITIVE = []
  include Aws::Structure
end