com.pulumi.aws.networkmanager.kotlin.outputs.GetLinkBandwidth.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.networkmanager.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property downloadSpeed Download speed in Mbps.
* @property uploadSpeed Upload speed in Mbps.
*/
public data class GetLinkBandwidth(
public val downloadSpeed: Int,
public val uploadSpeed: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.networkmanager.outputs.GetLinkBandwidth): GetLinkBandwidth = GetLinkBandwidth(
downloadSpeed = javaType.downloadSpeed(),
uploadSpeed = javaType.uploadSpeed(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy