Class: Aws::GreengrassV2::Types::CloudComponentStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::CloudComponentStatus
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-greengrassv2/types.rb
Overview
Contains the status of a component version in the IoT Greengrass service.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#component_state ⇒ String
The state of the component version.
-
#errors ⇒ Hash<String,String>
A dictionary of errors that communicate why the component version is in an error state.
-
#message ⇒ String
A message that communicates details, such as errors, about the status of the component version.
-
#vendor_guidance ⇒ String
The vendor guidance state for the component version.
-
#vendor_guidance_message ⇒ String
A message that communicates details about the vendor guidance state of the component version.
Instance Attribute Details
#component_state ⇒ String
The state of the component version.
260 261 262 263 264 265 266 267 268 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 260 class CloudComponentStatus < Struct.new( :component_state, :message, :errors, :vendor_guidance, :vendor_guidance_message) SENSITIVE = [] include Aws::Structure end |
#errors ⇒ Hash<String,String>
A dictionary of errors that communicate why the component version is in an error state. For example, if IoT Greengrass can’t access an artifact for the component version, then ‘errors` contains the artifact’s URI as a key, and the error message as the value for that key.
260 261 262 263 264 265 266 267 268 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 260 class CloudComponentStatus < Struct.new( :component_state, :message, :errors, :vendor_guidance, :vendor_guidance_message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
A message that communicates details, such as errors, about the status of the component version.
260 261 262 263 264 265 266 267 268 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 260 class CloudComponentStatus < Struct.new( :component_state, :message, :errors, :vendor_guidance, :vendor_guidance_message) SENSITIVE = [] include Aws::Structure end |
#vendor_guidance ⇒ String
The vendor guidance state for the component version. This state indicates whether the component version has any issues that you should consider before you deploy it. The vendor guidance state can be:
-
‘ACTIVE` – This component version is available and recommended for use.
-
‘DISCONTINUED` – This component version has been discontinued by its publisher. You can deploy this component version, but we recommend that you use a different version of this component.
-
‘DELETED` – This component version has been deleted by its publisher, so you can’t deploy it. If you have any existing deployments that specify this component version, those deployments will fail.
260 261 262 263 264 265 266 267 268 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 260 class CloudComponentStatus < Struct.new( :component_state, :message, :errors, :vendor_guidance, :vendor_guidance_message) SENSITIVE = [] include Aws::Structure end |
#vendor_guidance_message ⇒ String
A message that communicates details about the vendor guidance state of the component version. This message communicates why a component version is discontinued or deleted.
260 261 262 263 264 265 266 267 268 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 260 class CloudComponentStatus < Struct.new( :component_state, :message, :errors, :vendor_guidance, :vendor_guidance_message) SENSITIVE = [] include Aws::Structure end |