Class: Aws::CodePipeline::Types::FailureDetails

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

Overview

Note:

When making an API call, you may pass FailureDetails data as a hash:

{
  type: "JobFailed", # required, accepts JobFailed, ConfigurationError, PermissionError, RevisionOutOfSync, RevisionUnavailable, SystemUnavailable
  message: "Message", # required
  external_execution_id: "ExecutionId",
}

Represents information about failure details.

Instance Attribute Summary collapse

Instance Attribute Details

#external_execution_idString

The external ID of the run of the action that failed.

Returns:

  • (String)


1312
1313
1314
1315
1316
1317
# File 'lib/aws-sdk-codepipeline/types.rb', line 1312

class FailureDetails < Struct.new(
  :type,
  :message,
  :external_execution_id)
  include Aws::Structure
end

#messageString

The message about the failure.

Returns:

  • (String)


1312
1313
1314
1315
1316
1317
# File 'lib/aws-sdk-codepipeline/types.rb', line 1312

class FailureDetails < Struct.new(
  :type,
  :message,
  :external_execution_id)
  include Aws::Structure
end

#typeString

The type of the failure.

Returns:

  • (String)


1312
1313
1314
1315
1316
1317
# File 'lib/aws-sdk-codepipeline/types.rb', line 1312

class FailureDetails < Struct.new(
  :type,
  :message,
  :external_execution_id)
  include Aws::Structure
end