
com.pulumi.awsnative.groundstation.kotlin.outputs.DataflowEndpointGroupDataflowEndpoint.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.groundstation.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property address The address and port of an endpoint.
* @property mtu 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.
* @property 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.
*/
public data class DataflowEndpointGroupDataflowEndpoint(
public val address: DataflowEndpointGroupSocketAddress? = null,
public val mtu: Int? = null,
public val name: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.groundstation.outputs.DataflowEndpointGroupDataflowEndpoint): DataflowEndpointGroupDataflowEndpoint = DataflowEndpointGroupDataflowEndpoint(
address = javaType.address().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.groundstation.kotlin.outputs.DataflowEndpointGroupSocketAddress.Companion.toKotlin(args0)
})
}).orElse(null),
mtu = javaType.mtu().map({ args0 -> args0 }).orElse(null),
name = javaType.name().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy