Class: Aws::ObservabilityAdmin::Types::ValidationError

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

Overview

Represents a detailed validation error with message, reason, and field mapping for comprehensive error reporting.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#field_mapHash<String,String>

A mapping of field names to specific validation issues within the configuration.

Returns:

  • (Hash<String,String>)


2432
2433
2434
2435
2436
2437
2438
# File 'lib/aws-sdk-observabilityadmin/types.rb', line 2432

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

#messageString

The error message describing the validation issue.

Returns:

  • (String)


2432
2433
2434
2435
2436
2437
2438
# File 'lib/aws-sdk-observabilityadmin/types.rb', line 2432

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

#reasonString

The reason code or category for the validation error.

Returns:

  • (String)


2432
2433
2434
2435
2436
2437
2438
# File 'lib/aws-sdk-observabilityadmin/types.rb', line 2432

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