Class: Aws::GreengrassV2::Types::Component
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::Component
- Defined in:
- gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb
Overview
Contains information about a component.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The [ARN][1] of the component version.
-
#component_name ⇒ String
The name of the component.
-
#latest_version ⇒ Types::ComponentLatestVersion
The latest version of the component and its details.
Instance Attribute Details
#arn ⇒ String
The ARN of the component version.
290 291 292 293 294 295 296 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 290 class Component < Struct.new( :arn, :component_name, :latest_version) SENSITIVE = [] include Aws::Structure end |
#component_name ⇒ String
The name of the component.
290 291 292 293 294 295 296 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 290 class Component < Struct.new( :arn, :component_name, :latest_version) SENSITIVE = [] include Aws::Structure end |
#latest_version ⇒ Types::ComponentLatestVersion
The latest version of the component and its details.
290 291 292 293 294 295 296 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 290 class Component < Struct.new( :arn, :component_name, :latest_version) SENSITIVE = [] include Aws::Structure end |