untagResource
inline suspend fun BillingClient.untagResource(crossinline block: UntagResourceRequest.Builder.() -> Unit): UntagResourceResponse
Removes one or more tags from a resource. Specify only tag keys in your request. Don't specify the value.
Samples
fun main() {
//sampleStart
// Invoke UntagResource
val resp = billingClient.untagResource {
resourceArn = "arn:aws:billing::123456789101:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899"
resourceTagKeys = listOf<String>(
"ExampleTagKey"
)
}
//sampleEnd
}