com.pulumi.awsnative.ssmincidents.kotlin.outputs.ResponsePlanSsmParameter.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.ssmincidents.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A parameter to set when starting the SSM automation document.
* @property key The key parameter to use when running the Automation runbook.
* @property values The value parameter to use when running the Automation runbook.
*/
public data class ResponsePlanSsmParameter(
public val key: String,
public val values: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.ssmincidents.outputs.ResponsePlanSsmParameter): ResponsePlanSsmParameter = ResponsePlanSsmParameter(
key = javaType.key(),
values = javaType.values().map({ args0 -> args0 }),
)
}
}