All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.groundstation.kotlin.outputs.DataflowEndpointGroupSocketAddress.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 name The name of the endpoint, such as `Endpoint 1` .
 * @property port The port of the endpoint, such as `55888` .
 */
public data class DataflowEndpointGroupSocketAddress(
    public val name: String? = null,
    public val port: Int? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.groundstation.outputs.DataflowEndpointGroupSocketAddress): DataflowEndpointGroupSocketAddress = DataflowEndpointGroupSocketAddress(
            name = javaType.name().map({ args0 -> args0 }).orElse(null),
            port = javaType.port().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy