Class: Aws::GroundStation::Types::UpdateEphemerisRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::UpdateEphemerisRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-groundstation/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Whether the ephemeris is enabled or not.
-
#ephemeris_id ⇒ String
The AWS Ground Station ephemeris ID.
-
#name ⇒ String
A name string associated with the ephemeris.
-
#priority ⇒ Integer
Customer-provided priority score to establish the order in which overlapping ephemerides should be used.
Instance Attribute Details
#enabled ⇒ Boolean
Whether the ephemeris is enabled or not. Changing this value will not require the ephemeris to be re-validated.
2867 2868 2869 2870 2871 2872 2873 2874 |
# File 'lib/aws-sdk-groundstation/types.rb', line 2867 class UpdateEphemerisRequest < Struct.new( :enabled, :ephemeris_id, :name, :priority) SENSITIVE = [] include Aws::Structure end |
#ephemeris_id ⇒ String
The AWS Ground Station ephemeris ID.
2867 2868 2869 2870 2871 2872 2873 2874 |
# File 'lib/aws-sdk-groundstation/types.rb', line 2867 class UpdateEphemerisRequest < Struct.new( :enabled, :ephemeris_id, :name, :priority) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A name string associated with the ephemeris. Used as a human-readable identifier for the ephemeris.
2867 2868 2869 2870 2871 2872 2873 2874 |
# File 'lib/aws-sdk-groundstation/types.rb', line 2867 class UpdateEphemerisRequest < Struct.new( :enabled, :ephemeris_id, :name, :priority) SENSITIVE = [] include Aws::Structure end |
#priority ⇒ Integer
Customer-provided priority score to establish the order in which overlapping ephemerides should be used.
The default for customer-provided ephemeris priority is 1, and higher numbers take precedence.
Priority must be 1 or greater
2867 2868 2869 2870 2871 2872 2873 2874 |
# File 'lib/aws-sdk-groundstation/types.rb', line 2867 class UpdateEphemerisRequest < Struct.new( :enabled, :ephemeris_id, :name, :priority) SENSITIVE = [] include Aws::Structure end |