removeTagsFromResource
inline suspend fun RdsClient.removeTagsFromResource(crossinline block: RemoveTagsFromResourceRequest.Builder.() -> Unit): RemoveTagsFromResourceResponse
Removes metadata tags from an Amazon RDS resource.
For an overview on tagging an Amazon RDS resource, see Tagging Amazon RDS Resources in the Amazon RDS User Guide or Tagging Amazon Aurora and Amazon RDS Resources in the Amazon Aurora User Guide.
Samples
fun main() {
//sampleStart
// The following example removes tags from a resource.
rdsClient.removeTagsFromResource {
resourceName = "arn:aws:rds:us-east-1:123456789012:db:mydbinstance"
tagKeys = listOf<String>(
"Name",
"Environment"
)
}
//sampleEnd
}