Class: Aws::Imagebuilder::Types::ComponentState

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-imagebuilder/types.rb

Overview

A group of fields that describe the current status of components.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#reason ⇒ String

Describes how or why the component changed state.

Returns:

  • (String)


598
599
600
601
602
603
# File 'lib/aws-sdk-imagebuilder/types.rb', line 598

class ComponentState < Struct.new(
  :status,
  :reason)
  SENSITIVE = []
  include Aws::Structure
end

#status ⇒ String

The current state of the component. Components with a status of DEPRECATED or DISABLED can't be added to new recipes.

Returns:

  • (String)


598
599
600
601
602
603
# File 'lib/aws-sdk-imagebuilder/types.rb', line 598

class ComponentState < Struct.new(
  :status,
  :reason)
  SENSITIVE = []
  include Aws::Structure
end