![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.ec2.kotlin.outputs.InstanceAssociationParameter.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ec2.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property key The name of an input parameter that is in the associated SSM document.
* @property value The value of an input parameter.
*/
public data class InstanceAssociationParameter(
public val key: String,
public val `value`: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ec2.outputs.InstanceAssociationParameter): InstanceAssociationParameter = InstanceAssociationParameter(
key = javaType.key(),
`value` = javaType.`value`().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy