Class: Aws::Greengrass::Types::Device
- Inherits:
-
Struct
- Object
- Struct
- Aws::Greengrass::Types::Device
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-greengrass/types.rb
Overview
Information about a device.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_arn ⇒ String
The ARN of the certificate associated with the device.
-
#id ⇒ String
A descriptive or arbitrary ID for the device.
-
#sync_shadow ⇒ Boolean
If true, the device’s local shadow will be automatically synced with the cloud.
-
#thing_arn ⇒ String
The thing ARN of the device.
Instance Attribute Details
#certificate_arn ⇒ String
The ARN of the certificate associated with the device.
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 |
#id ⇒ String
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:_-]+”.
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_shadow ⇒ Boolean
If true, the device’s local shadow will be automatically synced with the cloud.
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 |