![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.ec2.kotlin.outputs.OptionsProperties.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ec2.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The options for the transit gateway vpc attachment.
* @property applianceModeSupport Indicates whether to enable Ipv6 Support for Vpc Attachment. Valid Values: enable | disable
* @property dnsSupport Indicates whether to enable DNS Support for Vpc Attachment. Valid Values: enable | disable
* @property ipv6Support Indicates whether to enable Ipv6 Support for Vpc Attachment. Valid Values: enable | disable
*/
public data class OptionsProperties(
public val applianceModeSupport: String? = null,
public val dnsSupport: String? = null,
public val ipv6Support: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ec2.outputs.OptionsProperties): OptionsProperties = OptionsProperties(
applianceModeSupport = javaType.applianceModeSupport().map({ args0 -> args0 }).orElse(null),
dnsSupport = javaType.dnsSupport().map({ args0 -> args0 }).orElse(null),
ipv6Support = javaType.ipv6Support().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy