listSolNetworkInstances

abstract suspend fun listSolNetworkInstances(input: ListSolNetworkInstancesRequest = ListSolNetworkInstancesRequest { }): ListSolNetworkInstancesResponse

Lists your network instances.

A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.

Samples


fun main() { 
   //sampleStart 
   // List Sol Network Instantiate instances
val resp = tnbClient.listSolNetworkInstances() 
   //sampleEnd
}

fun main() { 
   //sampleStart 
   // List Sol Network Instances with nextToken and maxResults
val resp = tnbClient.listSolNetworkInstances {
    maxResults = 25
    nextToken = ""
} 
   //sampleEnd
}