All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.omics.kotlin.outputs.GetReferenceStoreResult.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.11.0.0
Show newest version
@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),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy