Class: Aws::CodeBuild::Types::PhaseContext
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::PhaseContext
- Includes:
- Structure
- Defined in:
- 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.
3751 3752 3753 3754 3755 3756 |
# File 'lib/aws-sdk-codebuild/types.rb', line 3751 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.
3751 3752 3753 3754 3755 3756 |
# File 'lib/aws-sdk-codebuild/types.rb', line 3751 class PhaseContext < Struct.new( :status_code, :message) SENSITIVE = [] include Aws::Structure end |