listTagsForResource
inline suspend fun B2BiClient.listTagsForResource(crossinline block: ListTagsForResourceRequest.Builder.() -> Unit): ListTagsForResourceResponse
Lists all of the tags associated with the Amazon Resource Name (ARN) that you specify. The resource can be a capability, partnership, profile, or transformer.
Samples
fun main() {
//sampleStart
// Sample ListTagsForResources call
val resp = b2BiClient.listTagsForResource {
resourceArn = "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9"
}
//sampleEnd
}