
com.pulumi.awsnative.appconfig.kotlin.outputs.GetExtensionAssociationResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.appconfig.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
*
* @property arn The ARN of the extension defined in the association.
* @property extensionArn The ARN of the extension defined in the association.
* @property id The system-generated ID for the association.
* @property parameters The parameter names and values defined in the extensions. Extension parameters marked `Required` must be entered for this field.
* @property resourceArn The ARNs of applications, configuration profiles, or environments defined in the association.
*/
public data class GetExtensionAssociationResult(
public val arn: String? = null,
public val extensionArn: String? = null,
public val id: String? = null,
public val parameters: Map? = null,
public val resourceArn: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.appconfig.outputs.GetExtensionAssociationResult): GetExtensionAssociationResult = GetExtensionAssociationResult(
arn = javaType.arn().map({ args0 -> args0 }).orElse(null),
extensionArn = javaType.extensionArn().map({ args0 -> args0 }).orElse(null),
id = javaType.id().map({ args0 -> args0 }).orElse(null),
parameters = javaType.parameters().map({ args0 -> args0.key.to(args0.value) }).toMap(),
resourceArn = javaType.resourceArn().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy