Class: Aws::ObservabilityAdmin::Types::ValidationError
- Inherits:
-
Struct
- Object
- Struct
- Aws::ObservabilityAdmin::Types::ValidationError
- 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
-
#field_map ⇒ Hash<String,String>
A mapping of field names to specific validation issues within the configuration.
-
#message ⇒ String
The error message describing the validation issue.
-
#reason ⇒ String
The reason code or category for the validation error.
Instance Attribute Details
#field_map ⇒ Hash<String,String>
A mapping of field names to specific validation issues within the configuration.
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 |
#message ⇒ String
The error message describing the validation issue.
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 |
#reason ⇒ String
The reason code or category for the validation error.
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 |