untagResource
inline suspend fun MediaPackageV2Client.untagResource(crossinline block: UntagResourceRequest.Builder.() -> Unit): UntagResourceResponse
Removes one or more tags from the specified resource.
Samples
fun main() {
//sampleStart
// Remove tags from a resource
val resp = mediaPackageV2Client.untagResource {
resourceArn = "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannel"
tagKeys = listOf<String>(
"key3",
"key4"
)
}
//sampleEnd
}