AWS::GroundStation::DataflowEndpointGroup DataflowEndpoint
包含定义终端节点的信息,例如套接字地址和名称。
语法
要在 AWS CloudFormation 模板中声明此实体,请使用以下语法:
JSON
{ "Address" :
SocketAddress
, "Mtu" :Integer
, "Name" :String
}
YAML
Address:
SocketAddress
Mtu:Integer
Name:String
属性
Address
-
终端节点的地址和端口。
必需:否
Update requires: No interruption
Mtu
-
数据流终端节点的最大传输单元 (MTU) 大小(以字节为单位)。有效值在 1400 到 1500 之间。如果未设置,则使用默认值 1500。
必需:否
类型:整数
Update requires: No interruption
Name
-
终端节点名称。
列出卫星的可用联系方式时,Ground Station 会搜索数据流终端节点,其名称需要与所选任务配置文件的数据流终端节点配置指定的值相匹配。如果没有找到匹配的数据流终端节点,Ground Station 不会显示卫星的任何可用联系方式。
必需:否
类型:字符串
Update requires: No interruption
示例
创建 DataflowEndpoint
以下示例创建 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