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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#error_codeString

The error code identifying the type of validation failure.

See the Troubleshooting Invalid Ephemerides guide for error code details.

Returns:

  • (String)


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_messageString

A human-readable message describing the validation failure.

Provides specific details about what failed and may include suggestions for remediation.

Returns:

  • (String)


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