Class: Aws::GroundStation::Types::EphemerisErrorReason
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::EphemerisErrorReason
- Defined in:
- gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb
Overview
Detailed error information for ephemeris validation failures.
Provides an error code and descriptive message to help diagnose and resolve validation issues.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_code ⇒ String
The error code identifying the type of validation failure.
-
#error_message ⇒ String
A human-readable message describing the validation failure.
Instance Attribute Details
#error_code ⇒ String
The error code identifying the type of validation failure.
See the Troubleshooting Invalid Ephemerides guide for error code details.
1752 1753 1754 1755 1756 1757 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1752 class EphemerisErrorReason < Struct.new( :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#error_message ⇒ String
A human-readable message describing the validation failure.
Provides specific details about what failed and may include suggestions for remediation.
1752 1753 1754 1755 1756 1757 |
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 1752 class EphemerisErrorReason < Struct.new( :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |