Class: Aws::Imagebuilder::Types::ImageState
- Inherits:
-
Struct
- Object
- Struct
- Aws::Imagebuilder::Types::ImageState
- Defined in:
- gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb
Overview
Image status and the reason for that status.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failure_context ⇒ Types::ImageFailureContext
The details about the failure, for images that failed to complete.
-
#reason ⇒ String
The reason for the status of the image.
-
#status ⇒ String
The status of the image.
Instance Attribute Details
#failure_context ⇒ Types::ImageFailureContext
The details about the failure, for images that failed to complete.
Image Builder only sets this property when the image status is
FAILED.
4632 4633 4634 4635 4636 4637 4638 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4632 class ImageState < Struct.new( :status, :reason, :failure_context) SENSITIVE = [] include Aws::Structure end |
#reason ⇒ String
The reason for the status of the image.
4632 4633 4634 4635 4636 4637 4638 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4632 class ImageState < Struct.new( :status, :reason, :failure_context) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the image.
4632 4633 4634 4635 4636 4637 4638 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 4632 class ImageState < Struct.new( :status, :reason, :failure_context) SENSITIVE = [] include Aws::Structure end |