interface DataflowEndpointProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.GroundStation.CfnDataflowEndpointGroup.DataflowEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgroundstation#CfnDataflowEndpointGroup_DataflowEndpointProperty |
Java | software.amazon.awscdk.services.groundstation.CfnDataflowEndpointGroup.DataflowEndpointProperty |
Python | aws_cdk.aws_groundstation.CfnDataflowEndpointGroup.DataflowEndpointProperty |
TypeScript | aws-cdk-lib » aws_groundstation » CfnDataflowEndpointGroup » DataflowEndpointProperty |
Contains information such as socket address and name that defines an endpoint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_groundstation as groundstation } from 'aws-cdk-lib';
const dataflowEndpointProperty: groundstation.CfnDataflowEndpointGroup.DataflowEndpointProperty = {
address: {
name: 'name',
port: 123,
},
mtu: 123,
name: 'name',
};
Properties
Name | Type | Description |
---|---|---|
address? | IResolvable | Socket | The address and port of an endpoint. |
mtu? | number | Maximum transmission unit (MTU) size in bytes of a dataflow endpoint. |
name? | string | The endpoint name. |
address?
Type:
IResolvable
|
Socket
(optional)
The address and port of an endpoint.
mtu?
Type:
number
(optional)
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.
name?
Type:
string
(optional)
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.