Class: Aws::CodePipeline::Types::FailureDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::FailureDetails
- Defined in:
- gems/aws-sdk-codepipeline/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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#external_execution_id ⇒ String
The external ID of the run of the action that failed.
-
#message ⇒ String
The message about the failure.
-
#type ⇒ String
The type of the failure.
Instance Attribute Details
#external_execution_id ⇒ String
The external ID of the run of the action that failed.
2180 2181 2182 2183 2184 2185 2186 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2180 class FailureDetails < Struct.new( :type, :message, :external_execution_id) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
The message about the failure.
2180 2181 2182 2183 2184 2185 2186 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2180 class FailureDetails < Struct.new( :type, :message, :external_execution_id) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of the failure.
2180 2181 2182 2183 2184 2185 2186 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2180 class FailureDetails < Struct.new( :type, :message, :external_execution_id) SENSITIVE = [] include Aws::Structure end |