![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.elasticache.kotlin.outputs.GetParameterGroupResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.elasticache.kotlin.outputs
import com.pulumi.awsnative.kotlin.outputs.Tag
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
*
* @property cacheParameterGroupName The name of the Cache Parameter Group.
* @property description The description for this cache parameter group.
* @property properties A comma-delimited list of parameter name/value pairs. For more information see ModifyCacheParameterGroup in the Amazon ElastiCache API Reference Guide.
* @property tags Tags are composed of a Key/Value pair. You can use tags to categorize and track each parameter group. The tag value null is permitted.
*/
public data class GetParameterGroupResult(
public val cacheParameterGroupName: String? = null,
public val description: String? = null,
public val properties: Map? = null,
public val tags: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.elasticache.outputs.GetParameterGroupResult): GetParameterGroupResult = GetParameterGroupResult(
cacheParameterGroupName = javaType.cacheParameterGroupName().map({ args0 -> args0 }).orElse(null),
description = javaType.description().map({ args0 -> args0 }).orElse(null),
properties = javaType.properties().map({ args0 -> args0.key.to(args0.value) }).toMap(),
tags = javaType.tags().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy