listProfiles

inline suspend fun B2BiClient.listProfiles(crossinline block: ListProfilesRequest.Builder.() -> Unit): ListProfilesResponse

Lists the profiles associated with your Amazon Web Services account for your current or specified region. A profile is the mechanism used to create the concept of a private network.

Samples


fun main() { 
   //sampleStart 
   // Sample ListProfiles call
val resp = b2BiClient.listProfiles {
    maxResults = 50
    nextToken = "foo"
} 
   //sampleEnd
}