Class: Aws::SageMaker::Types::ErrorInfo

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#codeString

The error code for an invalid or failed operation.

Returns:

  • (String)


21202
21203
21204
21205
21206
21207
# File 'lib/aws-sdk-sagemaker/types.rb', line 21202

class ErrorInfo < Struct.new(
  :code,
  :reason)
  SENSITIVE = []
  include Aws::Structure
end

#reasonString

The failure reason for the operation.

Returns:

  • (String)


21202
21203
21204
21205
21206
21207
# File 'lib/aws-sdk-sagemaker/types.rb', line 21202

class ErrorInfo < Struct.new(
  :code,
  :reason)
  SENSITIVE = []
  include Aws::Structure
end