Class: Aws::CodeBuild::Types::PhaseContext

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#messageString

An explanation of the build phase’s context. This might include a command ID and an exit code.

Returns:

  • (String)


3577
3578
3579
3580
3581
3582
# File 'lib/aws-sdk-codebuild/types.rb', line 3577

class PhaseContext < Struct.new(
  :status_code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end

#status_codeString

The status code for the context of the build phase.

Returns:

  • (String)


3577
3578
3579
3580
3581
3582
# File 'lib/aws-sdk-codebuild/types.rb', line 3577

class PhaseContext < Struct.new(
  :status_code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end