listProfiles
abstract suspend fun listProfiles(input: ListProfilesRequest = ListProfilesRequest { }): 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
}