modifyCacheSubnetGroup
abstract suspend fun modifyCacheSubnetGroup(input: ModifyCacheSubnetGroupRequest): 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
}