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

com.pulumi.awsnative.emr.kotlin.outputs.GetStudioResult.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.24.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.emr.kotlin.outputs

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

/**
 *
 * @property arn The Amazon Resource Name (ARN) of the EMR Studio.
 * @property defaultS3Location The default Amazon S3 location to back up EMR Studio Workspaces and notebook files. A Studio user can select an alternative Amazon S3 location when creating a Workspace.
 * @property description A detailed description of the Studio.
 * @property idpAuthUrl Your identity provider's authentication endpoint. Amazon EMR Studio redirects federated users to this endpoint for authentication when logging in to a Studio with the Studio URL.
 * @property idpRelayStateParameterName The name of relay state parameter for external Identity Provider.
 * @property name A descriptive name for the Amazon EMR Studio.
 * @property studioId The ID of the EMR Studio.
 * @property subnetIds A list of up to 5 subnet IDs to associate with the Studio. The subnets must belong to the VPC specified by VpcId. Studio users can create a Workspace in any of the specified subnets.
 * @property tags A list of tags to associate with the Studio. Tags are user-defined key-value pairs that consist of a required key string with a maximum of 128 characters, and an optional value string with a maximum of 256 characters.
 * @property url The unique Studio access URL.
 */
public data class GetStudioResult(
    public val arn: String? = null,
    public val defaultS3Location: String? = null,
    public val description: String? = null,
    public val idpAuthUrl: String? = null,
    public val idpRelayStateParameterName: String? = null,
    public val name: String? = null,
    public val studioId: String? = null,
    public val subnetIds: List? = null,
    public val tags: List? = null,
    public val url: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.emr.outputs.GetStudioResult): GetStudioResult = GetStudioResult(
            arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
            defaultS3Location = javaType.defaultS3Location().map({ args0 -> args0 }).orElse(null),
            description = javaType.description().map({ args0 -> args0 }).orElse(null),
            idpAuthUrl = javaType.idpAuthUrl().map({ args0 -> args0 }).orElse(null),
            idpRelayStateParameterName = javaType.idpRelayStateParameterName().map({ args0 ->
                args0
            }).orElse(null),
            name = javaType.name().map({ args0 -> args0 }).orElse(null),
            studioId = javaType.studioId().map({ args0 -> args0 }).orElse(null),
            subnetIds = javaType.subnetIds().map({ args0 -> args0 }),
            tags = javaType.tags().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin(args0)
                })
            }),
            url = javaType.url().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy