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.
2530 2531 2532 2533 2534 2535 2536 |
# File 'lib/aws-sdk-observabilityadmin/types.rb', line 2530 class ValidationError < Struct.new( :message, :reason, :field_map) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
The error message describing the validation issue.
2530 2531 2532 2533 2534 2535 2536 |
# File 'lib/aws-sdk-observabilityadmin/types.rb', line 2530 class ValidationError < Struct.new( :message, :reason, :field_map) SENSITIVE = [] include Aws::Structure end |
#reason ⇒ String
The reason code or category for the validation error.
2530 2531 2532 2533 2534 2535 2536 |
# File 'lib/aws-sdk-observabilityadmin/types.rb', line 2530 class ValidationError < Struct.new( :message, :reason, :field_map) SENSITIVE = [] include Aws::Structure end |