getSolNetworkInstance
abstract suspend fun getSolNetworkInstance(input: GetSolNetworkInstanceRequest): GetSolNetworkInstanceResponse
Gets the details of the network instance.
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
// Get a Sol Network Instance details
val resp = tnbClient.getSolNetworkInstance {
nsInstanceId = "ni-07aa863e53460a2a6"
}
//sampleEnd
}