
com.pulumi.awsnative.redshiftserverless.kotlin.outputs.WorkgroupConfigParameter.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.redshiftserverless.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property parameterKey The key of the parameter. The options are `datestyle` , `enable_user_activity_logging` , `query_group` , `search_path` , `max_query_execution_time` , and `require_ssl` .
* @property parameterValue The value of the parameter to set.
*/
public data class WorkgroupConfigParameter(
public val parameterKey: String? = null,
public val parameterValue: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.redshiftserverless.outputs.WorkgroupConfigParameter): WorkgroupConfigParameter = WorkgroupConfigParameter(
parameterKey = javaType.parameterKey().map({ args0 -> args0 }).orElse(null),
parameterValue = javaType.parameterValue().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy