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

com.pulumi.awsnative.cleanrooms.kotlin.outputs.GetAnalysisTemplateResult.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.cleanrooms.kotlin.outputs

import com.pulumi.awsnative.kotlin.outputs.Tag
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property analysisTemplateIdentifier Returns the identifier for the analysis template.
 * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE2222`
 * @property arn Returns the Amazon Resource Name (ARN) of the analysis template.
 * Example: `arn:aws:cleanrooms:us-east-1:111122223333:membership/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111/analysistemplates/a1b2c3d4-5678-90ab-cdef-EXAMPLE2222`
 * @property collaborationArn Returns the unique ARN for the analysis template’s associated collaboration.
 * Example: `arn:aws:cleanrooms:us-east-1:111122223333:collaboration/a1b2c3d4-5678-90ab-cdef-EXAMPLE33333`
 * @property collaborationIdentifier Returns the unique ID for the associated collaboration of the analysis template.
 * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE33333`
 * @property description The description of the analysis template.
 * @property membershipArn Returns the Amazon Resource Name (ARN) of the member who created the analysis template.
 * Example: `arn:aws:cleanrooms:us-east-1:111122223333:membership/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111`
 * @property schema
 * @property tags An arbitrary set of tags (key-value pairs) for this cleanrooms analysis template.
 */
public data class GetAnalysisTemplateResult(
    public val analysisTemplateIdentifier: String? = null,
    public val arn: String? = null,
    public val collaborationArn: String? = null,
    public val collaborationIdentifier: String? = null,
    public val description: String? = null,
    public val membershipArn: String? = null,
    public val schema: AnalysisTemplateAnalysisSchema? = null,
    public val tags: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.cleanrooms.outputs.GetAnalysisTemplateResult): GetAnalysisTemplateResult = GetAnalysisTemplateResult(
            analysisTemplateIdentifier = javaType.analysisTemplateIdentifier().map({ args0 ->
                args0
            }).orElse(null),
            arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
            collaborationArn = javaType.collaborationArn().map({ args0 -> args0 }).orElse(null),
            collaborationIdentifier = javaType.collaborationIdentifier().map({ args0 -> args0 }).orElse(null),
            description = javaType.description().map({ args0 -> args0 }).orElse(null),
            membershipArn = javaType.membershipArn().map({ args0 -> args0 }).orElse(null),
            schema = javaType.schema().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.cleanrooms.kotlin.outputs.AnalysisTemplateAnalysisSchema.Companion.toKotlin(args0)
                })
            }).orElse(null),
            tags = javaType.tags().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy