com.pulumi.awsnative.devicefarm.kotlin.outputs.GetProjectResult.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.outputs
import com.pulumi.awsnative.kotlin.outputs.Tag
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property arn The Amazon Resource Name (ARN) of the project. See [Amazon resource names](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) in the *General Reference guide* .
* @property defaultJobTimeoutMinutes Sets the execution timeout value (in minutes) for a project. All test runs in this project use the specified execution timeout value unless overridden when scheduling a run.
* @property name The project's name.
* @property tags The tags to add to the resource. A tag is an array of key-value pairs. Tag keys can have a maximum character length of 128 characters. Tag values can have a maximum length of 256 characters.
* @property vpcConfig The VPC security groups and subnets that are attached to a project.
*/
public data class GetProjectResult(
public val arn: String? = null,
public val defaultJobTimeoutMinutes: Int? = null,
public val name: String? = null,
public val tags: List? = null,
public val vpcConfig: ProjectVpcConfig? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.devicefarm.outputs.GetProjectResult): GetProjectResult = GetProjectResult(
arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
defaultJobTimeoutMinutes = javaType.defaultJobTimeoutMinutes().map({ args0 -> args0 }).orElse(null),
name = javaType.name().map({ args0 -> args0 }).orElse(null),
tags = javaType.tags().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin(args0)
})
}),
vpcConfig = javaType.vpcConfig().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.devicefarm.kotlin.outputs.ProjectVpcConfig.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}