untagResource
inline suspend fun AppConfigClient.untagResource(crossinline block: UntagResourceRequest.Builder.() -> Unit): UntagResourceResponse
Deletes a tag key and value from an AppConfig resource.
Samples
fun main() {
//sampleStart
// The following untag resource example removes the group1 tag from the specified application.
appConfigClient.untagResource {
resourceArn = "arn:aws:appconfig:us-east-1:111122223333:application/339ohji"
tagKeys = listOf<String>(
"group1"
)
}
//sampleEnd
}