Class CfnDataflowEndpointGroup.DataflowEndpointProperty
Contains information such as socket address and name that defines an endpoint.
Inheritance
Namespace: Amazon.CDK.AWS.GroundStation
Assembly: Amazon.CDK.AWS.GroundStation.dll
Syntax (csharp)
public class DataflowEndpointProperty : Object, CfnDataflowEndpointGroup.IDataflowEndpointProperty
Syntax (vb)
Public Class DataflowEndpointProperty
Inherits Object
Implements CfnDataflowEndpointGroup.IDataflowEndpointProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GroundStation;
var dataflowEndpointProperty = new DataflowEndpointProperty {
Address = new SocketAddressProperty {
Name = "name",
Port = 123
},
Mtu = 123,
Name = "name"
};
Synopsis
Constructors
DataflowEndpointProperty() |
Properties
Address | The address and port of an endpoint. |
Mtu | Maximum transmission unit (MTU) size in bytes of a dataflow endpoint. |
Name | The endpoint name. |
Constructors
DataflowEndpointProperty()
public DataflowEndpointProperty()
Properties
Address
The address and port of an endpoint.
public object Address { get; set; }
Property Value
System.Object
Remarks
Mtu
Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
public Nullable<double> Mtu { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
Valid values are between 1400 and 1500. A default value of 1500 is used if not set.
Name
The endpoint name.
public string Name { get; set; }
Property Value
System.String
Remarks
When listing available contacts for a satellite, Ground Station searches for a dataflow endpoint whose name matches the value specified by the dataflow endpoint config of the selected mission profile. If no matching dataflow endpoints are found then Ground Station will not display any available contacts for the satellite.