/*
* 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
{
///
/// This is the response object from the DescribeEphemeris operation.
///
public partial class DescribeEphemerisResponse : AmazonWebServiceResponse
{
private DateTime? _creationTime;
private bool? _enabled;
private string _ephemerisId;
private EphemerisInvalidReason _invalidReason;
private string _name;
private int? _priority;
private string _satelliteId;
private EphemerisStatus _status;
private EphemerisTypeDescription _suppliedData;
private Dictionary _tags = new Dictionary();
///
/// Gets and sets the property CreationTime.
///
/// The time the ephemeris was uploaded in UTC.
///
///
public DateTime CreationTime
{
get { return this._creationTime.GetValueOrDefault(); }
set { this._creationTime = value; }
}
// Check to see if CreationTime property is set
internal bool IsSetCreationTime()
{
return this._creationTime.HasValue;
}
///
/// Gets and sets the property Enabled.
///
/// Whether or not the ephemeris is enabled.
///
///
public bool Enabled
{
get { return this._enabled.GetValueOrDefault(); }
set { this._enabled = value; }
}
// Check to see if Enabled property is set
internal bool IsSetEnabled()
{
return this._enabled.HasValue;
}
///
/// Gets and sets the property EphemerisId.
///
/// The AWS Ground Station ephemeris ID.
///
///
[AWSProperty(Min=1, Max=128)]
public string EphemerisId
{
get { return this._ephemerisId; }
set { this._ephemerisId = value; }
}
// Check to see if EphemerisId property is set
internal bool IsSetEphemerisId()
{
return this._ephemerisId != null;
}
///
/// Gets and sets the property InvalidReason.
///
/// Reason that an ephemeris failed validation. Only provided for ephemerides with INVALID
/// status.
///
///
public EphemerisInvalidReason InvalidReason
{
get { return this._invalidReason; }
set { this._invalidReason = value; }
}
// Check to see if InvalidReason property is set
internal bool IsSetInvalidReason()
{
return this._invalidReason != null;
}
///
/// Gets and sets the property Name.
///
/// A name string associated with the ephemeris. Used as a human-readable identifier for
/// the ephemeris.
///
///
[AWSProperty(Min=1, Max=256)]
public string Name
{
get { return this._name; }
set { this._name = value; }
}
// Check to see if Name property is set
internal bool IsSetName()
{
return this._name != null;
}
///
/// Gets and sets the property Priority.
///
/// 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
///
///
[AWSProperty(Min=0, Max=99999)]
public int Priority
{
get { return this._priority.GetValueOrDefault(); }
set { this._priority = value; }
}
// Check to see if Priority property is set
internal bool IsSetPriority()
{
return this._priority.HasValue;
}
///
/// Gets and sets the property SatelliteId.
///
/// The AWS Ground Station satellite ID associated with ephemeris.
///
///
[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;
}
///
/// Gets and sets the property Status.
///
/// The status of the ephemeris.
///
///
public EphemerisStatus Status
{
get { return this._status; }
set { this._status = value; }
}
// Check to see if Status property is set
internal bool IsSetStatus()
{
return this._status != null;
}
///
/// Gets and sets the property SuppliedData.
///
/// Supplied ephemeris data.
///
///
public EphemerisTypeDescription SuppliedData
{
get { return this._suppliedData; }
set { this._suppliedData = value; }
}
// Check to see if SuppliedData property is set
internal bool IsSetSuppliedData()
{
return this._suppliedData != null;
}
///
/// Gets and sets the property Tags.
///
/// Tags assigned to an ephemeris.
///
///
public Dictionary Tags
{
get { return this._tags; }
set { this._tags = value; }
}
// Check to see if Tags property is set
internal bool IsSetTags()
{
return this._tags != null && this._tags.Count > 0;
}
}
}