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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-account/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)


792
793
794
795
796
797
# File 'gems/aws-sdk-account/lib/aws-sdk-account/types.rb', line 792

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

#nameString

The field name where the invalid entry was detected.

Returns:

  • (String)


792
793
794
795
796
797
# File 'gems/aws-sdk-account/lib/aws-sdk-account/types.rb', line 792

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