Class: Aws::SageMaker::Types::ErrorInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ErrorInfo
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
This is an error field object that contains the error code and the reason for an operation failure.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ String
The error code for an invalid or failed operation.
-
#reason ⇒ String
The failure reason for the operation.
Instance Attribute Details
#code ⇒ String
The error code for an invalid or failed operation.
24319 24320 24321 24322 24323 24324 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 24319 class ErrorInfo < Struct.new( :code, :reason) SENSITIVE = [] include Aws::Structure end |
#reason ⇒ String
The failure reason for the operation.
24319 24320 24321 24322 24323 24324 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 24319 class ErrorInfo < Struct.new( :code, :reason) SENSITIVE = [] include Aws::Structure end |