AWS::GroundStation::DataflowEndpointGroup DataflowEndpoint - AWS CloudFormation

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

Property description not available.

Required: No

Type: Integer

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