/*
* 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
{
///
/// Container for the parameters to the CreateDataflowEndpointGroup operation.
/// Creates a DataflowEndpoint
group containing the specified list of DataflowEndpoint
/// objects.
///
///
///
/// The name
field in each endpoint is used in your mission profile DataflowEndpointConfig
/// to specify which endpoints to use during a contact.
///
///
///
/// When a contact uses multiple DataflowEndpointConfig
objects, each Config
/// must match a DataflowEndpoint
in the same group.
///
///
public partial class CreateDataflowEndpointGroupRequest : AmazonGroundStationRequest
{
private int? _contactPostPassDurationSeconds;
private int? _contactPrePassDurationSeconds;
private List _endpointDetails = 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 EndpointDetails.
///
/// Endpoint details of each endpoint in the dataflow endpoint group.
///
///
[AWSProperty(Required=true, Min=0, Max=500)]
public List EndpointDetails
{
get { return this._endpointDetails; }
set { this._endpointDetails = value; }
}
// Check to see if EndpointDetails property is set
internal bool IsSetEndpointDetails()
{
return this._endpointDetails != null && this._endpointDetails.Count > 0;
}
///
/// Gets and sets the property Tags.
///
/// Tags of 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;
}
}
}