![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.appstream.kotlin.AppBlockBuilderArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.appstream.kotlin
import com.pulumi.awsnative.appstream.AppBlockBuilderArgs.builder
import com.pulumi.awsnative.appstream.kotlin.inputs.AppBlockBuilderAccessEndpointArgs
import com.pulumi.awsnative.appstream.kotlin.inputs.AppBlockBuilderAccessEndpointArgsBuilder
import com.pulumi.awsnative.appstream.kotlin.inputs.AppBlockBuilderVpcConfigArgs
import com.pulumi.awsnative.appstream.kotlin.inputs.AppBlockBuilderVpcConfigArgsBuilder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Resource Type definition for AWS::AppStream::AppBlockBuilder.
* @property accessEndpoints The access endpoints of the app block builder.
* @property appBlockArns The ARN of the app block.
* *Maximum* : `1`
* @property description The description of the app block builder.
* @property displayName The display name of the app block builder.
* @property enableDefaultInternetAccess Indicates whether default internet access is enabled for the app block builder.
* @property iamRoleArn The ARN of the IAM role that is applied to the app block builder.
* @property instanceType The instance type of the app block builder.
* @property name The name of the app block builder.
* @property platform The platform of the app block builder.
* *Allowed values* : `WINDOWS_SERVER_2019`
* @property tags The tags of the app block builder.
* @property vpcConfig The VPC configuration for the app block builder.
*/
public data class AppBlockBuilderArgs(
public val accessEndpoints: Output>? = null,
public val appBlockArns: Output>? = null,
public val description: Output? = null,
public val displayName: Output? = null,
public val enableDefaultInternetAccess: Output? = null,
public val iamRoleArn: Output? = null,
public val instanceType: Output? = null,
public val name: Output? = null,
public val platform: Output? = null,
public val tags: Output>? = null,
public val vpcConfig: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.appstream.AppBlockBuilderArgs =
com.pulumi.awsnative.appstream.AppBlockBuilderArgs.builder()
.accessEndpoints(
accessEndpoints?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.appBlockArns(appBlockArns?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.description(description?.applyValue({ args0 -> args0 }))
.displayName(displayName?.applyValue({ args0 -> args0 }))
.enableDefaultInternetAccess(enableDefaultInternetAccess?.applyValue({ args0 -> args0 }))
.iamRoleArn(iamRoleArn?.applyValue({ args0 -> args0 }))
.instanceType(instanceType?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.platform(platform?.applyValue({ args0 -> args0 }))
.tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.vpcConfig(vpcConfig?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [AppBlockBuilderArgs].
*/
@PulumiTagMarker
public class AppBlockBuilderArgsBuilder internal constructor() {
private var accessEndpoints: Output>? = null
private var appBlockArns: Output>? = null
private var description: Output? = null
private var displayName: Output? = null
private var enableDefaultInternetAccess: Output? = null
private var iamRoleArn: Output? = null
private var instanceType: Output? = null
private var name: Output? = null
private var platform: Output? = null
private var tags: Output>? = null
private var vpcConfig: Output? = null
/**
* @param value The access endpoints of the app block builder.
*/
@JvmName("ohiseiidqahyovcl")
public suspend fun accessEndpoints(`value`: Output>) {
this.accessEndpoints = value
}
@JvmName("hqcupmtkpesltdhx")
public suspend fun accessEndpoints(vararg values: Output) {
this.accessEndpoints = Output.all(values.asList())
}
/**
* @param values The access endpoints of the app block builder.
*/
@JvmName("twnggrwlkvgcrcgu")
public suspend fun accessEndpoints(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy