Class: Aws::Greengrass::Types::Core
- Inherits:
-
Struct
- Object
- Struct
- Aws::Greengrass::Types::Core
- Defined in:
- gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb
Overview
Information about a core.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_arn ⇒ String
The ARN of the certificate associated with the core.
-
#id ⇒ String
A descriptive or arbitrary ID for the core.
-
#sync_shadow ⇒ Boolean
If true, the core's local shadow is automatically synced with the cloud.
-
#thing_arn ⇒ String
The ARN of the thing which is the core.
Instance Attribute Details
#certificate_arn ⇒ String
The ARN of the certificate associated with the core.
290 291 292 293 294 295 296 297 |
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 290 class Core < Struct.new( :certificate_arn, :id, :sync_shadow, :thing_arn) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
A descriptive or arbitrary ID for the core. This value must be unique within the core definition version. Max length is 128 characters with pattern ''[a-zA-Z0-9:_-]+''.
290 291 292 293 294 295 296 297 |
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 290 class Core < Struct.new( :certificate_arn, :id, :sync_shadow, :thing_arn) SENSITIVE = [] include Aws::Structure end |
#sync_shadow ⇒ Boolean
If true, the core's local shadow is automatically synced with the cloud.
290 291 292 293 294 295 296 297 |
# File 'gems/aws-sdk-greengrass/lib/aws-sdk-greengrass/types.rb', line 290 class Core < Struct.new( :certificate_arn, :id, :sync_shadow, :thing_arn) SENSITIVE = [] include Aws::Structure end |