untagResource
inline suspend fun BcmDashboardsClient.untagResource(crossinline block: UntagResourceRequest.Builder.() -> Unit): UntagResourceResponse
Removes specified tags from a dashboard resource.
Samples
fun main() {
//sampleStart
// Removing tag (s) from a resource
bcmDashboardsClient.untagResource {
resourceArn = "arn:aws:bcm-dashboards::123456789012:dashboard/abcd1234-ab12-12ab-1ab2-abcd1234efgh"
resourceTagKeys = listOf<String>(
"keyOne"
)
}
//sampleEnd
}