You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::CodePipeline::Types::PutJobFailureResultInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::PutJobFailureResultInput
- Defined in:
- (unknown)
Overview
Note:
When passing PutJobFailureResultInput as input to an Aws::Client method, you can use a vanilla Hash:
{
job_id: "JobId", # required
failure_details: { # required
type: "JobFailed", # required, accepts JobFailed, ConfigurationError, PermissionError, RevisionOutOfSync, RevisionUnavailable, SystemUnavailable
message: "Message", # required
external_execution_id: "ExecutionId",
},
}
Represents the input of a PutJobFailureResult
action.
Instance Attribute Summary collapse
-
#failure_details ⇒ Types::FailureDetails
The details about the failure of a job.
-
#job_id ⇒ String
The unique system-generated ID of the job that failed.
Instance Attribute Details
#failure_details ⇒ Types::FailureDetails
The details about the failure of a job.
#job_id ⇒ String
The unique system-generated ID of the job that failed. This is the same
ID returned from PollForJobs
.