Class: Aws::Account::Types::ValidationExceptionField

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

Overview

The input failed to meet the constraints specified by the Amazon Web Services service in a specified field.

Constant Summary collapse

SENSITIVE =
[:message]

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

A message about the validation exception.

Returns:

  • (String)


957
958
959
960
961
962
# File 'lib/aws-sdk-account/types.rb', line 957

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

#nameString

The field name where the invalid entry was detected.

Returns:

  • (String)


957
958
959
960
961
962
# File 'lib/aws-sdk-account/types.rb', line 957

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