![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.groundstation.kotlin.outputs.GetConfigResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.groundstation.kotlin.outputs
import com.pulumi.awsnative.kotlin.outputs.Tag
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property arn The ARN of the config, such as `arn:aws:groundstation:us-east-2:1234567890:config/tracking/9940bf3b-d2ba-427e-9906-842b5e5d2296` .
* @property configData Object containing the parameters of a config. Only one subtype may be specified per config. See the subtype definitions for a description of each config subtype.
* @property id The ID of the config, such as `9940bf3b-d2ba-427e-9906-842b5e5d2296` .
* @property name The name of the config object.
* @property tags Tags assigned to a resource.
* @property type The type of the config, such as `tracking` .
*/
public data class GetConfigResult(
public val arn: String? = null,
public val configData: ConfigData? = null,
public val id: String? = null,
public val name: String? = null,
public val tags: List? = null,
public val type: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.groundstation.outputs.GetConfigResult): GetConfigResult = GetConfigResult(
arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
configData = javaType.configData().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.groundstation.kotlin.outputs.ConfigData.Companion.toKotlin(args0)
})
}).orElse(null),
id = javaType.id().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)
})
}),
type = javaType.type().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy