com.pulumi.awsnative.datazone.kotlin.outputs.GetProjectResult.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.datazone.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property createdAt The timestamp of when the project was created.
* @property createdBy The Amazon DataZone user who created the project.
* @property description The description of the Amazon DataZone project.
* @property domainId The identifier of the Amazon DataZone domain in which the project was created.
* @property glossaryTerms The glossary terms that can be used in this Amazon DataZone project.
* @property id The ID of the Amazon DataZone project.
* @property lastUpdatedAt The timestamp of when the project was last updated.
* @property name The name of the Amazon DataZone project.
*/
public data class GetProjectResult(
public val createdAt: String? = null,
public val createdBy: String? = null,
public val description: String? = null,
public val domainId: String? = null,
public val glossaryTerms: List? = null,
public val id: String? = null,
public val lastUpdatedAt: String? = null,
public val name: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.datazone.outputs.GetProjectResult): GetProjectResult = GetProjectResult(
createdAt = javaType.createdAt().map({ args0 -> args0 }).orElse(null),
createdBy = javaType.createdBy().map({ args0 -> args0 }).orElse(null),
description = javaType.description().map({ args0 -> args0 }).orElse(null),
domainId = javaType.domainId().map({ args0 -> args0 }).orElse(null),
glossaryTerms = javaType.glossaryTerms().map({ args0 -> args0 }),
id = javaType.id().map({ args0 -> args0 }).orElse(null),
lastUpdatedAt = javaType.lastUpdatedAt().map({ args0 -> args0 }).orElse(null),
name = javaType.name().map({ args0 -> args0 }).orElse(null),
)
}
}