listNetworkMigrationMapperSegments
abstract suspend fun listNetworkMigrationMapperSegments(input: ListNetworkMigrationMapperSegmentsRequest): ListNetworkMigrationMapperSegmentsResponse
Lists mapper segments, which represent logical groupings of network resources to be migrated together.
Samples
fun main() {
//sampleStart
// Sample ListNetworkMigrationMapperSegments call
val resp = mgnClient.listNetworkMigrationMapperSegments {
networkMigrationExecutionId = "01234567-abcd-abcd-abcd-0123456789ab"
networkMigrationDefinitionId = "nmd-01234567891234567"
}
//sampleEnd
}