Class: Aws::IoTSiteWise::Types::PipelineExecutionStateDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::PipelineExecutionStateDetails
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
Additional information about the current execution status. Populated when the execution has terminated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ String
Classification of the failure.
-
#details ⇒ Array<Types::DetailedPipelineError>
Per-step error entries to help diagnose a failed execution.
-
#message ⇒ String
Human-readable description of the outcome.
Instance Attribute Details
#code ⇒ String
Classification of the failure. Present when the execution failed.
12348 12349 12350 12351 12352 12353 12354 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 12348 class PipelineExecutionStateDetails < Struct.new( :code, :message, :details) SENSITIVE = [] include Aws::Structure end |
#details ⇒ Array<Types::DetailedPipelineError>
Per-step error entries to help diagnose a failed execution. Present when the execution failed.
12348 12349 12350 12351 12352 12353 12354 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 12348 class PipelineExecutionStateDetails < Struct.new( :code, :message, :details) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
Human-readable description of the outcome. For a failed execution, this describes why it failed; for a cancelled execution, this is the reason you supplied when calling CancelPipelineExecution.
12348 12349 12350 12351 12352 12353 12354 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 12348 class PipelineExecutionStateDetails < Struct.new( :code, :message, :details) SENSITIVE = [] include Aws::Structure end |