![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.iottwinmaker.kotlin.Workspace.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.iottwinmaker.kotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
/**
* Builder for [Workspace].
*/
@PulumiTagMarker
public class WorkspaceResourceBuilder internal constructor() {
public var name: String? = null
public var args: WorkspaceArgs = WorkspaceArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend WorkspaceArgsBuilder.() -> Unit) {
val builder = WorkspaceArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): Workspace {
val builtJavaResource = com.pulumi.awsnative.iottwinmaker.Workspace(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return Workspace(builtJavaResource)
}
}
/**
* Resource schema for AWS::IoTTwinMaker::Workspace
*/
public class Workspace internal constructor(
override val javaResource: com.pulumi.awsnative.iottwinmaker.Workspace,
) : KotlinCustomResource(javaResource, WorkspaceMapper) {
/**
* The ARN of the workspace.
*/
public val arn: Output
get() = javaResource.arn().applyValue({ args0 -> args0 })
/**
* The date and time when the workspace was created.
*/
public val creationDateTime: Output
get() = javaResource.creationDateTime().applyValue({ args0 -> args0 })
/**
* The description of the workspace.
*/
public val description: Output?
get() = javaResource.description().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The ARN of the execution role associated with the workspace.
*/
public val role: Output
get() = javaResource.role().applyValue({ args0 -> args0 })
/**
* The ARN of the S3 bucket where resources associated with the workspace are stored.
*/
public val s3Location: Output
get() = javaResource.s3Location().applyValue({ args0 -> args0 })
/**
* A map of key-value pairs to associate with a resource.
*/
public val tags: Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy