resetCacheParameterGroup
inline suspend fun ElastiCacheClient.resetCacheParameterGroup(crossinline block: ResetCacheParameterGroupRequest.Builder.() -> Unit): ResetCacheParameterGroupResponse
Modifies the parameters of a cache parameter group to the engine or system default value. You can reset specific parameters by submitting a list of parameter names. To reset the entire cache parameter group, specify the ResetAllParameters
and CacheParameterGroupName
parameters.
Samples
fun main() {
//sampleStart
// Modifies the parameters of a cache parameter group to the engine or system default value.
val resp = elastiCacheClient.resetCacheParameterGroup {
cacheParameterGroupName = "custom-mem1-4"
resetAllParameters = true
}
//sampleEnd
}