![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.s3objectlambda.kotlin.outputs.AccessPointAlias.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.s3objectlambda.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property status The status of the Object Lambda alias.
* @property value The value of the Object Lambda alias.
*/
public data class AccessPointAlias(
public val status: String? = null,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.s3objectlambda.outputs.AccessPointAlias): AccessPointAlias = AccessPointAlias(
status = javaType.status().map({ args0 -> args0 }).orElse(null),
`value` = javaType.`value`(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy