/*
* 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 GetDataflowEndpointGroupResponse : AmazonWebServiceResponse
{
private int? _contactPostPassDurationSeconds;
private int? _contactPrePassDurationSeconds;
private string _dataflowEndpointGroupArn;
private string _dataflowEndpointGroupId;
private List _endpointsDetails = new List();
private Dictionary _tags = new Dictionary();
///
/// Gets and sets the property ContactPostPassDurationSeconds.
///
/// Amount of time, in seconds, after a contact ends that the Ground Station Dataflow
/// Endpoint Group will be in a POSTPASS
state. A Ground Station Dataflow
/// Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group
/// enters and exits the POSTPASS
state.
///
///
[AWSProperty(Min=120, Max=480)]
public int ContactPostPassDurationSeconds
{
get { return this._contactPostPassDurationSeconds.GetValueOrDefault(); }
set { this._contactPostPassDurationSeconds = value; }
}
// Check to see if ContactPostPassDurationSeconds property is set
internal bool IsSetContactPostPassDurationSeconds()
{
return this._contactPostPassDurationSeconds.HasValue;
}
///
/// Gets and sets the property ContactPrePassDurationSeconds.
///
/// Amount of time, in seconds, before a contact starts that the Ground Station Dataflow
/// Endpoint Group will be in a PREPASS
state. A Ground Station Dataflow
/// Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group
/// enters and exits the PREPASS
state.
///
///
[AWSProperty(Min=120, Max=480)]
public int ContactPrePassDurationSeconds
{
get { return this._contactPrePassDurationSeconds.GetValueOrDefault(); }
set { this._contactPrePassDurationSeconds = value; }
}
// Check to see if ContactPrePassDurationSeconds property is set
internal bool IsSetContactPrePassDurationSeconds()
{
return this._contactPrePassDurationSeconds.HasValue;
}
///
/// Gets and sets the property DataflowEndpointGroupArn.
///
/// ARN of a dataflow endpoint group.
///
///
public string DataflowEndpointGroupArn
{
get { return this._dataflowEndpointGroupArn; }
set { this._dataflowEndpointGroupArn = value; }
}
// Check to see if DataflowEndpointGroupArn property is set
internal bool IsSetDataflowEndpointGroupArn()
{
return this._dataflowEndpointGroupArn != null;
}
///
/// Gets and sets the property DataflowEndpointGroupId.
///
/// UUID of a dataflow endpoint group.
///
///
[AWSProperty(Min=1, Max=128)]
public string DataflowEndpointGroupId
{
get { return this._dataflowEndpointGroupId; }
set { this._dataflowEndpointGroupId = value; }
}
// Check to see if DataflowEndpointGroupId property is set
internal bool IsSetDataflowEndpointGroupId()
{
return this._dataflowEndpointGroupId != null;
}
///
/// Gets and sets the property EndpointsDetails.
///
/// Details of a dataflow endpoint.
///
///
[AWSProperty(Min=0, Max=500)]
public List EndpointsDetails
{
get { return this._endpointsDetails; }
set { this._endpointsDetails = value; }
}
// Check to see if EndpointsDetails property is set
internal bool IsSetEndpointsDetails()
{
return this._endpointsDetails != null && this._endpointsDetails.Count > 0;
}
///
/// Gets and sets the property Tags.
///
/// Tags assigned to a dataflow endpoint group.
///
///
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;
}
}
}