Class: Aws::GroundStation::Types::EphemerisErrorReason

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#error_codeString

The error code identifying the type of validation failure.

See the [Troubleshooting Invalid Ephemerides guide] for error code details.

[1]: docs.aws.amazon.com/ground-station/latest/ug/troubleshooting-invalid-ephemerides.html



1752
1753
1754
1755
1756
1757
# File 'lib/aws-sdk-groundstation/types.rb', line 1752

class EphemerisErrorReason < Struct.new(
  :error_code,
  :error_message)
  SENSITIVE = []
  include Aws::Structure
end

#error_messageString

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 'lib/aws-sdk-groundstation/types.rb', line 1752

class EphemerisErrorReason < Struct.new(
  :error_code,
  :error_message)
  SENSITIVE = []
  include Aws::Structure
end