
com.pulumi.aws.ec2.kotlin.outputs.PeeringConnectionOptionsRequester.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.ec2.kotlin.outputs
import kotlin.Boolean
import kotlin.Suppress
/**
*
* @property allowRemoteVpcDnsResolution Allow a local VPC to resolve public DNS hostnames to private IP addresses when queried from instances in the peer VPC.
*/
public data class PeeringConnectionOptionsRequester(
public val allowRemoteVpcDnsResolution: Boolean? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.ec2.outputs.PeeringConnectionOptionsRequester): PeeringConnectionOptionsRequester = PeeringConnectionOptionsRequester(
allowRemoteVpcDnsResolution = javaType.allowRemoteVpcDnsResolution().map({ args0 ->
args0
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy