modifyCacheSubnetGroup
abstract suspend fun modifyCacheSubnetGroup(input: ModifyCacheSubnetGroupRequest): ModifyCacheSubnetGroupResponse
Modifies an existing cache subnet group.
Samples
// Modifies an existing ElastiCache subnet group.
val resp = elastiCacheClient.modifyCacheSubnetGroup {
cacheSubnetGroupName = "my-sn-grp"
subnetIds = listOf<String>(
"subnet-bcde2345"
)
}Content copied to clipboard