![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.redshift.kotlin.outputs.ClusterEndpoint.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.redshift.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property address The DNS address of the cluster. This property is read only.
* @property port The port that the database engine is listening on. This property is read only.
*/
public data class ClusterEndpoint(
public val address: String? = null,
public val port: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.redshift.outputs.ClusterEndpoint): ClusterEndpoint = ClusterEndpoint(
address = javaType.address().map({ args0 -> args0 }).orElse(null),
port = javaType.port().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy