com.pulumi.awsnative.devicefarm.kotlin.TestGridProjectArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.devicefarm.kotlin
import com.pulumi.awsnative.devicefarm.TestGridProjectArgs.builder
import com.pulumi.awsnative.devicefarm.kotlin.inputs.TestGridProjectVpcConfigArgs
import com.pulumi.awsnative.devicefarm.kotlin.inputs.TestGridProjectVpcConfigArgsBuilder
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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* AWS::DeviceFarm::TestGridProject creates a new TestGrid Project
* @property description A human-readable description for the project.
* @property name A human-readable name for the project.
* @property tags An array of key-value pairs to apply to this resource.
* For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) in the *guide* .
* @property vpcConfig The VPC security groups and subnets that are attached to a project.
*/
public data class TestGridProjectArgs(
public val description: Output? = null,
public val name: Output? = null,
public val tags: Output>? = null,
public val vpcConfig: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.devicefarm.TestGridProjectArgs =
com.pulumi.awsnative.devicefarm.TestGridProjectArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.name(name?.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 [TestGridProjectArgs].
*/
@PulumiTagMarker
public class TestGridProjectArgsBuilder internal constructor() {
private var description: Output? = null
private var name: Output? = null
private var tags: Output>? = null
private var vpcConfig: Output? = null
/**
* @param value A human-readable description for the project.
*/
@JvmName("chmldvtvxvnmwcwa")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value A human-readable name for the project.
*/
@JvmName("mrslobkwgcrjptbq")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value An array of key-value pairs to apply to this resource.
* For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) in the *guide* .
*/
@JvmName("cpqdkvgnvhxtdwif")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("ufjkdimxiuskmqfy")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values An array of key-value pairs to apply to this resource.
* For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) in the *guide* .
*/
@JvmName("sdrxglneycctdrmy")
public suspend fun tags(values: List