You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing FailureDetails as input to an Aws::Client method, you can use a vanilla Hash:

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

Represents information about failure details.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#external_execution_idString

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

Returns:

  • (String)

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

#messageString

The message about the failure.

Returns:

  • (String)

    The message about the failure.

#typeString

The type of the failure.

Possible values:

  • JobFailed
  • ConfigurationError
  • PermissionError
  • RevisionOutOfSync
  • RevisionUnavailable
  • SystemUnavailable

Returns:

  • (String)

    The type of the failure.