modifyCacheSubnetGroup
inline suspend fun ElastiCacheClient.modifyCacheSubnetGroup(crossinline block: ModifyCacheSubnetGroupRequest.Builder.() -> Unit): ModifyCacheSubnetGroupResponse
Modifies an existing cache subnet group.
Samples
fun main() {
//sampleStart
// Modifies an existing ElastiCache subnet group.
val resp = elastiCacheClient.modifyCacheSubnetGroup {
cacheSubnetGroupName = "my-sn-grp"
subnetIds = listOf<String>(
"subnet-bcde2345"
)
}
//sampleEnd
}