Class: Aws::GreengrassV2::Types::ComponentCandidate
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::ComponentCandidate
- Defined in:
- gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb
Overview
Contains information about a component that is a candidate to deploy to a Greengrass core device.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#component_name ⇒ String
The name of the component.
-
#component_version ⇒ String
The version of the component.
-
#version_requirements ⇒ Hash<String,String>
The version requirements for the component's dependencies.
Instance Attribute Details
#component_name ⇒ String
The name of the component.
324 325 326 327 328 329 330 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 324 class ComponentCandidate < Struct.new( :component_name, :component_version, :version_requirements) SENSITIVE = [] include Aws::Structure end |
#component_version ⇒ String
The version of the component.
324 325 326 327 328 329 330 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 324 class ComponentCandidate < Struct.new( :component_name, :component_version, :version_requirements) SENSITIVE = [] include Aws::Structure end |
#version_requirements ⇒ Hash<String,String>
The version requirements for the component's dependencies. Greengrass core devices get the version requirements from component recipes.
IoT Greengrass V2 uses semantic version constraints. For more information, see Semantic Versioning.
324 325 326 327 328 329 330 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 324 class ComponentCandidate < Struct.new( :component_name, :component_version, :version_requirements) SENSITIVE = [] include Aws::Structure end |