Class: Aws::Account::Types::ValidationException

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

Overview

The operation failed because one of the input parameters was invalid.

Constant Summary collapse

SENSITIVE =
[:message]

Instance Attribute Summary collapse

Instance Attribute Details

#field_listArray<Types::ValidationExceptionField>

The field where the invalid entry was detected.



771
772
773
774
775
776
777
# File 'gems/aws-sdk-account/lib/aws-sdk-account/types.rb', line 771

class ValidationException < Struct.new(
  :field_list,
  :message,
  :reason)
  SENSITIVE = [:message]
  include Aws::Structure
end

#messageString

The message that informs you about what was invalid about the request.

Returns:

  • (String)


771
772
773
774
775
776
777
# File 'gems/aws-sdk-account/lib/aws-sdk-account/types.rb', line 771

class ValidationException < Struct.new(
  :field_list,
  :message,
  :reason)
  SENSITIVE = [:message]
  include Aws::Structure
end

#reasonString

The reason that validation failed.

Returns:

  • (String)


771
772
773
774
775
776
777
# File 'gems/aws-sdk-account/lib/aws-sdk-account/types.rb', line 771

class ValidationException < Struct.new(
  :field_list,
  :message,
  :reason)
  SENSITIVE = [:message]
  include Aws::Structure
end