com.pulumi.awsnative.omics.kotlin.outputs.GetReferenceStoreResult.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.omics.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property arn The store's ARN.
* @property creationTime When the store was created.
* @property referenceStoreId The store's ID.
*/
public data class GetReferenceStoreResult(
public val arn: String? = null,
public val creationTime: String? = null,
public val referenceStoreId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.omics.outputs.GetReferenceStoreResult): GetReferenceStoreResult = GetReferenceStoreResult(
arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
creationTime = javaType.creationTime().map({ args0 -> args0 }).orElse(null),
referenceStoreId = javaType.referenceStoreId().map({ args0 -> args0 }).orElse(null),
)
}
}