listPartnerships

Lists the partnerships associated with your Amazon Web Services account for your current or specified region. A partnership represents the connection between you and your trading partner. It ties together a profile and one or more trading capabilities.

Samples


fun main() { 
   //sampleStart 
   // Sample ListPartnerships call
val resp = b2BiClient.listPartnerships {
    maxResults = 50
    nextToken = "foo"
    profileId = "p-60fbc37c87f04fce9"
} 
   //sampleEnd
}