Class: Aws::Wickr::Types::ErrorDetail

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb

Overview

Contains detailed error information explaining why an operation failed, including which field caused the error and the reason for the failure.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fieldString

The name of the field that contains an error or warning.

Returns:

  • (String)


1066
1067
1068
1069
1070
1071
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 1066

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

#reasonString

A detailed description of the error or warning.

Returns:

  • (String)


1066
1067
1068
1069
1070
1071
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 1066

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