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
// List Sol Network Instantiate instances
val resp = tnbClient.listSolNetworkInstances()Content copied to clipboard
// List Sol Network Instances with nextToken and maxResults
val resp = tnbClient.listSolNetworkInstances {
maxResults = 25
nextToken = ""
}Content copied to clipboard