You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::CodePipeline::Types::PutThirdPartyJobFailureResultInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::PutThirdPartyJobFailureResultInput
- Defined in:
- (unknown)
Overview
When passing PutThirdPartyJobFailureResultInput as input to an Aws::Client method, you can use a vanilla Hash:
{
job_id: "ThirdPartyJobId", # required
client_token: "ClientToken", # 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 PutThirdPartyJobFailureResult
action.
Instance Attribute Summary collapse
-
#client_token ⇒ String
The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
-
#failure_details ⇒ Types::FailureDetails
Represents information about failure details.
-
#job_id ⇒ String
The ID of the job that failed.
Instance Attribute Details
#client_token ⇒ String
The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.
#failure_details ⇒ Types::FailureDetails
Represents information about failure details.
#job_id ⇒ String
The ID of the job that failed. This is the same ID returned from
PollForThirdPartyJobs
.