Class: Aws::Repostspace::Types::ValidationExceptionField

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

Overview

Stores information about a field that’s passed inside a request that resulted in an exception.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

The name of the field.

Returns:

  • (String)


777
778
779
780
781
782
# File 'lib/aws-sdk-repostspace/types.rb', line 777

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

#nameString

Message describing why the field failed validation.

Returns:

  • (String)


777
778
779
780
781
782
# File 'lib/aws-sdk-repostspace/types.rb', line 777

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