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

com.pulumi.awsnative.datazone.kotlin.outputs.GetGroupProfileResult.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.datazone.kotlin.outputs

import com.pulumi.awsnative.datazone.kotlin.enums.GroupProfileStatus
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property domainId The identifier of the Amazon DataZone domain in which the group profile is created.
 * @property groupName The group-name of the Group Profile.
 * @property id The ID of the Amazon DataZone group profile.
 * @property status The status of a group profile.
 */
public data class GetGroupProfileResult(
    public val domainId: String? = null,
    public val groupName: String? = null,
    public val id: String? = null,
    public val status: GroupProfileStatus? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.datazone.outputs.GetGroupProfileResult): GetGroupProfileResult = GetGroupProfileResult(
            domainId = javaType.domainId().map({ args0 -> args0 }).orElse(null),
            groupName = javaType.groupName().map({ args0 -> args0 }).orElse(null),
            id = javaType.id().map({ args0 -> args0 }).orElse(null),
            status = javaType.status().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.datazone.kotlin.enums.GroupProfileStatus.Companion.toKotlin(args0)
                })
            }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy