Class: Aws::CodeBuild::Types::PhaseContext
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::PhaseContext
- Defined in:
- gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb
Overview
Additional information about a build phase that has an error. You can use this information for troubleshooting.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message ⇒ String
An explanation of the build phase's context.
-
#status_code ⇒ String
The status code for the context of the build phase.
Instance Attribute Details
#message ⇒ String
An explanation of the build phase's context. This might include a command ID and an exit code.
3800 3801 3802 3803 3804 3805 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 3800 class PhaseContext < Struct.new( :status_code, :message) SENSITIVE = [] include Aws::Structure end |
#status_code ⇒ String
The status code for the context of the build phase.
3800 3801 3802 3803 3804 3805 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 3800 class PhaseContext < Struct.new( :status_code, :message) SENSITIVE = [] include Aws::Structure end |