EndPointArgs

data class EndPointArgs(val endPointName: Output<String>, val ipAddress: Output<String>, val port: Output<String>, val protocol: Output<Either<String, Protocol>>) : ConvertibleToJava<EndPointArgs>

Customer end point to store and retrieve data during a contact with the spacecraft.

Constructors

Link copied to clipboard
constructor(endPointName: Output<String>, ipAddress: Output<String>, port: Output<String>, protocol: Output<Either<String, Protocol>>)

Properties

Link copied to clipboard
val endPointName: Output<String>

Name of an end point.

Link copied to clipboard
val ipAddress: Output<String>

IP Address (IPv4).

Link copied to clipboard
val port: Output<String>

TCP port to listen on to receive data.

Link copied to clipboard
val protocol: Output<Either<String, Protocol>>

Protocol either UDP or TCP.

Functions

Link copied to clipboard
open override fun toJava(): EndPointArgs