untagResource
inline suspend fun B2BiClient.untagResource(crossinline block: UntagResourceRequest.Builder.() -> Unit): UntagResourceResponse
Detaches a key-value pair from the specified resource, as identified by its Amazon Resource Name (ARN). Resources are capability, partnership, profile, transformers and other entities.
Samples
fun main() {
//sampleStart
// Sample UntagResource call
b2BiClient.untagResource {
resourceArn = "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9"
tagKeys = listOf<String>(
"sampleKey"
)
}
//sampleEnd
}