/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the groundstation-2019-05-23.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.GroundStation.Model { /// /// Item in a list of satellites. /// public partial class SatelliteListItem { private EphemerisMetaData _currentEphemeris; private List _groundStations = new List(); private int? _noradSatelliteID; private string _satelliteArn; private string _satelliteId; /// /// Gets and sets the property CurrentEphemeris. /// /// The current ephemeris being used to compute the trajectory of the satellite. /// /// public EphemerisMetaData CurrentEphemeris { get { return this._currentEphemeris; } set { this._currentEphemeris = value; } } // Check to see if CurrentEphemeris property is set internal bool IsSetCurrentEphemeris() { return this._currentEphemeris != null; } /// /// Gets and sets the property GroundStations. /// /// A list of ground stations to which the satellite is on-boarded. /// /// [AWSProperty(Min=0, Max=500)] public List GroundStations { get { return this._groundStations; } set { this._groundStations = value; } } // Check to see if GroundStations property is set internal bool IsSetGroundStations() { return this._groundStations != null && this._groundStations.Count > 0; } /// /// Gets and sets the property NoradSatelliteID. /// /// NORAD satellite ID number. /// /// [AWSProperty(Min=0, Max=99999)] public int NoradSatelliteID { get { return this._noradSatelliteID.GetValueOrDefault(); } set { this._noradSatelliteID = value; } } // Check to see if NoradSatelliteID property is set internal bool IsSetNoradSatelliteID() { return this._noradSatelliteID.HasValue; } /// /// Gets and sets the property SatelliteArn. /// /// ARN of a satellite. /// /// public string SatelliteArn { get { return this._satelliteArn; } set { this._satelliteArn = value; } } // Check to see if SatelliteArn property is set internal bool IsSetSatelliteArn() { return this._satelliteArn != null; } /// /// Gets and sets the property SatelliteId. /// /// UUID of a satellite. /// /// [AWSProperty(Min=1, Max=128)] public string SatelliteId { get { return this._satelliteId; } set { this._satelliteId = value; } } // Check to see if SatelliteId property is set internal bool IsSetSatelliteId() { return this._satelliteId != null; } } }