/*
* 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
{
///
///
///
public partial class DescribeContactResponse : AmazonWebServiceResponse
{
private string _contactId;
private ContactStatus _contactStatus;
private List _dataflowList = new List();
private DateTime? _endTime;
private string _errorMessage;
private string _groundStation;
private Elevation _maximumElevation;
private string _missionProfileArn;
private DateTime? _postPassEndTime;
private DateTime? _prePassStartTime;
private string _region;
private string _satelliteArn;
private DateTime? _startTime;
private Dictionary _tags = new Dictionary();
///
/// Gets and sets the property ContactId.
///
/// UUID of a contact.
///
///
[AWSProperty(Min=1, Max=128)]
public string ContactId
{
get { return this._contactId; }
set { this._contactId = value; }
}
// Check to see if ContactId property is set
internal bool IsSetContactId()
{
return this._contactId != null;
}
///
/// Gets and sets the property ContactStatus.
///
/// Status of a contact.
///
///
public ContactStatus ContactStatus
{
get { return this._contactStatus; }
set { this._contactStatus = value; }
}
// Check to see if ContactStatus property is set
internal bool IsSetContactStatus()
{
return this._contactStatus != null;
}
///
/// Gets and sets the property DataflowList.
///
/// List describing source and destination details for each dataflow edge.
///
///
public List DataflowList
{
get { return this._dataflowList; }
set { this._dataflowList = value; }
}
// Check to see if DataflowList property is set
internal bool IsSetDataflowList()
{
return this._dataflowList != null && this._dataflowList.Count > 0;
}
///
/// Gets and sets the property EndTime.
///
/// End time of a contact in UTC.
///
///
public DateTime EndTime
{
get { return this._endTime.GetValueOrDefault(); }
set { this._endTime = value; }
}
// Check to see if EndTime property is set
internal bool IsSetEndTime()
{
return this._endTime.HasValue;
}
///
/// Gets and sets the property ErrorMessage.
///
/// Error message for a contact.
///
///
public string ErrorMessage
{
get { return this._errorMessage; }
set { this._errorMessage = value; }
}
// Check to see if ErrorMessage property is set
internal bool IsSetErrorMessage()
{
return this._errorMessage != null;
}
///
/// Gets and sets the property GroundStation.
///
/// Ground station for a contact.
///
///
public string GroundStation
{
get { return this._groundStation; }
set { this._groundStation = value; }
}
// Check to see if GroundStation property is set
internal bool IsSetGroundStation()
{
return this._groundStation != null;
}
///
/// Gets and sets the property MaximumElevation.
///
/// Maximum elevation angle of a contact.
///
///
public Elevation MaximumElevation
{
get { return this._maximumElevation; }
set { this._maximumElevation = value; }
}
// Check to see if MaximumElevation property is set
internal bool IsSetMaximumElevation()
{
return this._maximumElevation != null;
}
///
/// Gets and sets the property MissionProfileArn.
///
/// ARN of a mission profile.
///
///
public string MissionProfileArn
{
get { return this._missionProfileArn; }
set { this._missionProfileArn = value; }
}
// Check to see if MissionProfileArn property is set
internal bool IsSetMissionProfileArn()
{
return this._missionProfileArn != null;
}
///
/// Gets and sets the property PostPassEndTime.
///
/// Amount of time after a contact ends that you’d like to receive a CloudWatch event
/// indicating the pass has finished.
///
///
public DateTime PostPassEndTime
{
get { return this._postPassEndTime.GetValueOrDefault(); }
set { this._postPassEndTime = value; }
}
// Check to see if PostPassEndTime property is set
internal bool IsSetPostPassEndTime()
{
return this._postPassEndTime.HasValue;
}
///
/// Gets and sets the property PrePassStartTime.
///
/// Amount of time prior to contact start you’d like to receive a CloudWatch event indicating
/// an upcoming pass.
///
///
public DateTime PrePassStartTime
{
get { return this._prePassStartTime.GetValueOrDefault(); }
set { this._prePassStartTime = value; }
}
// Check to see if PrePassStartTime property is set
internal bool IsSetPrePassStartTime()
{
return this._prePassStartTime.HasValue;
}
///
/// Gets and sets the property Region.
///
/// Region of a contact.
///
///
public string Region
{
get { return this._region; }
set { this._region = value; }
}
// Check to see if Region property is set
internal bool IsSetRegion()
{
return this._region != null;
}
///
/// 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 StartTime.
///
/// Start time of a contact in UTC.
///
///
public DateTime StartTime
{
get { return this._startTime.GetValueOrDefault(); }
set { this._startTime = value; }
}
// Check to see if StartTime property is set
internal bool IsSetStartTime()
{
return this._startTime.HasValue;
}
///
/// Gets and sets the property Tags.
///
/// Tags assigned to a contact.
///
///
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;
}
}
}