AWS::GroundStation::DataflowEndpointGroup DataflowEndpoint
Contains information such as socket address and name that defines an endpoint.
Syntax
To declare this entity in your AWS CloudFormation template, use the following syntax:
JSON
{ "Address" :
SocketAddress
, "Mtu" :Integer
, "Name" :String
}
YAML
Address:
SocketAddress
Mtu:Integer
Name:String
Properties
Address
-
The address and port of an endpoint.
Required: No
Type: SocketAddress
Update requires: No interruption
Mtu
-
Maximum transmission unit (MTU) size in bytes of a dataflow endpoint. Valid values are between 1400 and 1500. A default value of 1500 is used if not set.
Required: No
Type: Integer
Minimum:
1400
Maximum:
1500
Update requires: No interruption
Name
-
The endpoint name.
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.
Required: No
Type: String
Pattern:
^[ a-zA-Z0-9_:-]{1,256}$
Update requires: No interruption
Examples
Create a DataflowEndpoint
The following example creates a Ground Station DataflowEndpoint
JSON
{ "Endpoint": { "Name": "myEndpoint", "Address": { "Name": "172.10.0.2", "Port": 44720 }, "Mtu": 1500 }
YAML
Endpoint: Name: myEndpoint Address: Name: 172.10.0.2 Port: 44720 Mtu: 1500