Class: Aws::Notifications::Types::ValidationExceptionField

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

A message with the reason for the validation exception error.

Returns:

  • (String)


3521
3522
3523
3524
3525
3526
# File 'lib/aws-sdk-notifications/types.rb', line 3521

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

#nameString

The field name where the invalid entry was detected.

Returns:

  • (String)


3521
3522
3523
3524
3525
3526
# File 'lib/aws-sdk-notifications/types.rb', line 3521

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