Show / Hide Table of Contents

Class CfnDataflowEndpointGroup.DataflowEndpointProperty

Contains information such as socket address and name that defines an endpoint.

Inheritance
System.Object
CfnDataflowEndpointGroup.DataflowEndpointProperty
Implements
CfnDataflowEndpointGroup.IDataflowEndpointProperty
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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-dataflowendpoint.html

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-dataflowendpoint.html#cfn-groundstation-dataflowendpointgroup-dataflowendpoint-address

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-dataflowendpoint.html#cfn-groundstation-dataflowendpointgroup-dataflowendpoint-mtu

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-dataflowendpoint.html#cfn-groundstation-dataflowendpointgroup-dataflowendpoint-name

Implements

CfnDataflowEndpointGroup.IDataflowEndpointProperty
Back to top Generated by DocFX