Class: Aws::PCS::Types::ErrorInfo

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-pcs/types.rb

Overview

An error that occurred during resource creation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

The short-form error code.

Returns:

  • (String)


1110
1111
1112
1113
1114
1115
# File 'lib/aws-sdk-pcs/types.rb', line 1110

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

#messageString

The detailed error information.

Returns:

  • (String)


1110
1111
1112
1113
1114
1115
# File 'lib/aws-sdk-pcs/types.rb', line 1110

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