
com.pulumi.aws.vpclattice.kotlin.outputs.ServiceNetworkServiceAssociationDnsEntry.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.vpclattice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property domainName The domain name of the service.
* @property hostedZoneId The ID of the hosted zone.
*/
public data class ServiceNetworkServiceAssociationDnsEntry(
public val domainName: String? = null,
public val hostedZoneId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.vpclattice.outputs.ServiceNetworkServiceAssociationDnsEntry): ServiceNetworkServiceAssociationDnsEntry = ServiceNetworkServiceAssociationDnsEntry(
domainName = javaType.domainName().map({ args0 -> args0 }).orElse(null),
hostedZoneId = javaType.hostedZoneId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy